2 #include <linux/module.h>
6 #include <linux/scatterlist.h>
7 #include <linux/crypto.h>
8 #include <linux/kernel.h>
9 #include <linux/pfkeyv2.h>
10 #include <linux/random.h>
11 #include <linux/spinlock.h>
13 #include <net/protocol.h>
16 static int esp_output(struct xfrm_state *x, struct sk_buff *skb)
19 struct ip_esp_hdr *esph;
20 struct crypto_blkcipher *tfm;
21 struct blkcipher_desc desc;
23 struct sk_buff *trailer;
30 /* skb is pure payload to encrypt */
34 /* Round to block size */
38 alen = esp->auth.icv_trunc_len;
42 blksize = ALIGN(crypto_blkcipher_blocksize(tfm), 4);
43 clen = ALIGN(clen + 2, blksize);
45 clen = ALIGN(clen, esp->conf.padlen);
47 if ((nfrags = skb_cow_data(skb, clen-skb->len+alen, &trailer)) < 0)
51 tail = skb_tail_pointer(trailer);
54 for (i=0; i<clen-skb->len - 2; i++)
57 tail[clen - skb->len - 2] = (clen - skb->len) - 2;
58 pskb_put(skb, trailer, clen - skb->len);
60 skb_push(skb, -skb_network_offset(skb));
61 esph = ip_esp_hdr(skb);
62 *(skb_tail_pointer(trailer) - 1) = *skb_mac_header(skb);
63 *skb_mac_header(skb) = IPPROTO_ESP;
65 spin_lock_bh(&x->lock);
67 /* this is non-NULL only with UDP Encapsulation */
69 struct xfrm_encap_tmpl *encap = x->encap;
73 uh = (struct udphdr *)esph;
74 uh->source = encap->encap_sport;
75 uh->dest = encap->encap_dport;
76 uh->len = htons(skb->len + alen - skb_transport_offset(skb));
79 switch (encap->encap_type) {
81 case UDP_ENCAP_ESPINUDP:
82 esph = (struct ip_esp_hdr *)(uh + 1);
84 case UDP_ENCAP_ESPINUDP_NON_IKE:
85 udpdata32 = (__be32 *)(uh + 1);
86 udpdata32[0] = udpdata32[1] = 0;
87 esph = (struct ip_esp_hdr *)(udpdata32 + 2);
91 *skb_mac_header(skb) = IPPROTO_UDP;
94 esph->spi = x->id.spi;
95 esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq);
97 if (esp->conf.ivlen) {
98 if (unlikely(!esp->conf.ivinitted)) {
99 get_random_bytes(esp->conf.ivec, esp->conf.ivlen);
100 esp->conf.ivinitted = 1;
102 crypto_blkcipher_set_iv(tfm, esp->conf.ivec, esp->conf.ivlen);
106 struct scatterlist *sg = &esp->sgbuf[0];
108 if (unlikely(nfrags > ESP_NUM_FAST_SG)) {
109 sg = kmalloc(sizeof(struct scatterlist)*nfrags, GFP_ATOMIC);
113 sg_init_table(sg, nfrags);
114 sg_mark_end(sg, skb_to_sgvec(skb, sg, esph->enc_data +
117 err = crypto_blkcipher_encrypt(&desc, sg, sg, clen);
118 if (unlikely(sg != &esp->sgbuf[0]))
125 if (esp->conf.ivlen) {
126 memcpy(esph->enc_data, esp->conf.ivec, esp->conf.ivlen);
127 crypto_blkcipher_get_iv(tfm, esp->conf.ivec, esp->conf.ivlen);
130 if (esp->auth.icv_full_len) {
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);
137 spin_unlock_bh(&x->lock);
144 * Note: detecting truncated vs. non-truncated authentication data is very
145 * expensive, so we only support truncated data, which is the recommended
148 static int esp_input(struct xfrm_state *x, struct sk_buff *skb)
151 struct ip_esp_hdr *esph;
152 struct esp_data *esp = x->data;
153 struct crypto_blkcipher *tfm = esp->conf.tfm;
154 struct blkcipher_desc desc = { .tfm = tfm };
155 struct sk_buff *trailer;
156 int blksize = ALIGN(crypto_blkcipher_blocksize(tfm), 4);
157 int alen = esp->auth.icv_trunc_len;
158 int elen = skb->len - sizeof(*esph) - esp->conf.ivlen - alen;
162 struct scatterlist *sg;
166 if (!pskb_may_pull(skb, sizeof(*esph)))
169 if (elen <= 0 || (elen & (blksize-1)))
172 /* If integrity check is required, do this. */
173 if (esp->auth.icv_full_len) {
176 err = esp_mac_digest(esp, skb, 0, skb->len - alen);
180 if (skb_copy_bits(skb, skb->len - alen, sum, alen))
183 if (unlikely(memcmp(esp->auth.work_icv, sum, alen))) {
184 x->stats.integrity_failed++;
189 if ((nfrags = skb_cow_data(skb, 0, &trailer)) < 0)
192 skb->ip_summed = CHECKSUM_NONE;
194 esph = (struct ip_esp_hdr *)skb->data;
196 /* Get ivec. This can be wrong, check against another impls. */
198 crypto_blkcipher_set_iv(tfm, esph->enc_data, esp->conf.ivlen);
202 if (unlikely(nfrags > ESP_NUM_FAST_SG)) {
203 sg = kmalloc(sizeof(struct scatterlist)*nfrags, GFP_ATOMIC);
207 sg_init_table(sg, nfrags);
208 sg_mark_end(sg, skb_to_sgvec(skb, sg, sizeof(*esph) + esp->conf.ivlen,
210 err = crypto_blkcipher_decrypt(&desc, sg, sg, elen);
211 if (unlikely(sg != &esp->sgbuf[0]))
216 if (skb_copy_bits(skb, skb->len-alen-2, nexthdr, 2))
220 if (padlen+2 >= elen)
223 /* ... check padding bits here. Silly. :-) */
229 struct xfrm_encap_tmpl *encap = x->encap;
230 struct udphdr *uh = (void *)(skb_network_header(skb) + ihl);
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
238 if (iph->saddr != x->props.saddr.a4 ||
239 uh->source != encap->encap_sport) {
240 xfrm_address_t ipaddr;
242 ipaddr.a4 = iph->saddr;
243 km_new_mapping(x, &ipaddr, uh->source);
245 /* XXX: perhaps add an extra
246 * policy check here, to see
247 * if we should allow or
248 * reject a packet from a
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,
261 if (x->props.mode == XFRM_MODE_TRANSPORT)
262 skb->ip_summed = CHECKSUM_UNNECESSARY;
265 pskb_trim(skb, skb->len - alen - padlen - 2);
266 __skb_pull(skb, sizeof(*esph) + esp->conf.ivlen);
267 skb_set_transport_header(skb, -ihl);
275 static u32 esp4_get_mtu(struct xfrm_state *x, int mtu)
277 struct esp_data *esp = x->data;
278 u32 blksize = ALIGN(crypto_blkcipher_blocksize(esp->conf.tfm), 4);
279 u32 align = max_t(u32, blksize, esp->conf.padlen);
282 mtu -= x->props.header_len + esp->auth.icv_trunc_len;
283 rem = mtu & (align - 1);
286 switch (x->props.mode) {
287 case XFRM_MODE_TUNNEL:
290 case XFRM_MODE_TRANSPORT:
293 mtu += min_t(u32, blksize - 4, rem);
296 /* The worst case. */
297 mtu += min_t(u32, IPV4_BEET_PHMAXLEN, rem);
304 static void esp4_err(struct sk_buff *skb, u32 info)
306 struct iphdr *iph = (struct iphdr*)skb->data;
307 struct ip_esp_hdr *esph = (struct ip_esp_hdr*)(skb->data+(iph->ihl<<2));
308 struct xfrm_state *x;
310 if (icmp_hdr(skb)->type != ICMP_DEST_UNREACH ||
311 icmp_hdr(skb)->code != ICMP_FRAG_NEEDED)
314 x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr, esph->spi, IPPROTO_ESP, AF_INET);
317 NETDEBUG(KERN_DEBUG "pmtu discovery on SA ESP/%08x/%08x\n",
318 ntohl(esph->spi), ntohl(iph->daddr));
322 static void esp_destroy(struct xfrm_state *x)
324 struct esp_data *esp = x->data;
329 crypto_free_blkcipher(esp->conf.tfm);
330 esp->conf.tfm = NULL;
331 kfree(esp->conf.ivec);
332 esp->conf.ivec = NULL;
333 crypto_free_hash(esp->auth.tfm);
334 esp->auth.tfm = NULL;
335 kfree(esp->auth.work_icv);
336 esp->auth.work_icv = NULL;
340 static int esp_init_state(struct xfrm_state *x)
342 struct esp_data *esp = NULL;
343 struct crypto_blkcipher *tfm;
349 esp = kzalloc(sizeof(*esp), GFP_KERNEL);
354 struct xfrm_algo_desc *aalg_desc;
355 struct crypto_hash *hash;
357 hash = crypto_alloc_hash(x->aalg->alg_name, 0,
362 esp->auth.tfm = hash;
363 if (crypto_hash_setkey(hash, x->aalg->alg_key,
364 (x->aalg->alg_key_len + 7) / 8))
367 aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0);
370 if (aalg_desc->uinfo.auth.icv_fullbits/8 !=
371 crypto_hash_digestsize(hash)) {
372 NETDEBUG(KERN_INFO "ESP: %s digestsize %u != %hu\n",
374 crypto_hash_digestsize(hash),
375 aalg_desc->uinfo.auth.icv_fullbits/8);
379 esp->auth.icv_full_len = aalg_desc->uinfo.auth.icv_fullbits/8;
380 esp->auth.icv_trunc_len = aalg_desc->uinfo.auth.icv_truncbits/8;
382 esp->auth.work_icv = kmalloc(esp->auth.icv_full_len, GFP_KERNEL);
383 if (!esp->auth.work_icv)
387 tfm = crypto_alloc_blkcipher(x->ealg->alg_name, 0, CRYPTO_ALG_ASYNC);
391 esp->conf.ivlen = crypto_blkcipher_ivsize(tfm);
392 esp->conf.padlen = 0;
393 if (esp->conf.ivlen) {
394 esp->conf.ivec = kmalloc(esp->conf.ivlen, GFP_KERNEL);
395 if (unlikely(esp->conf.ivec == NULL))
397 esp->conf.ivinitted = 0;
399 if (crypto_blkcipher_setkey(tfm, x->ealg->alg_key,
400 (x->ealg->alg_key_len + 7) / 8))
402 x->props.header_len = sizeof(struct ip_esp_hdr) + esp->conf.ivlen;
403 if (x->props.mode == XFRM_MODE_TUNNEL)
404 x->props.header_len += sizeof(struct iphdr);
405 else if (x->props.mode == XFRM_MODE_BEET)
406 x->props.header_len += IPV4_BEET_PHMAXLEN;
408 struct xfrm_encap_tmpl *encap = x->encap;
410 switch (encap->encap_type) {
413 case UDP_ENCAP_ESPINUDP:
414 x->props.header_len += sizeof(struct udphdr);
416 case UDP_ENCAP_ESPINUDP_NON_IKE:
417 x->props.header_len += sizeof(struct udphdr) + 2 * sizeof(u32);
422 align = ALIGN(crypto_blkcipher_blocksize(esp->conf.tfm), 4);
423 if (esp->conf.padlen)
424 align = max_t(u32, align, esp->conf.padlen);
425 x->props.trailer_len = align + 1 + esp->auth.icv_trunc_len;
435 static struct xfrm_type esp_type =
437 .description = "ESP4",
438 .owner = THIS_MODULE,
439 .proto = IPPROTO_ESP,
440 .flags = XFRM_TYPE_REPLAY_PROT,
441 .init_state = esp_init_state,
442 .destructor = esp_destroy,
443 .get_mtu = esp4_get_mtu,
448 static struct net_protocol esp4_protocol = {
449 .handler = xfrm4_rcv,
450 .err_handler = esp4_err,
454 static int __init esp4_init(void)
456 if (xfrm_register_type(&esp_type, AF_INET) < 0) {
457 printk(KERN_INFO "ip esp init: can't add xfrm type\n");
460 if (inet_add_protocol(&esp4_protocol, IPPROTO_ESP) < 0) {
461 printk(KERN_INFO "ip esp init: can't add protocol\n");
462 xfrm_unregister_type(&esp_type, AF_INET);
468 static void __exit esp4_fini(void)
470 if (inet_del_protocol(&esp4_protocol, IPPROTO_ESP) < 0)
471 printk(KERN_INFO "ip esp close: can't remove protocol\n");
472 if (xfrm_unregister_type(&esp_type, AF_INET) < 0)
473 printk(KERN_INFO "ip esp close: can't remove xfrm type\n");
476 module_init(esp4_init);
477 module_exit(esp4_fini);
478 MODULE_LICENSE("GPL");
479 MODULE_ALIAS_XFRM_TYPE(AF_INET, XFRM_PROTO_ESP);