[IPSEC]: Move integrity stat collection into xfrm_input
[linux-2.6-block.git] / net / ipv4 / esp4.c
CommitLineData
6b7326c8 1#include <linux/err.h>
1da177e4
LT
2#include <linux/module.h>
3#include <net/ip.h>
4#include <net/xfrm.h>
5#include <net/esp.h>
72998d8c 6#include <linux/scatterlist.h>
1da177e4 7#include <linux/crypto.h>
a02a6422 8#include <linux/kernel.h>
1da177e4
LT
9#include <linux/pfkeyv2.h>
10#include <linux/random.h>
b7c6538c 11#include <linux/spinlock.h>
2017a72c 12#include <linux/in6.h>
1da177e4 13#include <net/icmp.h>
14c85021 14#include <net/protocol.h>
1da177e4
LT
15#include <net/udp.h>
16
1da177e4
LT
17static int esp_output(struct xfrm_state *x, struct sk_buff *skb)
18{
19 int err;
1da177e4 20 struct ip_esp_hdr *esph;
6b7326c8
HX
21 struct crypto_blkcipher *tfm;
22 struct blkcipher_desc desc;
1da177e4
LT
23 struct esp_data *esp;
24 struct sk_buff *trailer;
27a884dc 25 u8 *tail;
1da177e4
LT
26 int blksize;
27 int clen;
28 int alen;
29 int nfrags;
30
7b277b1a 31 /* skb is pure payload to encrypt */
1da177e4
LT
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;
6b7326c8
HX
41 desc.tfm = tfm;
42 desc.flags = 0;
43 blksize = ALIGN(crypto_blkcipher_blocksize(tfm), 4);
a02a6422 44 clen = ALIGN(clen + 2, blksize);
1da177e4 45 if (esp->conf.padlen)
a02a6422 46 clen = ALIGN(clen, esp->conf.padlen);
1da177e4
LT
47
48 if ((nfrags = skb_cow_data(skb, clen-skb->len+alen, &trailer)) < 0)
49 goto error;
50
51 /* Fill padding... */
27a884dc 52 tail = skb_tail_pointer(trailer);
1da177e4
LT
53 do {
54 int i;
55 for (i=0; i<clen-skb->len - 2; i++)
27a884dc 56 tail[i] = i + 1;
1da177e4 57 } while (0);
27a884dc 58 tail[clen - skb->len - 2] = (clen - skb->len) - 2;
1da177e4
LT
59 pskb_put(skb, trailer, clen - skb->len);
60
7b277b1a 61 skb_push(skb, -skb_network_offset(skb));
87bdc48d 62 esph = ip_esp_hdr(skb);
37fedd3a
HX
63 *(skb_tail_pointer(trailer) - 1) = *skb_mac_header(skb);
64 *skb_mac_header(skb) = IPPROTO_ESP;
1da177e4 65
b7c6538c
HX
66 spin_lock_bh(&x->lock);
67
1da177e4
LT
68 /* this is non-NULL only with UDP Encapsulation */
69 if (x->encap) {
70 struct xfrm_encap_tmpl *encap = x->encap;
71 struct udphdr *uh;
d5a0a1e3 72 __be32 *udpdata32;
1da177e4
LT
73
74 uh = (struct udphdr *)esph;
75 uh->source = encap->encap_sport;
76 uh->dest = encap->encap_dport;
ceb1eec8 77 uh->len = htons(skb->len + alen - skb_transport_offset(skb));
1da177e4
LT
78 uh->check = 0;
79
80 switch (encap->encap_type) {
81 default:
82 case UDP_ENCAP_ESPINUDP:
83 esph = (struct ip_esp_hdr *)(uh + 1);
84 break;
85 case UDP_ENCAP_ESPINUDP_NON_IKE:
d5a0a1e3 86 udpdata32 = (__be32 *)(uh + 1);
1da177e4
LT
87 udpdata32[0] = udpdata32[1] = 0;
88 esph = (struct ip_esp_hdr *)(udpdata32 + 2);
89 break;
90 }
91
37fedd3a
HX
92 *skb_mac_header(skb) = IPPROTO_UDP;
93 }
1da177e4
LT
94
95 esph->spi = x->id.spi;
436a0a40 96 esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq);
1da177e4 97
e4bec827
DM
98 if (esp->conf.ivlen) {
99 if (unlikely(!esp->conf.ivinitted)) {
100 get_random_bytes(esp->conf.ivec, esp->conf.ivlen);
101 esp->conf.ivinitted = 1;
102 }
6b7326c8 103 crypto_blkcipher_set_iv(tfm, esp->conf.ivec, esp->conf.ivlen);
e4bec827 104 }
1da177e4
LT
105
106 do {
107 struct scatterlist *sg = &esp->sgbuf[0];
108
109 if (unlikely(nfrags > ESP_NUM_FAST_SG)) {
110 sg = kmalloc(sizeof(struct scatterlist)*nfrags, GFP_ATOMIC);
111 if (!sg)
b7c6538c 112 goto unlock;
1da177e4 113 }
ed0e7e0c 114 sg_init_table(sg, nfrags);
51c739d1
DM
115 skb_to_sgvec(skb, sg,
116 esph->enc_data +
117 esp->conf.ivlen -
118 skb->data, clen);
6b7326c8 119 err = crypto_blkcipher_encrypt(&desc, sg, sg, clen);
1da177e4
LT
120 if (unlikely(sg != &esp->sgbuf[0]))
121 kfree(sg);
122 } while (0);
123
6b7326c8 124 if (unlikely(err))
b7c6538c 125 goto unlock;
6b7326c8 126
1da177e4 127 if (esp->conf.ivlen) {
6b7326c8
HX
128 memcpy(esph->enc_data, esp->conf.ivec, esp->conf.ivlen);
129 crypto_blkcipher_get_iv(tfm, esp->conf.ivec, esp->conf.ivlen);
1da177e4
LT
130 }
131
132 if (esp->auth.icv_full_len) {
07d4ee58
HX
133 err = esp_mac_digest(esp, skb, (u8 *)esph - skb->data,
134 sizeof(*esph) + esp->conf.ivlen + clen);
135 memcpy(pskb_put(skb, trailer, alen), esp->auth.work_icv, alen);
1da177e4
LT
136 }
137
b7c6538c
HX
138unlock:
139 spin_unlock_bh(&x->lock);
140
1da177e4
LT
141error:
142 return err;
143}
144
145/*
146 * Note: detecting truncated vs. non-truncated authentication data is very
147 * expensive, so we only support truncated data, which is the recommended
148 * and common case.
149 */
e695633e 150static int esp_input(struct xfrm_state *x, struct sk_buff *skb)
1da177e4
LT
151{
152 struct iphdr *iph;
153 struct ip_esp_hdr *esph;
154 struct esp_data *esp = x->data;
6b7326c8
HX
155 struct crypto_blkcipher *tfm = esp->conf.tfm;
156 struct blkcipher_desc desc = { .tfm = tfm };
1da177e4 157 struct sk_buff *trailer;
6b7326c8 158 int blksize = ALIGN(crypto_blkcipher_blocksize(tfm), 4);
1da177e4 159 int alen = esp->auth.icv_trunc_len;
87bdc48d 160 int elen = skb->len - sizeof(*esph) - esp->conf.ivlen - alen;
1da177e4 161 int nfrags;
31a4ab93 162 int ihl;
4bf05ece
HX
163 u8 nexthdr[2];
164 struct scatterlist *sg;
4bf05ece 165 int padlen;
668dc8af 166 int err = -EINVAL;
1da177e4 167
87bdc48d 168 if (!pskb_may_pull(skb, sizeof(*esph)))
1da177e4
LT
169 goto out;
170
171 if (elen <= 0 || (elen & (blksize-1)))
172 goto out;
173
174 /* If integrity check is required, do this. */
175 if (esp->auth.icv_full_len) {
07d4ee58 176 u8 sum[alen];
1da177e4 177
07d4ee58
HX
178 err = esp_mac_digest(esp, skb, 0, skb->len - alen);
179 if (err)
180 goto out;
181
182 if (skb_copy_bits(skb, skb->len - alen, sum, alen))
1da177e4
LT
183 BUG();
184
07d4ee58 185 if (unlikely(memcmp(esp->auth.work_icv, sum, alen))) {
668dc8af 186 err = -EBADMSG;
1da177e4
LT
187 goto out;
188 }
189 }
190
668dc8af 191 if ((err = skb_cow_data(skb, 0, &trailer)) < 0)
1da177e4 192 goto out;
668dc8af 193 nfrags = err;
1da177e4
LT
194
195 skb->ip_summed = CHECKSUM_NONE;
196
87bdc48d 197 esph = (struct ip_esp_hdr *)skb->data;
1da177e4
LT
198
199 /* Get ivec. This can be wrong, check against another impls. */
200 if (esp->conf.ivlen)
6b7326c8 201 crypto_blkcipher_set_iv(tfm, esph->enc_data, esp->conf.ivlen);
1da177e4 202
4bf05ece 203 sg = &esp->sgbuf[0];
1da177e4 204
4bf05ece 205 if (unlikely(nfrags > ESP_NUM_FAST_SG)) {
668dc8af 206 err = -ENOMEM;
4bf05ece
HX
207 sg = kmalloc(sizeof(struct scatterlist)*nfrags, GFP_ATOMIC);
208 if (!sg)
209 goto out;
210 }
ed0e7e0c 211 sg_init_table(sg, nfrags);
51c739d1
DM
212 skb_to_sgvec(skb, sg,
213 sizeof(*esph) + esp->conf.ivlen,
214 elen);
6b7326c8 215 err = crypto_blkcipher_decrypt(&desc, sg, sg, elen);
4bf05ece
HX
216 if (unlikely(sg != &esp->sgbuf[0]))
217 kfree(sg);
6b7326c8 218 if (unlikely(err))
668dc8af 219 goto out;
1da177e4 220
4bf05ece
HX
221 if (skb_copy_bits(skb, skb->len-alen-2, nexthdr, 2))
222 BUG();
1da177e4 223
668dc8af 224 err = -EINVAL;
4bf05ece
HX
225 padlen = nexthdr[0];
226 if (padlen+2 >= elen)
227 goto out;
1da177e4 228
e905a9ed 229 /* ... check padding bits here. Silly. :-) */
1da177e4 230
2017a72c
TG
231 /* RFC4303: Drop dummy packets without any error */
232 if (nexthdr[1] == IPPROTO_NONE)
233 goto out;
234
eddc9ec5 235 iph = ip_hdr(skb);
31a4ab93
HX
236 ihl = iph->ihl * 4;
237
752c1f4c
HX
238 if (x->encap) {
239 struct xfrm_encap_tmpl *encap = x->encap;
d56f90a7 240 struct udphdr *uh = (void *)(skb_network_header(skb) + ihl);
752c1f4c
HX
241
242 /*
243 * 1) if the NAT-T peer's IP or port changed then
244 * advertize the change to the keying daemon.
245 * This is an inbound SA, so just compare
246 * SRC ports.
247 */
248 if (iph->saddr != x->props.saddr.a4 ||
249 uh->source != encap->encap_sport) {
250 xfrm_address_t ipaddr;
251
252 ipaddr.a4 = iph->saddr;
253 km_new_mapping(x, &ipaddr, uh->source);
e905a9ed 254
752c1f4c
HX
255 /* XXX: perhaps add an extra
256 * policy check here, to see
257 * if we should allow or
258 * reject a packet from a
259 * different source
260 * address/port.
261 */
1da177e4 262 }
e905a9ed 263
752c1f4c
HX
264 /*
265 * 2) ignore UDP/TCP checksums in case
266 * of NAT-T in Transport Mode, or
267 * perform other post-processing fixes
268 * as per draft-ietf-ipsec-udp-encaps-06,
269 * section 3.1.2
270 */
8bd17075 271 if (x->props.mode == XFRM_MODE_TRANSPORT)
752c1f4c 272 skb->ip_summed = CHECKSUM_UNNECESSARY;
1da177e4
LT
273 }
274
4bf05ece 275 pskb_trim(skb, skb->len - alen - padlen - 2);
967b05f6
ACM
276 __skb_pull(skb, sizeof(*esph) + esp->conf.ivlen);
277 skb_set_transport_header(skb, -ihl);
4bf05ece 278
631a6698 279 return nexthdr[1];
1da177e4
LT
280
281out:
668dc8af 282 return err;
1da177e4
LT
283}
284
c5c25238 285static u32 esp4_get_mtu(struct xfrm_state *x, int mtu)
1da177e4
LT
286{
287 struct esp_data *esp = x->data;
6b7326c8 288 u32 blksize = ALIGN(crypto_blkcipher_blocksize(esp->conf.tfm), 4);
c5c25238
PM
289 u32 align = max_t(u32, blksize, esp->conf.padlen);
290 u32 rem;
291
292 mtu -= x->props.header_len + esp->auth.icv_trunc_len;
293 rem = mtu & (align - 1);
294 mtu &= ~(align - 1);
0a69452c
DB
295
296 switch (x->props.mode) {
297 case XFRM_MODE_TUNNEL:
0a69452c
DB
298 break;
299 default:
300 case XFRM_MODE_TRANSPORT:
301 /* The worst case */
c5c25238
PM
302 mtu -= blksize - 4;
303 mtu += min_t(u32, blksize - 4, rem);
0a69452c
DB
304 break;
305 case XFRM_MODE_BEET:
e905a9ed 306 /* The worst case. */
c5c25238 307 mtu += min_t(u32, IPV4_BEET_PHMAXLEN, rem);
0a69452c 308 break;
1da177e4 309 }
0a69452c 310
c5c25238 311 return mtu - 2;
1da177e4
LT
312}
313
314static void esp4_err(struct sk_buff *skb, u32 info)
315{
316 struct iphdr *iph = (struct iphdr*)skb->data;
317 struct ip_esp_hdr *esph = (struct ip_esp_hdr*)(skb->data+(iph->ihl<<2));
318 struct xfrm_state *x;
319
88c7664f
ACM
320 if (icmp_hdr(skb)->type != ICMP_DEST_UNREACH ||
321 icmp_hdr(skb)->code != ICMP_FRAG_NEEDED)
1da177e4
LT
322 return;
323
324 x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr, esph->spi, IPPROTO_ESP, AF_INET);
325 if (!x)
326 return;
64ce2073
PM
327 NETDEBUG(KERN_DEBUG "pmtu discovery on SA ESP/%08x/%08x\n",
328 ntohl(esph->spi), ntohl(iph->daddr));
1da177e4
LT
329 xfrm_state_put(x);
330}
331
332static void esp_destroy(struct xfrm_state *x)
333{
334 struct esp_data *esp = x->data;
335
336 if (!esp)
337 return;
338
6b7326c8 339 crypto_free_blkcipher(esp->conf.tfm);
573dbd95
JJ
340 esp->conf.tfm = NULL;
341 kfree(esp->conf.ivec);
342 esp->conf.ivec = NULL;
07d4ee58 343 crypto_free_hash(esp->auth.tfm);
573dbd95
JJ
344 esp->auth.tfm = NULL;
345 kfree(esp->auth.work_icv);
346 esp->auth.work_icv = NULL;
1da177e4
LT
347 kfree(esp);
348}
349
72cb6962 350static int esp_init_state(struct xfrm_state *x)
1da177e4
LT
351{
352 struct esp_data *esp = NULL;
6b7326c8 353 struct crypto_blkcipher *tfm;
c5c25238 354 u32 align;
1da177e4 355
1da177e4
LT
356 if (x->ealg == NULL)
357 goto error;
358
0da974f4 359 esp = kzalloc(sizeof(*esp), GFP_KERNEL);
1da177e4
LT
360 if (esp == NULL)
361 return -ENOMEM;
362
1da177e4
LT
363 if (x->aalg) {
364 struct xfrm_algo_desc *aalg_desc;
07d4ee58 365 struct crypto_hash *hash;
1da177e4 366
07d4ee58
HX
367 hash = crypto_alloc_hash(x->aalg->alg_name, 0,
368 CRYPTO_ALG_ASYNC);
369 if (IS_ERR(hash))
370 goto error;
371
372 esp->auth.tfm = hash;
4b7137ff
HX
373 if (crypto_hash_setkey(hash, x->aalg->alg_key,
374 (x->aalg->alg_key_len + 7) / 8))
1da177e4 375 goto error;
1da177e4
LT
376
377 aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0);
378 BUG_ON(!aalg_desc);
379
380 if (aalg_desc->uinfo.auth.icv_fullbits/8 !=
07d4ee58 381 crypto_hash_digestsize(hash)) {
64ce2073
PM
382 NETDEBUG(KERN_INFO "ESP: %s digestsize %u != %hu\n",
383 x->aalg->alg_name,
07d4ee58 384 crypto_hash_digestsize(hash),
64ce2073 385 aalg_desc->uinfo.auth.icv_fullbits/8);
1da177e4
LT
386 goto error;
387 }
388
389 esp->auth.icv_full_len = aalg_desc->uinfo.auth.icv_fullbits/8;
390 esp->auth.icv_trunc_len = aalg_desc->uinfo.auth.icv_truncbits/8;
391
392 esp->auth.work_icv = kmalloc(esp->auth.icv_full_len, GFP_KERNEL);
393 if (!esp->auth.work_icv)
394 goto error;
395 }
4b7137ff 396
6b7326c8
HX
397 tfm = crypto_alloc_blkcipher(x->ealg->alg_name, 0, CRYPTO_ALG_ASYNC);
398 if (IS_ERR(tfm))
1da177e4 399 goto error;
6b7326c8
HX
400 esp->conf.tfm = tfm;
401 esp->conf.ivlen = crypto_blkcipher_ivsize(tfm);
1da177e4
LT
402 esp->conf.padlen = 0;
403 if (esp->conf.ivlen) {
404 esp->conf.ivec = kmalloc(esp->conf.ivlen, GFP_KERNEL);
405 if (unlikely(esp->conf.ivec == NULL))
406 goto error;
e4bec827 407 esp->conf.ivinitted = 0;
1da177e4 408 }
4b7137ff
HX
409 if (crypto_blkcipher_setkey(tfm, x->ealg->alg_key,
410 (x->ealg->alg_key_len + 7) / 8))
1da177e4
LT
411 goto error;
412 x->props.header_len = sizeof(struct ip_esp_hdr) + esp->conf.ivlen;
7e49e6de 413 if (x->props.mode == XFRM_MODE_TUNNEL)
1da177e4 414 x->props.header_len += sizeof(struct iphdr);
ac758e3c
PM
415 else if (x->props.mode == XFRM_MODE_BEET)
416 x->props.header_len += IPV4_BEET_PHMAXLEN;
1da177e4
LT
417 if (x->encap) {
418 struct xfrm_encap_tmpl *encap = x->encap;
419
420 switch (encap->encap_type) {
421 default:
422 goto error;
423 case UDP_ENCAP_ESPINUDP:
424 x->props.header_len += sizeof(struct udphdr);
425 break;
426 case UDP_ENCAP_ESPINUDP_NON_IKE:
427 x->props.header_len += sizeof(struct udphdr) + 2 * sizeof(u32);
428 break;
429 }
430 }
431 x->data = esp;
c5c25238
PM
432 align = ALIGN(crypto_blkcipher_blocksize(esp->conf.tfm), 4);
433 if (esp->conf.padlen)
434 align = max_t(u32, align, esp->conf.padlen);
435 x->props.trailer_len = align + 1 + esp->auth.icv_trunc_len;
1da177e4
LT
436 return 0;
437
438error:
439 x->data = esp;
440 esp_destroy(x);
441 x->data = NULL;
442 return -EINVAL;
443}
444
445static struct xfrm_type esp_type =
446{
447 .description = "ESP4",
448 .owner = THIS_MODULE,
449 .proto = IPPROTO_ESP,
436a0a40 450 .flags = XFRM_TYPE_REPLAY_PROT,
1da177e4
LT
451 .init_state = esp_init_state,
452 .destructor = esp_destroy,
c5c25238 453 .get_mtu = esp4_get_mtu,
1da177e4 454 .input = esp_input,
1da177e4
LT
455 .output = esp_output
456};
457
458static struct net_protocol esp4_protocol = {
459 .handler = xfrm4_rcv,
460 .err_handler = esp4_err,
461 .no_policy = 1,
462};
463
464static int __init esp4_init(void)
465{
1da177e4
LT
466 if (xfrm_register_type(&esp_type, AF_INET) < 0) {
467 printk(KERN_INFO "ip esp init: can't add xfrm type\n");
468 return -EAGAIN;
469 }
470 if (inet_add_protocol(&esp4_protocol, IPPROTO_ESP) < 0) {
471 printk(KERN_INFO "ip esp init: can't add protocol\n");
472 xfrm_unregister_type(&esp_type, AF_INET);
473 return -EAGAIN;
474 }
475 return 0;
476}
477
478static void __exit esp4_fini(void)
479{
480 if (inet_del_protocol(&esp4_protocol, IPPROTO_ESP) < 0)
481 printk(KERN_INFO "ip esp close: can't remove protocol\n");
482 if (xfrm_unregister_type(&esp_type, AF_INET) < 0)
483 printk(KERN_INFO "ip esp close: can't remove xfrm type\n");
484}
485
486module_init(esp4_init);
487module_exit(esp4_fini);
488MODULE_LICENSE("GPL");
d3d6dd3a 489MODULE_ALIAS_XFRM_TYPE(AF_INET, XFRM_PROTO_ESP);