1 #define pr_fmt(fmt) "IPsec: " fmt
3 #include <crypto/aead.h>
4 #include <crypto/authenc.h>
6 #include <linux/module.h>
10 #include <linux/scatterlist.h>
11 #include <linux/kernel.h>
12 #include <linux/pfkeyv2.h>
13 #include <linux/rtnetlink.h>
14 #include <linux/slab.h>
15 #include <linux/spinlock.h>
16 #include <linux/in6.h>
18 #include <net/protocol.h>
21 #include <linux/highmem.h>
24 struct xfrm_skb_cb xfrm;
28 struct esp_output_extra {
33 #define ESP_SKB_CB(__skb) ((struct esp_skb_cb *)&((__skb)->cb[0]))
35 static u32 esp4_get_mtu(struct xfrm_state *x, int mtu);
38 * Allocate an AEAD request structure with extra space for SG and IV.
40 * For alignment considerations the IV is placed at the front, followed
41 * by the request and finally the SG list.
43 * TODO: Use spare space in skb for this where possible.
45 static void *esp_alloc_tmp(struct crypto_aead *aead, int nfrags, int extralen)
51 len += crypto_aead_ivsize(aead);
54 len += crypto_aead_alignmask(aead) &
55 ~(crypto_tfm_ctx_alignment() - 1);
56 len = ALIGN(len, crypto_tfm_ctx_alignment());
59 len += sizeof(struct aead_request) + crypto_aead_reqsize(aead);
60 len = ALIGN(len, __alignof__(struct scatterlist));
62 len += sizeof(struct scatterlist) * nfrags;
64 return kmalloc(len, GFP_ATOMIC);
67 static inline void *esp_tmp_extra(void *tmp)
69 return PTR_ALIGN(tmp, __alignof__(struct esp_output_extra));
72 static inline u8 *esp_tmp_iv(struct crypto_aead *aead, void *tmp, int extralen)
74 return crypto_aead_ivsize(aead) ?
75 PTR_ALIGN((u8 *)tmp + extralen,
76 crypto_aead_alignmask(aead) + 1) : tmp + extralen;
79 static inline struct aead_request *esp_tmp_req(struct crypto_aead *aead, u8 *iv)
81 struct aead_request *req;
83 req = (void *)PTR_ALIGN(iv + crypto_aead_ivsize(aead),
84 crypto_tfm_ctx_alignment());
85 aead_request_set_tfm(req, aead);
89 static inline struct scatterlist *esp_req_sg(struct crypto_aead *aead,
90 struct aead_request *req)
92 return (void *)ALIGN((unsigned long)(req + 1) +
93 crypto_aead_reqsize(aead),
94 __alignof__(struct scatterlist));
97 static void esp_ssg_unref(struct xfrm_state *x, void *tmp)
99 struct esp_output_extra *extra = esp_tmp_extra(tmp);
100 struct crypto_aead *aead = x->data;
103 struct aead_request *req;
104 struct scatterlist *sg;
106 if (x->props.flags & XFRM_STATE_ESN)
107 extralen += sizeof(*extra);
109 extra = esp_tmp_extra(tmp);
110 iv = esp_tmp_iv(aead, tmp, extralen);
111 req = esp_tmp_req(aead, iv);
113 /* Unref skb_frag_pages in the src scatterlist if necessary.
114 * Skip the first sg which comes from skb->data.
116 if (req->src != req->dst)
117 for (sg = sg_next(req->src); sg; sg = sg_next(sg))
118 put_page(sg_page(sg));
121 static void esp_output_done(struct crypto_async_request *base, int err)
123 struct sk_buff *skb = base->data;
124 struct xfrm_offload *xo = xfrm_offload(skb);
126 struct xfrm_state *x;
128 if (xo && (xo->flags & XFRM_DEV_RESUME))
129 x = skb->sp->xvec[skb->sp->len - 1];
131 x = skb_dst(skb)->xfrm;
133 tmp = ESP_SKB_CB(skb)->tmp;
134 esp_ssg_unref(x, tmp);
137 if (xo && (xo->flags & XFRM_DEV_RESUME)) {
139 XFRM_INC_STATS(xs_net(x), LINUX_MIB_XFRMOUTSTATEPROTOERROR);
144 skb_push(skb, skb->data - skb_mac_header(skb));
146 xfrm_dev_resume(skb);
148 xfrm_output_resume(skb, err);
152 /* Move ESP header back into place. */
153 static void esp_restore_header(struct sk_buff *skb, unsigned int offset)
155 struct ip_esp_hdr *esph = (void *)(skb->data + offset);
156 void *tmp = ESP_SKB_CB(skb)->tmp;
157 __be32 *seqhi = esp_tmp_extra(tmp);
159 esph->seq_no = esph->spi;
163 static void esp_output_restore_header(struct sk_buff *skb)
165 void *tmp = ESP_SKB_CB(skb)->tmp;
166 struct esp_output_extra *extra = esp_tmp_extra(tmp);
168 esp_restore_header(skb, skb_transport_offset(skb) + extra->esphoff -
172 static struct ip_esp_hdr *esp_output_set_extra(struct sk_buff *skb,
173 struct xfrm_state *x,
174 struct ip_esp_hdr *esph,
175 struct esp_output_extra *extra)
177 /* For ESN we move the header forward by 4 bytes to
178 * accomodate the high bits. We will move it back after
181 if ((x->props.flags & XFRM_STATE_ESN)) {
183 struct xfrm_offload *xo = xfrm_offload(skb);
188 seqhi = XFRM_SKB_CB(skb)->seq.output.hi;
190 extra->esphoff = (unsigned char *)esph -
191 skb_transport_header(skb);
192 esph = (struct ip_esp_hdr *)((unsigned char *)esph - 4);
193 extra->seqhi = esph->spi;
194 esph->seq_no = htonl(seqhi);
197 esph->spi = x->id.spi;
202 static void esp_output_done_esn(struct crypto_async_request *base, int err)
204 struct sk_buff *skb = base->data;
206 esp_output_restore_header(skb);
207 esp_output_done(base, err);
210 static void esp_output_fill_trailer(u8 *tail, int tfclen, int plen, __u8 proto)
212 /* Fill padding... */
214 memset(tail, 0, tfclen);
219 for (i = 0; i < plen - 2; i++)
222 tail[plen - 2] = plen - 2;
223 tail[plen - 1] = proto;
226 static int esp_output_udp_encap(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp)
232 struct xfrm_encap_tmpl *encap = x->encap;
233 struct ip_esp_hdr *esph = esp->esph;
236 spin_lock_bh(&x->lock);
237 sport = encap->encap_sport;
238 dport = encap->encap_dport;
239 encap_type = encap->encap_type;
240 spin_unlock_bh(&x->lock);
242 len = skb->len + esp->tailen - skb_transport_offset(skb);
243 if (len + sizeof(struct iphdr) >= IP_MAX_MTU)
246 uh = (struct udphdr *)esph;
249 uh->len = htons(len);
252 switch (encap_type) {
254 case UDP_ENCAP_ESPINUDP:
255 esph = (struct ip_esp_hdr *)(uh + 1);
257 case UDP_ENCAP_ESPINUDP_NON_IKE:
258 udpdata32 = (__be32 *)(uh + 1);
259 udpdata32[0] = udpdata32[1] = 0;
260 esph = (struct ip_esp_hdr *)(udpdata32 + 2);
264 *skb_mac_header(skb) = IPPROTO_UDP;
270 int esp_output_head(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp)
276 struct sk_buff *trailer;
277 int tailen = esp->tailen;
279 /* this is non-NULL only with UDP Encapsulation */
281 int err = esp_output_udp_encap(x, skb, esp);
287 if (!skb_cloned(skb)) {
288 if (tailen <= skb_tailroom(skb)) {
291 tail = skb_tail_pointer(trailer);
294 } else if ((skb_shinfo(skb)->nr_frags < MAX_SKB_FRAGS)
295 && !skb_has_frag_list(skb)) {
297 struct sock *sk = skb->sk;
298 struct page_frag *pfrag = &x->xfrag;
300 esp->inplace = false;
302 allocsize = ALIGN(tailen, L1_CACHE_BYTES);
304 spin_lock_bh(&x->lock);
306 if (unlikely(!skb_page_frag_refill(allocsize, pfrag, GFP_ATOMIC))) {
307 spin_unlock_bh(&x->lock);
314 tail = page_address(page) + pfrag->offset;
316 esp_output_fill_trailer(tail, esp->tfclen, esp->plen, esp->proto);
318 nfrags = skb_shinfo(skb)->nr_frags;
320 __skb_fill_page_desc(skb, nfrags, page, pfrag->offset,
322 skb_shinfo(skb)->nr_frags = ++nfrags;
324 pfrag->offset = pfrag->offset + allocsize;
326 spin_unlock_bh(&x->lock);
331 skb->data_len += tailen;
332 skb->truesize += tailen;
333 if (sk && sk_fullsock(sk))
334 refcount_add(tailen, &sk->sk_wmem_alloc);
341 esph_offset = (unsigned char *)esp->esph - skb_transport_header(skb);
343 nfrags = skb_cow_data(skb, tailen, &trailer);
346 tail = skb_tail_pointer(trailer);
347 esp->esph = (struct ip_esp_hdr *)(skb_transport_header(skb) + esph_offset);
350 esp_output_fill_trailer(tail, esp->tfclen, esp->plen, esp->proto);
351 pskb_put(skb, trailer, tailen);
356 EXPORT_SYMBOL_GPL(esp_output_head);
358 int esp_output_tail(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp)
367 struct ip_esp_hdr *esph;
368 struct crypto_aead *aead;
369 struct aead_request *req;
370 struct scatterlist *sg, *dsg;
371 struct esp_output_extra *extra;
374 assoclen = sizeof(struct ip_esp_hdr);
377 if (x->props.flags & XFRM_STATE_ESN) {
378 extralen += sizeof(*extra);
379 assoclen += sizeof(__be32);
383 alen = crypto_aead_authsize(aead);
384 ivlen = crypto_aead_ivsize(aead);
386 tmp = esp_alloc_tmp(aead, esp->nfrags + 2, extralen);
390 extra = esp_tmp_extra(tmp);
391 iv = esp_tmp_iv(aead, tmp, extralen);
392 req = esp_tmp_req(aead, iv);
393 sg = esp_req_sg(aead, req);
398 dsg = &sg[esp->nfrags];
400 esph = esp_output_set_extra(skb, x, esp->esph, extra);
403 sg_init_table(sg, esp->nfrags);
404 err = skb_to_sgvec(skb, sg,
405 (unsigned char *)esph - skb->data,
406 assoclen + ivlen + esp->clen + alen);
407 if (unlikely(err < 0))
412 struct page_frag *pfrag = &x->xfrag;
414 allocsize = ALIGN(skb->data_len, L1_CACHE_BYTES);
416 spin_lock_bh(&x->lock);
417 if (unlikely(!skb_page_frag_refill(allocsize, pfrag, GFP_ATOMIC))) {
418 spin_unlock_bh(&x->lock);
422 skb_shinfo(skb)->nr_frags = 1;
426 /* replace page frags in skb with new page */
427 __skb_fill_page_desc(skb, 0, page, pfrag->offset, skb->data_len);
428 pfrag->offset = pfrag->offset + allocsize;
429 spin_unlock_bh(&x->lock);
431 sg_init_table(dsg, skb_shinfo(skb)->nr_frags + 1);
432 err = skb_to_sgvec(skb, dsg,
433 (unsigned char *)esph - skb->data,
434 assoclen + ivlen + esp->clen + alen);
435 if (unlikely(err < 0))
439 if ((x->props.flags & XFRM_STATE_ESN))
440 aead_request_set_callback(req, 0, esp_output_done_esn, skb);
442 aead_request_set_callback(req, 0, esp_output_done, skb);
444 aead_request_set_crypt(req, sg, dsg, ivlen + esp->clen, iv);
445 aead_request_set_ad(req, assoclen);
447 memset(iv, 0, ivlen);
448 memcpy(iv + ivlen - min(ivlen, 8), (u8 *)&esp->seqno + 8 - min(ivlen, 8),
451 ESP_SKB_CB(skb)->tmp = tmp;
452 err = crypto_aead_encrypt(req);
463 if ((x->props.flags & XFRM_STATE_ESN))
464 esp_output_restore_header(skb);
468 esp_ssg_unref(x, tmp);
475 EXPORT_SYMBOL_GPL(esp_output_tail);
477 static int esp_output(struct xfrm_state *x, struct sk_buff *skb)
481 struct ip_esp_hdr *esph;
482 struct crypto_aead *aead;
487 esp.proto = *skb_mac_header(skb);
488 *skb_mac_header(skb) = IPPROTO_ESP;
490 /* skb is pure payload to encrypt */
493 alen = crypto_aead_authsize(aead);
497 struct xfrm_dst *dst = (struct xfrm_dst *)skb_dst(skb);
500 padto = min(x->tfcpad, esp4_get_mtu(x, dst->child_mtu_cached));
501 if (skb->len < padto)
502 esp.tfclen = padto - skb->len;
504 blksize = ALIGN(crypto_aead_blocksize(aead), 4);
505 esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize);
506 esp.plen = esp.clen - skb->len - esp.tfclen;
507 esp.tailen = esp.tfclen + esp.plen + alen;
509 esp.esph = ip_esp_hdr(skb);
511 esp.nfrags = esp_output_head(x, skb, &esp);
516 esph->spi = x->id.spi;
518 esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.low);
519 esp.seqno = cpu_to_be64(XFRM_SKB_CB(skb)->seq.output.low +
520 ((u64)XFRM_SKB_CB(skb)->seq.output.hi << 32));
522 skb_push(skb, -skb_network_offset(skb));
524 return esp_output_tail(x, skb, &esp);
527 static inline int esp_remove_trailer(struct sk_buff *skb)
529 struct xfrm_state *x = xfrm_input_state(skb);
530 struct xfrm_offload *xo = xfrm_offload(skb);
531 struct crypto_aead *aead = x->data;
532 int alen, hlen, elen;
538 alen = crypto_aead_authsize(aead);
539 hlen = sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead);
540 elen = skb->len - hlen;
542 if (xo && (xo->flags & XFRM_ESP_NO_TRAILER)) {
547 if (skb_copy_bits(skb, skb->len - alen - 2, nexthdr, 2))
552 if (padlen + 2 + alen >= elen) {
553 net_dbg_ratelimited("ipsec esp packet is garbage padlen=%d, elen=%d\n",
554 padlen + 2, elen - alen);
558 trimlen = alen + padlen + 2;
559 if (skb->ip_summed == CHECKSUM_COMPLETE) {
560 csumdiff = skb_checksum(skb, skb->len - trimlen, trimlen, 0);
561 skb->csum = csum_block_sub(skb->csum, csumdiff,
564 pskb_trim(skb, skb->len - trimlen);
572 int esp_input_done2(struct sk_buff *skb, int err)
574 const struct iphdr *iph;
575 struct xfrm_state *x = xfrm_input_state(skb);
576 struct xfrm_offload *xo = xfrm_offload(skb);
577 struct crypto_aead *aead = x->data;
578 int hlen = sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead);
581 if (!xo || (xo && !(xo->flags & CRYPTO_DONE)))
582 kfree(ESP_SKB_CB(skb)->tmp);
587 err = esp_remove_trailer(skb);
588 if (unlikely(err < 0))
595 struct xfrm_encap_tmpl *encap = x->encap;
596 struct udphdr *uh = (void *)(skb_network_header(skb) + ihl);
599 * 1) if the NAT-T peer's IP or port changed then
600 * advertize the change to the keying daemon.
601 * This is an inbound SA, so just compare
604 if (iph->saddr != x->props.saddr.a4 ||
605 uh->source != encap->encap_sport) {
606 xfrm_address_t ipaddr;
608 ipaddr.a4 = iph->saddr;
609 km_new_mapping(x, &ipaddr, uh->source);
611 /* XXX: perhaps add an extra
612 * policy check here, to see
613 * if we should allow or
614 * reject a packet from a
621 * 2) ignore UDP/TCP checksums in case
622 * of NAT-T in Transport Mode, or
623 * perform other post-processing fixes
624 * as per draft-ietf-ipsec-udp-encaps-06,
627 if (x->props.mode == XFRM_MODE_TRANSPORT)
628 skb->ip_summed = CHECKSUM_UNNECESSARY;
631 skb_pull_rcsum(skb, hlen);
632 if (x->props.mode == XFRM_MODE_TUNNEL)
633 skb_reset_transport_header(skb);
635 skb_set_transport_header(skb, -ihl);
637 /* RFC4303: Drop dummy packets without any error */
638 if (err == IPPROTO_NONE)
644 EXPORT_SYMBOL_GPL(esp_input_done2);
646 static void esp_input_done(struct crypto_async_request *base, int err)
648 struct sk_buff *skb = base->data;
650 xfrm_input_resume(skb, esp_input_done2(skb, err));
653 static void esp_input_restore_header(struct sk_buff *skb)
655 esp_restore_header(skb, 0);
659 static void esp_input_set_header(struct sk_buff *skb, __be32 *seqhi)
661 struct xfrm_state *x = xfrm_input_state(skb);
662 struct ip_esp_hdr *esph;
664 /* For ESN we move the header forward by 4 bytes to
665 * accomodate the high bits. We will move it back after
668 if ((x->props.flags & XFRM_STATE_ESN)) {
669 esph = skb_push(skb, 4);
671 esph->spi = esph->seq_no;
672 esph->seq_no = XFRM_SKB_CB(skb)->seq.input.hi;
676 static void esp_input_done_esn(struct crypto_async_request *base, int err)
678 struct sk_buff *skb = base->data;
680 esp_input_restore_header(skb);
681 esp_input_done(base, err);
685 * Note: detecting truncated vs. non-truncated authentication data is very
686 * expensive, so we only support truncated data, which is the recommended
689 static int esp_input(struct xfrm_state *x, struct sk_buff *skb)
691 struct ip_esp_hdr *esph;
692 struct crypto_aead *aead = x->data;
693 struct aead_request *req;
694 struct sk_buff *trailer;
695 int ivlen = crypto_aead_ivsize(aead);
696 int elen = skb->len - sizeof(*esph) - ivlen;
703 struct scatterlist *sg;
706 if (!pskb_may_pull(skb, sizeof(*esph) + ivlen))
712 assoclen = sizeof(*esph);
715 if (x->props.flags & XFRM_STATE_ESN) {
716 seqhilen += sizeof(__be32);
717 assoclen += seqhilen;
720 if (!skb_cloned(skb)) {
721 if (!skb_is_nonlinear(skb)) {
725 } else if (!skb_has_frag_list(skb)) {
726 nfrags = skb_shinfo(skb)->nr_frags;
733 err = skb_cow_data(skb, 0, &trailer);
741 tmp = esp_alloc_tmp(aead, nfrags, seqhilen);
745 ESP_SKB_CB(skb)->tmp = tmp;
746 seqhi = esp_tmp_extra(tmp);
747 iv = esp_tmp_iv(aead, tmp, seqhilen);
748 req = esp_tmp_req(aead, iv);
749 sg = esp_req_sg(aead, req);
751 esp_input_set_header(skb, seqhi);
753 sg_init_table(sg, nfrags);
754 err = skb_to_sgvec(skb, sg, 0, skb->len);
755 if (unlikely(err < 0)) {
760 skb->ip_summed = CHECKSUM_NONE;
762 if ((x->props.flags & XFRM_STATE_ESN))
763 aead_request_set_callback(req, 0, esp_input_done_esn, skb);
765 aead_request_set_callback(req, 0, esp_input_done, skb);
767 aead_request_set_crypt(req, sg, sg, elen + ivlen, iv);
768 aead_request_set_ad(req, assoclen);
770 err = crypto_aead_decrypt(req);
771 if (err == -EINPROGRESS)
774 if ((x->props.flags & XFRM_STATE_ESN))
775 esp_input_restore_header(skb);
777 err = esp_input_done2(skb, err);
783 static u32 esp4_get_mtu(struct xfrm_state *x, int mtu)
785 struct crypto_aead *aead = x->data;
786 u32 blksize = ALIGN(crypto_aead_blocksize(aead), 4);
787 unsigned int net_adj;
789 switch (x->props.mode) {
790 case XFRM_MODE_TRANSPORT:
792 net_adj = sizeof(struct iphdr);
794 case XFRM_MODE_TUNNEL:
801 return ((mtu - x->props.header_len - crypto_aead_authsize(aead) -
802 net_adj) & ~(blksize - 1)) + net_adj - 2;
805 static int esp4_err(struct sk_buff *skb, u32 info)
807 struct net *net = dev_net(skb->dev);
808 const struct iphdr *iph = (const struct iphdr *)skb->data;
809 struct ip_esp_hdr *esph = (struct ip_esp_hdr *)(skb->data+(iph->ihl<<2));
810 struct xfrm_state *x;
812 switch (icmp_hdr(skb)->type) {
813 case ICMP_DEST_UNREACH:
814 if (icmp_hdr(skb)->code != ICMP_FRAG_NEEDED)
822 x = xfrm_state_lookup(net, skb->mark, (const xfrm_address_t *)&iph->daddr,
823 esph->spi, IPPROTO_ESP, AF_INET);
827 if (icmp_hdr(skb)->type == ICMP_DEST_UNREACH)
828 ipv4_update_pmtu(skb, net, info, 0, 0, IPPROTO_ESP, 0);
830 ipv4_redirect(skb, net, 0, 0, IPPROTO_ESP, 0);
836 static void esp_destroy(struct xfrm_state *x)
838 struct crypto_aead *aead = x->data;
843 crypto_free_aead(aead);
846 static int esp_init_aead(struct xfrm_state *x)
848 char aead_name[CRYPTO_MAX_ALG_NAME];
849 struct crypto_aead *aead;
853 if (snprintf(aead_name, CRYPTO_MAX_ALG_NAME, "%s(%s)",
854 x->geniv, x->aead->alg_name) >= CRYPTO_MAX_ALG_NAME)
857 aead = crypto_alloc_aead(aead_name, 0, 0);
864 err = crypto_aead_setkey(aead, x->aead->alg_key,
865 (x->aead->alg_key_len + 7) / 8);
869 err = crypto_aead_setauthsize(aead, x->aead->alg_icv_len / 8);
877 static int esp_init_authenc(struct xfrm_state *x)
879 struct crypto_aead *aead;
880 struct crypto_authenc_key_param *param;
884 char authenc_name[CRYPTO_MAX_ALG_NAME];
894 if ((x->props.flags & XFRM_STATE_ESN)) {
895 if (snprintf(authenc_name, CRYPTO_MAX_ALG_NAME,
896 "%s%sauthencesn(%s,%s)%s",
897 x->geniv ?: "", x->geniv ? "(" : "",
898 x->aalg ? x->aalg->alg_name : "digest_null",
900 x->geniv ? ")" : "") >= CRYPTO_MAX_ALG_NAME)
903 if (snprintf(authenc_name, CRYPTO_MAX_ALG_NAME,
904 "%s%sauthenc(%s,%s)%s",
905 x->geniv ?: "", x->geniv ? "(" : "",
906 x->aalg ? x->aalg->alg_name : "digest_null",
908 x->geniv ? ")" : "") >= CRYPTO_MAX_ALG_NAME)
912 aead = crypto_alloc_aead(authenc_name, 0, 0);
919 keylen = (x->aalg ? (x->aalg->alg_key_len + 7) / 8 : 0) +
920 (x->ealg->alg_key_len + 7) / 8 + RTA_SPACE(sizeof(*param));
922 key = kmalloc(keylen, GFP_KERNEL);
928 rta->rta_type = CRYPTO_AUTHENC_KEYA_PARAM;
929 rta->rta_len = RTA_LENGTH(sizeof(*param));
930 param = RTA_DATA(rta);
931 p += RTA_SPACE(sizeof(*param));
934 struct xfrm_algo_desc *aalg_desc;
936 memcpy(p, x->aalg->alg_key, (x->aalg->alg_key_len + 7) / 8);
937 p += (x->aalg->alg_key_len + 7) / 8;
939 aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0);
943 if (aalg_desc->uinfo.auth.icv_fullbits / 8 !=
944 crypto_aead_authsize(aead)) {
945 pr_info("ESP: %s digestsize %u != %hu\n",
947 crypto_aead_authsize(aead),
948 aalg_desc->uinfo.auth.icv_fullbits / 8);
952 err = crypto_aead_setauthsize(
953 aead, x->aalg->alg_trunc_len / 8);
958 param->enckeylen = cpu_to_be32((x->ealg->alg_key_len + 7) / 8);
959 memcpy(p, x->ealg->alg_key, (x->ealg->alg_key_len + 7) / 8);
961 err = crypto_aead_setkey(aead, key, keylen);
970 static int esp_init_state(struct xfrm_state *x)
972 struct crypto_aead *aead;
979 err = esp_init_aead(x);
981 err = esp_init_authenc(x);
988 x->props.header_len = sizeof(struct ip_esp_hdr) +
989 crypto_aead_ivsize(aead);
990 if (x->props.mode == XFRM_MODE_TUNNEL)
991 x->props.header_len += sizeof(struct iphdr);
992 else if (x->props.mode == XFRM_MODE_BEET && x->sel.family != AF_INET6)
993 x->props.header_len += IPV4_BEET_PHMAXLEN;
995 struct xfrm_encap_tmpl *encap = x->encap;
997 switch (encap->encap_type) {
1001 case UDP_ENCAP_ESPINUDP:
1002 x->props.header_len += sizeof(struct udphdr);
1004 case UDP_ENCAP_ESPINUDP_NON_IKE:
1005 x->props.header_len += sizeof(struct udphdr) + 2 * sizeof(u32);
1010 align = ALIGN(crypto_aead_blocksize(aead), 4);
1011 x->props.trailer_len = align + 1 + crypto_aead_authsize(aead);
1017 static int esp4_rcv_cb(struct sk_buff *skb, int err)
1022 static const struct xfrm_type esp_type =
1024 .description = "ESP4",
1025 .owner = THIS_MODULE,
1026 .proto = IPPROTO_ESP,
1027 .flags = XFRM_TYPE_REPLAY_PROT,
1028 .init_state = esp_init_state,
1029 .destructor = esp_destroy,
1030 .get_mtu = esp4_get_mtu,
1032 .output = esp_output,
1035 static struct xfrm4_protocol esp4_protocol = {
1036 .handler = xfrm4_rcv,
1037 .input_handler = xfrm_input,
1038 .cb_handler = esp4_rcv_cb,
1039 .err_handler = esp4_err,
1043 static int __init esp4_init(void)
1045 if (xfrm_register_type(&esp_type, AF_INET) < 0) {
1046 pr_info("%s: can't add xfrm type\n", __func__);
1049 if (xfrm4_protocol_register(&esp4_protocol, IPPROTO_ESP) < 0) {
1050 pr_info("%s: can't add protocol\n", __func__);
1051 xfrm_unregister_type(&esp_type, AF_INET);
1057 static void __exit esp4_fini(void)
1059 if (xfrm4_protocol_deregister(&esp4_protocol, IPPROTO_ESP) < 0)
1060 pr_info("%s: can't remove protocol\n", __func__);
1061 if (xfrm_unregister_type(&esp_type, AF_INET) < 0)
1062 pr_info("%s: can't remove xfrm type\n", __func__);
1065 module_init(esp4_init);
1066 module_exit(esp4_fini);
1067 MODULE_LICENSE("GPL");
1068 MODULE_ALIAS_XFRM_TYPE(AF_INET, XFRM_PROTO_ESP);