1 #include <linux/config.h>
2 #include <linux/module.h>
6 #include <asm/scatterlist.h>
7 #include <linux/crypto.h>
8 #include <linux/kernel.h>
9 #include <linux/pfkeyv2.h>
10 #include <linux/random.h>
12 #include <net/protocol.h>
15 static int esp_output(struct xfrm_state
*x
, struct sk_buff
*skb
)
18 struct iphdr
*top_iph
;
19 struct ip_esp_hdr
*esph
;
20 struct crypto_tfm
*tfm
;
22 struct sk_buff
*trailer
;
28 /* Strip IP+ESP header. */
29 __skb_pull(skb
, skb
->h
.raw
- skb
->data
);
30 /* Now skb is pure payload to encrypt */
34 /* Round to block size */
38 alen
= esp
->auth
.icv_trunc_len
;
40 blksize
= ALIGN(crypto_tfm_alg_blocksize(tfm
), 4);
41 clen
= ALIGN(clen
+ 2, blksize
);
43 clen
= ALIGN(clen
, esp
->conf
.padlen
);
45 if ((nfrags
= skb_cow_data(skb
, clen
-skb
->len
+alen
, &trailer
)) < 0)
51 for (i
=0; i
<clen
-skb
->len
- 2; i
++)
52 *(u8
*)(trailer
->tail
+ i
) = i
+1;
54 *(u8
*)(trailer
->tail
+ clen
-skb
->len
- 2) = (clen
- skb
->len
)-2;
55 pskb_put(skb
, trailer
, clen
- skb
->len
);
57 __skb_push(skb
, skb
->data
- skb
->nh
.raw
);
58 top_iph
= skb
->nh
.iph
;
59 esph
= (struct ip_esp_hdr
*)(skb
->nh
.raw
+ top_iph
->ihl
*4);
60 top_iph
->tot_len
= htons(skb
->len
+ alen
);
61 *(u8
*)(trailer
->tail
- 1) = top_iph
->protocol
;
63 /* this is non-NULL only with UDP Encapsulation */
65 struct xfrm_encap_tmpl
*encap
= x
->encap
;
69 uh
= (struct udphdr
*)esph
;
70 uh
->source
= encap
->encap_sport
;
71 uh
->dest
= encap
->encap_dport
;
72 uh
->len
= htons(skb
->len
+ alen
- top_iph
->ihl
*4);
75 switch (encap
->encap_type
) {
77 case UDP_ENCAP_ESPINUDP
:
78 esph
= (struct ip_esp_hdr
*)(uh
+ 1);
80 case UDP_ENCAP_ESPINUDP_NON_IKE
:
81 udpdata32
= (u32
*)(uh
+ 1);
82 udpdata32
[0] = udpdata32
[1] = 0;
83 esph
= (struct ip_esp_hdr
*)(udpdata32
+ 2);
87 top_iph
->protocol
= IPPROTO_UDP
;
89 top_iph
->protocol
= IPPROTO_ESP
;
91 esph
->spi
= x
->id
.spi
;
92 esph
->seq_no
= htonl(++x
->replay
.oseq
);
93 xfrm_aevent_doreplay(x
);
96 crypto_cipher_set_iv(tfm
, esp
->conf
.ivec
, crypto_tfm_alg_ivsize(tfm
));
99 struct scatterlist
*sg
= &esp
->sgbuf
[0];
101 if (unlikely(nfrags
> ESP_NUM_FAST_SG
)) {
102 sg
= kmalloc(sizeof(struct scatterlist
)*nfrags
, GFP_ATOMIC
);
106 skb_to_sgvec(skb
, sg
, esph
->enc_data
+esp
->conf
.ivlen
-skb
->data
, clen
);
107 crypto_cipher_encrypt(tfm
, sg
, sg
, clen
);
108 if (unlikely(sg
!= &esp
->sgbuf
[0]))
112 if (esp
->conf
.ivlen
) {
113 memcpy(esph
->enc_data
, esp
->conf
.ivec
, crypto_tfm_alg_ivsize(tfm
));
114 crypto_cipher_get_iv(tfm
, esp
->conf
.ivec
, crypto_tfm_alg_ivsize(tfm
));
117 if (esp
->auth
.icv_full_len
) {
118 esp
->auth
.icv(esp
, skb
, (u8
*)esph
-skb
->data
,
119 sizeof(struct ip_esp_hdr
) + esp
->conf
.ivlen
+clen
, trailer
->tail
);
120 pskb_put(skb
, trailer
, alen
);
123 ip_send_check(top_iph
);
132 * Note: detecting truncated vs. non-truncated authentication data is very
133 * expensive, so we only support truncated data, which is the recommended
136 static int esp_input(struct xfrm_state
*x
, struct sk_buff
*skb
)
139 struct ip_esp_hdr
*esph
;
140 struct esp_data
*esp
= x
->data
;
141 struct sk_buff
*trailer
;
142 int blksize
= ALIGN(crypto_tfm_alg_blocksize(esp
->conf
.tfm
), 4);
143 int alen
= esp
->auth
.icv_trunc_len
;
144 int elen
= skb
->len
- sizeof(struct ip_esp_hdr
) - esp
->conf
.ivlen
- alen
;
148 struct scatterlist
*sg
;
151 if (!pskb_may_pull(skb
, sizeof(struct ip_esp_hdr
)))
154 if (elen
<= 0 || (elen
& (blksize
-1)))
157 /* If integrity check is required, do this. */
158 if (esp
->auth
.icv_full_len
) {
159 u8 sum
[esp
->auth
.icv_full_len
];
162 esp
->auth
.icv(esp
, skb
, 0, skb
->len
-alen
, sum
);
164 if (skb_copy_bits(skb
, skb
->len
-alen
, sum1
, alen
))
167 if (unlikely(memcmp(sum
, sum1
, alen
))) {
168 x
->stats
.integrity_failed
++;
173 if ((nfrags
= skb_cow_data(skb
, 0, &trailer
)) < 0)
176 skb
->ip_summed
= CHECKSUM_NONE
;
178 esph
= (struct ip_esp_hdr
*)skb
->data
;
180 /* Get ivec. This can be wrong, check against another impls. */
182 crypto_cipher_set_iv(esp
->conf
.tfm
, esph
->enc_data
, crypto_tfm_alg_ivsize(esp
->conf
.tfm
));
186 if (unlikely(nfrags
> ESP_NUM_FAST_SG
)) {
187 sg
= kmalloc(sizeof(struct scatterlist
)*nfrags
, GFP_ATOMIC
);
191 skb_to_sgvec(skb
, sg
, sizeof(struct ip_esp_hdr
) + esp
->conf
.ivlen
, elen
);
192 crypto_cipher_decrypt(esp
->conf
.tfm
, sg
, sg
, elen
);
193 if (unlikely(sg
!= &esp
->sgbuf
[0]))
196 if (skb_copy_bits(skb
, skb
->len
-alen
-2, nexthdr
, 2))
200 if (padlen
+2 >= elen
)
203 /* ... check padding bits here. Silly. :-) */
209 struct xfrm_encap_tmpl
*encap
= x
->encap
;
210 struct udphdr
*uh
= (void *)(skb
->nh
.raw
+ ihl
);
213 * 1) if the NAT-T peer's IP or port changed then
214 * advertize the change to the keying daemon.
215 * This is an inbound SA, so just compare
218 if (iph
->saddr
!= x
->props
.saddr
.a4
||
219 uh
->source
!= encap
->encap_sport
) {
220 xfrm_address_t ipaddr
;
222 ipaddr
.a4
= iph
->saddr
;
223 km_new_mapping(x
, &ipaddr
, uh
->source
);
225 /* XXX: perhaps add an extra
226 * policy check here, to see
227 * if we should allow or
228 * reject a packet from a
235 * 2) ignore UDP/TCP checksums in case
236 * of NAT-T in Transport Mode, or
237 * perform other post-processing fixes
238 * as per draft-ietf-ipsec-udp-encaps-06,
242 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
245 iph
->protocol
= nexthdr
[1];
246 pskb_trim(skb
, skb
->len
- alen
- padlen
- 2);
247 skb
->h
.raw
= __skb_pull(skb
, sizeof(*esph
) + esp
->conf
.ivlen
) - ihl
;
255 static u32
esp4_get_max_size(struct xfrm_state
*x
, int mtu
)
257 struct esp_data
*esp
= x
->data
;
258 u32 blksize
= ALIGN(crypto_tfm_alg_blocksize(esp
->conf
.tfm
), 4);
261 mtu
= ALIGN(mtu
+ 2, blksize
);
263 /* The worst case. */
264 mtu
= ALIGN(mtu
+ 2, 4) + blksize
- 4;
266 if (esp
->conf
.padlen
)
267 mtu
= ALIGN(mtu
, esp
->conf
.padlen
);
269 return mtu
+ x
->props
.header_len
+ esp
->auth
.icv_trunc_len
;
272 static void esp4_err(struct sk_buff
*skb
, u32 info
)
274 struct iphdr
*iph
= (struct iphdr
*)skb
->data
;
275 struct ip_esp_hdr
*esph
= (struct ip_esp_hdr
*)(skb
->data
+(iph
->ihl
<<2));
276 struct xfrm_state
*x
;
278 if (skb
->h
.icmph
->type
!= ICMP_DEST_UNREACH
||
279 skb
->h
.icmph
->code
!= ICMP_FRAG_NEEDED
)
282 x
= xfrm_state_lookup((xfrm_address_t
*)&iph
->daddr
, esph
->spi
, IPPROTO_ESP
, AF_INET
);
285 NETDEBUG(KERN_DEBUG
"pmtu discovery on SA ESP/%08x/%08x\n",
286 ntohl(esph
->spi
), ntohl(iph
->daddr
));
290 static void esp_destroy(struct xfrm_state
*x
)
292 struct esp_data
*esp
= x
->data
;
297 crypto_free_tfm(esp
->conf
.tfm
);
298 esp
->conf
.tfm
= NULL
;
299 kfree(esp
->conf
.ivec
);
300 esp
->conf
.ivec
= NULL
;
301 crypto_free_tfm(esp
->auth
.tfm
);
302 esp
->auth
.tfm
= NULL
;
303 kfree(esp
->auth
.work_icv
);
304 esp
->auth
.work_icv
= NULL
;
308 static int esp_init_state(struct xfrm_state
*x
)
310 struct esp_data
*esp
= NULL
;
312 /* null auth and encryption can have zero length keys */
314 if (x
->aalg
->alg_key_len
> 512)
320 esp
= kmalloc(sizeof(*esp
), GFP_KERNEL
);
324 memset(esp
, 0, sizeof(*esp
));
327 struct xfrm_algo_desc
*aalg_desc
;
329 esp
->auth
.key
= x
->aalg
->alg_key
;
330 esp
->auth
.key_len
= (x
->aalg
->alg_key_len
+7)/8;
331 esp
->auth
.tfm
= crypto_alloc_tfm(x
->aalg
->alg_name
, 0);
332 if (esp
->auth
.tfm
== NULL
)
334 esp
->auth
.icv
= esp_hmac_digest
;
336 aalg_desc
= xfrm_aalg_get_byname(x
->aalg
->alg_name
, 0);
339 if (aalg_desc
->uinfo
.auth
.icv_fullbits
/8 !=
340 crypto_tfm_alg_digestsize(esp
->auth
.tfm
)) {
341 NETDEBUG(KERN_INFO
"ESP: %s digestsize %u != %hu\n",
343 crypto_tfm_alg_digestsize(esp
->auth
.tfm
),
344 aalg_desc
->uinfo
.auth
.icv_fullbits
/8);
348 esp
->auth
.icv_full_len
= aalg_desc
->uinfo
.auth
.icv_fullbits
/8;
349 esp
->auth
.icv_trunc_len
= aalg_desc
->uinfo
.auth
.icv_truncbits
/8;
351 esp
->auth
.work_icv
= kmalloc(esp
->auth
.icv_full_len
, GFP_KERNEL
);
352 if (!esp
->auth
.work_icv
)
355 esp
->conf
.key
= x
->ealg
->alg_key
;
356 esp
->conf
.key_len
= (x
->ealg
->alg_key_len
+7)/8;
357 if (x
->props
.ealgo
== SADB_EALG_NULL
)
358 esp
->conf
.tfm
= crypto_alloc_tfm(x
->ealg
->alg_name
, CRYPTO_TFM_MODE_ECB
);
360 esp
->conf
.tfm
= crypto_alloc_tfm(x
->ealg
->alg_name
, CRYPTO_TFM_MODE_CBC
);
361 if (esp
->conf
.tfm
== NULL
)
363 esp
->conf
.ivlen
= crypto_tfm_alg_ivsize(esp
->conf
.tfm
);
364 esp
->conf
.padlen
= 0;
365 if (esp
->conf
.ivlen
) {
366 esp
->conf
.ivec
= kmalloc(esp
->conf
.ivlen
, GFP_KERNEL
);
367 if (unlikely(esp
->conf
.ivec
== NULL
))
369 get_random_bytes(esp
->conf
.ivec
, esp
->conf
.ivlen
);
371 if (crypto_cipher_setkey(esp
->conf
.tfm
, esp
->conf
.key
, esp
->conf
.key_len
))
373 x
->props
.header_len
= sizeof(struct ip_esp_hdr
) + esp
->conf
.ivlen
;
375 x
->props
.header_len
+= sizeof(struct iphdr
);
377 struct xfrm_encap_tmpl
*encap
= x
->encap
;
379 switch (encap
->encap_type
) {
382 case UDP_ENCAP_ESPINUDP
:
383 x
->props
.header_len
+= sizeof(struct udphdr
);
385 case UDP_ENCAP_ESPINUDP_NON_IKE
:
386 x
->props
.header_len
+= sizeof(struct udphdr
) + 2 * sizeof(u32
);
391 x
->props
.trailer_len
= esp4_get_max_size(x
, 0) - x
->props
.header_len
;
401 static struct xfrm_type esp_type
=
403 .description
= "ESP4",
404 .owner
= THIS_MODULE
,
405 .proto
= IPPROTO_ESP
,
406 .init_state
= esp_init_state
,
407 .destructor
= esp_destroy
,
408 .get_max_size
= esp4_get_max_size
,
413 static struct net_protocol esp4_protocol
= {
414 .handler
= xfrm4_rcv
,
415 .err_handler
= esp4_err
,
419 static int __init
esp4_init(void)
421 if (xfrm_register_type(&esp_type
, AF_INET
) < 0) {
422 printk(KERN_INFO
"ip esp init: can't add xfrm type\n");
425 if (inet_add_protocol(&esp4_protocol
, IPPROTO_ESP
) < 0) {
426 printk(KERN_INFO
"ip esp init: can't add protocol\n");
427 xfrm_unregister_type(&esp_type
, AF_INET
);
433 static void __exit
esp4_fini(void)
435 if (inet_del_protocol(&esp4_protocol
, IPPROTO_ESP
) < 0)
436 printk(KERN_INFO
"ip esp close: can't remove protocol\n");
437 if (xfrm_unregister_type(&esp_type
, AF_INET
) < 0)
438 printk(KERN_INFO
"ip esp close: can't remove xfrm type\n");
441 module_init(esp4_init
);
442 module_exit(esp4_fini
);
443 MODULE_LICENSE("GPL");