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