2 * Copyright (C)2002 USAGI/WIDE Project
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 * Mitsuru KANDA @USAGI : IPv6 Support
20 * Kazunori MIYAZAWA @USAGI :
23 * This file is derived from net/ipv4/esp.c
26 #define pr_fmt(fmt) "IPv6: " fmt
28 #include <crypto/aead.h>
29 #include <crypto/authenc.h>
30 #include <linux/err.h>
31 #include <linux/module.h>
35 #include <linux/scatterlist.h>
36 #include <linux/kernel.h>
37 #include <linux/pfkeyv2.h>
38 #include <linux/random.h>
39 #include <linux/slab.h>
40 #include <linux/spinlock.h>
41 #include <net/ip6_route.h>
44 #include <net/protocol.h>
45 #include <linux/icmpv6.h>
47 #include <linux/highmem.h>
50 struct xfrm_skb_cb xfrm;
54 #define ESP_SKB_CB(__skb) ((struct esp_skb_cb *)&((__skb)->cb[0]))
56 static u32 esp6_get_mtu(struct xfrm_state *x, int mtu);
59 * Allocate an AEAD request structure with extra space for SG and IV.
61 * For alignment considerations the upper 32 bits of the sequence number are
62 * placed at the front, if present. Followed by the IV, the request and finally
65 * TODO: Use spare space in skb for this where possible.
67 static void *esp_alloc_tmp(struct crypto_aead *aead, int nfrags, int seqihlen)
73 len += crypto_aead_ivsize(aead);
76 len += crypto_aead_alignmask(aead) &
77 ~(crypto_tfm_ctx_alignment() - 1);
78 len = ALIGN(len, crypto_tfm_ctx_alignment());
81 len += sizeof(struct aead_request) + crypto_aead_reqsize(aead);
82 len = ALIGN(len, __alignof__(struct scatterlist));
84 len += sizeof(struct scatterlist) * nfrags;
86 return kmalloc(len, GFP_ATOMIC);
89 static inline __be32 *esp_tmp_seqhi(void *tmp)
91 return PTR_ALIGN((__be32 *)tmp, __alignof__(__be32));
94 static inline u8 *esp_tmp_iv(struct crypto_aead *aead, void *tmp, int seqhilen)
96 return crypto_aead_ivsize(aead) ?
97 PTR_ALIGN((u8 *)tmp + seqhilen,
98 crypto_aead_alignmask(aead) + 1) : tmp + seqhilen;
101 static inline struct aead_request *esp_tmp_req(struct crypto_aead *aead, u8 *iv)
103 struct aead_request *req;
105 req = (void *)PTR_ALIGN(iv + crypto_aead_ivsize(aead),
106 crypto_tfm_ctx_alignment());
107 aead_request_set_tfm(req, aead);
111 static inline struct scatterlist *esp_req_sg(struct crypto_aead *aead,
112 struct aead_request *req)
114 return (void *)ALIGN((unsigned long)(req + 1) +
115 crypto_aead_reqsize(aead),
116 __alignof__(struct scatterlist));
119 static void esp_ssg_unref(struct xfrm_state *x, void *tmp)
121 struct crypto_aead *aead = x->data;
124 struct aead_request *req;
125 struct scatterlist *sg;
127 if (x->props.flags & XFRM_STATE_ESN)
128 seqhilen += sizeof(__be32);
130 iv = esp_tmp_iv(aead, tmp, seqhilen);
131 req = esp_tmp_req(aead, iv);
133 /* Unref skb_frag_pages in the src scatterlist if necessary.
134 * Skip the first sg which comes from skb->data.
136 if (req->src != req->dst)
137 for (sg = sg_next(req->src); sg; sg = sg_next(sg))
138 put_page(sg_page(sg));
141 static void esp_output_done(struct crypto_async_request *base, int err)
143 struct sk_buff *skb = base->data;
145 struct dst_entry *dst = skb_dst(skb);
146 struct xfrm_state *x = dst->xfrm;
148 tmp = ESP_SKB_CB(skb)->tmp;
149 esp_ssg_unref(x, tmp);
151 xfrm_output_resume(skb, err);
154 /* Move ESP header back into place. */
155 static void esp_restore_header(struct sk_buff *skb, unsigned int offset)
157 struct ip_esp_hdr *esph = (void *)(skb->data + offset);
158 void *tmp = ESP_SKB_CB(skb)->tmp;
159 __be32 *seqhi = esp_tmp_seqhi(tmp);
161 esph->seq_no = esph->spi;
165 static void esp_output_restore_header(struct sk_buff *skb)
167 esp_restore_header(skb, skb_transport_offset(skb) - sizeof(__be32));
170 static struct ip_esp_hdr *esp_output_set_esn(struct sk_buff *skb,
171 struct xfrm_state *x,
172 struct ip_esp_hdr *esph,
175 /* For ESN we move the header forward by 4 bytes to
176 * accomodate the high bits. We will move it back after
179 if ((x->props.flags & XFRM_STATE_ESN)) {
180 struct xfrm_offload *xo = xfrm_offload(skb);
182 esph = (void *)(skb_transport_header(skb) - sizeof(__be32));
185 esph->seq_no = htonl(xo->seq.hi);
187 esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.hi);
190 esph->spi = x->id.spi;
195 static void esp_output_done_esn(struct crypto_async_request *base, int err)
197 struct sk_buff *skb = base->data;
199 esp_output_restore_header(skb);
200 esp_output_done(base, err);
203 static void esp_output_fill_trailer(u8 *tail, int tfclen, int plen, __u8 proto)
205 /* Fill padding... */
207 memset(tail, 0, tfclen);
212 for (i = 0; i < plen - 2; i++)
215 tail[plen - 2] = plen - 2;
216 tail[plen - 1] = proto;
219 int esp6_output_head(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp)
225 struct sk_buff *trailer;
226 int tailen = esp->tailen;
228 if (!skb_cloned(skb)) {
229 if (tailen <= skb_tailroom(skb)) {
232 tail = skb_tail_pointer(trailer);
235 } else if ((skb_shinfo(skb)->nr_frags < MAX_SKB_FRAGS)
236 && !skb_has_frag_list(skb)) {
238 struct sock *sk = skb->sk;
239 struct page_frag *pfrag = &x->xfrag;
241 esp->inplace = false;
243 allocsize = ALIGN(tailen, L1_CACHE_BYTES);
245 spin_lock_bh(&x->lock);
247 if (unlikely(!skb_page_frag_refill(allocsize, pfrag, GFP_ATOMIC))) {
248 spin_unlock_bh(&x->lock);
255 vaddr = kmap_atomic(page);
257 tail = vaddr + pfrag->offset;
259 esp_output_fill_trailer(tail, esp->tfclen, esp->plen, esp->proto);
261 kunmap_atomic(vaddr);
263 nfrags = skb_shinfo(skb)->nr_frags;
265 __skb_fill_page_desc(skb, nfrags, page, pfrag->offset,
267 skb_shinfo(skb)->nr_frags = ++nfrags;
269 pfrag->offset = pfrag->offset + allocsize;
271 spin_unlock_bh(&x->lock);
276 skb->data_len += tailen;
277 skb->truesize += tailen;
279 refcount_add(tailen, &sk->sk_wmem_alloc);
286 nfrags = skb_cow_data(skb, tailen, &trailer);
289 tail = skb_tail_pointer(trailer);
292 esp_output_fill_trailer(tail, esp->tfclen, esp->plen, esp->proto);
293 pskb_put(skb, trailer, tailen);
298 EXPORT_SYMBOL_GPL(esp6_output_head);
300 int esp6_output_tail(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp)
310 struct ip_esp_hdr *esph;
311 struct aead_request *req;
312 struct crypto_aead *aead;
313 struct scatterlist *sg, *dsg;
316 assoclen = sizeof(struct ip_esp_hdr);
319 if (x->props.flags & XFRM_STATE_ESN) {
320 seqhilen += sizeof(__be32);
321 assoclen += sizeof(__be32);
325 alen = crypto_aead_authsize(aead);
326 ivlen = crypto_aead_ivsize(aead);
328 tmp = esp_alloc_tmp(aead, esp->nfrags + 2, seqhilen);
332 seqhi = esp_tmp_seqhi(tmp);
333 iv = esp_tmp_iv(aead, tmp, seqhilen);
334 req = esp_tmp_req(aead, iv);
335 sg = esp_req_sg(aead, req);
340 dsg = &sg[esp->nfrags];
342 esph = esp_output_set_esn(skb, x, ip_esp_hdr(skb), seqhi);
344 sg_init_table(sg, esp->nfrags);
345 err = skb_to_sgvec(skb, sg,
346 (unsigned char *)esph - skb->data,
347 assoclen + ivlen + esp->clen + alen);
348 if (unlikely(err < 0))
353 struct page_frag *pfrag = &x->xfrag;
355 allocsize = ALIGN(skb->data_len, L1_CACHE_BYTES);
357 spin_lock_bh(&x->lock);
358 if (unlikely(!skb_page_frag_refill(allocsize, pfrag, GFP_ATOMIC))) {
359 spin_unlock_bh(&x->lock);
363 skb_shinfo(skb)->nr_frags = 1;
367 /* replace page frags in skb with new page */
368 __skb_fill_page_desc(skb, 0, page, pfrag->offset, skb->data_len);
369 pfrag->offset = pfrag->offset + allocsize;
370 spin_unlock_bh(&x->lock);
372 sg_init_table(dsg, skb_shinfo(skb)->nr_frags + 1);
373 err = skb_to_sgvec(skb, dsg,
374 (unsigned char *)esph - skb->data,
375 assoclen + ivlen + esp->clen + alen);
376 if (unlikely(err < 0))
380 if ((x->props.flags & XFRM_STATE_ESN))
381 aead_request_set_callback(req, 0, esp_output_done_esn, skb);
383 aead_request_set_callback(req, 0, esp_output_done, skb);
385 aead_request_set_crypt(req, sg, dsg, ivlen + esp->clen, iv);
386 aead_request_set_ad(req, assoclen);
388 memset(iv, 0, ivlen);
389 memcpy(iv + ivlen - min(ivlen, 8), (u8 *)&esp->seqno + 8 - min(ivlen, 8),
392 ESP_SKB_CB(skb)->tmp = tmp;
393 err = crypto_aead_encrypt(req);
404 if ((x->props.flags & XFRM_STATE_ESN))
405 esp_output_restore_header(skb);
409 esp_ssg_unref(x, tmp);
416 EXPORT_SYMBOL_GPL(esp6_output_tail);
418 static int esp6_output(struct xfrm_state *x, struct sk_buff *skb)
422 struct ip_esp_hdr *esph;
423 struct crypto_aead *aead;
428 esp.proto = *skb_mac_header(skb);
429 *skb_mac_header(skb) = IPPROTO_ESP;
431 /* skb is pure payload to encrypt */
434 alen = crypto_aead_authsize(aead);
438 struct xfrm_dst *dst = (struct xfrm_dst *)skb_dst(skb);
441 padto = min(x->tfcpad, esp6_get_mtu(x, dst->child_mtu_cached));
442 if (skb->len < padto)
443 esp.tfclen = padto - skb->len;
445 blksize = ALIGN(crypto_aead_blocksize(aead), 4);
446 esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize);
447 esp.plen = esp.clen - skb->len - esp.tfclen;
448 esp.tailen = esp.tfclen + esp.plen + alen;
450 esp.nfrags = esp6_output_head(x, skb, &esp);
454 esph = ip_esp_hdr(skb);
455 esph->spi = x->id.spi;
457 esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.low);
458 esp.seqno = cpu_to_be64(XFRM_SKB_CB(skb)->seq.output.low +
459 ((u64)XFRM_SKB_CB(skb)->seq.output.hi << 32));
461 skb_push(skb, -skb_network_offset(skb));
463 return esp6_output_tail(x, skb, &esp);
466 static inline int esp_remove_trailer(struct sk_buff *skb)
468 struct xfrm_state *x = xfrm_input_state(skb);
469 struct xfrm_offload *xo = xfrm_offload(skb);
470 struct crypto_aead *aead = x->data;
471 int alen, hlen, elen;
477 alen = crypto_aead_authsize(aead);
478 hlen = sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead);
479 elen = skb->len - hlen;
481 if (xo && (xo->flags & XFRM_ESP_NO_TRAILER)) {
486 ret = skb_copy_bits(skb, skb->len - alen - 2, nexthdr, 2);
491 if (padlen + 2 + alen >= elen) {
492 net_dbg_ratelimited("ipsec esp packet is garbage padlen=%d, elen=%d\n",
493 padlen + 2, elen - alen);
497 trimlen = alen + padlen + 2;
498 if (skb->ip_summed == CHECKSUM_COMPLETE) {
499 csumdiff = skb_checksum(skb, skb->len - trimlen, trimlen, 0);
500 skb->csum = csum_block_sub(skb->csum, csumdiff,
503 pskb_trim(skb, skb->len - trimlen);
511 int esp6_input_done2(struct sk_buff *skb, int err)
513 struct xfrm_state *x = xfrm_input_state(skb);
514 struct xfrm_offload *xo = xfrm_offload(skb);
515 struct crypto_aead *aead = x->data;
516 int hlen = sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead);
517 int hdr_len = skb_network_header_len(skb);
519 if (!xo || (xo && !(xo->flags & CRYPTO_DONE)))
520 kfree(ESP_SKB_CB(skb)->tmp);
525 err = esp_remove_trailer(skb);
526 if (unlikely(err < 0))
529 skb_postpull_rcsum(skb, skb_network_header(skb),
530 skb_network_header_len(skb));
531 skb_pull_rcsum(skb, hlen);
532 if (x->props.mode == XFRM_MODE_TUNNEL)
533 skb_reset_transport_header(skb);
535 skb_set_transport_header(skb, -hdr_len);
537 /* RFC4303: Drop dummy packets without any error */
538 if (err == IPPROTO_NONE)
544 EXPORT_SYMBOL_GPL(esp6_input_done2);
546 static void esp_input_done(struct crypto_async_request *base, int err)
548 struct sk_buff *skb = base->data;
550 xfrm_input_resume(skb, esp6_input_done2(skb, err));
553 static void esp_input_restore_header(struct sk_buff *skb)
555 esp_restore_header(skb, 0);
559 static void esp_input_set_header(struct sk_buff *skb, __be32 *seqhi)
561 struct xfrm_state *x = xfrm_input_state(skb);
563 /* For ESN we move the header forward by 4 bytes to
564 * accomodate the high bits. We will move it back after
567 if ((x->props.flags & XFRM_STATE_ESN)) {
568 struct ip_esp_hdr *esph = skb_push(skb, 4);
571 esph->spi = esph->seq_no;
572 esph->seq_no = XFRM_SKB_CB(skb)->seq.input.hi;
576 static void esp_input_done_esn(struct crypto_async_request *base, int err)
578 struct sk_buff *skb = base->data;
580 esp_input_restore_header(skb);
581 esp_input_done(base, err);
584 static int esp6_input(struct xfrm_state *x, struct sk_buff *skb)
586 struct ip_esp_hdr *esph;
587 struct crypto_aead *aead = x->data;
588 struct aead_request *req;
589 struct sk_buff *trailer;
590 int ivlen = crypto_aead_ivsize(aead);
591 int elen = skb->len - sizeof(*esph) - ivlen;
599 struct scatterlist *sg;
601 if (!pskb_may_pull(skb, sizeof(*esph) + ivlen)) {
611 assoclen = sizeof(*esph);
614 if (x->props.flags & XFRM_STATE_ESN) {
615 seqhilen += sizeof(__be32);
616 assoclen += seqhilen;
619 if (!skb_cloned(skb)) {
620 if (!skb_is_nonlinear(skb)) {
624 } else if (!skb_has_frag_list(skb)) {
625 nfrags = skb_shinfo(skb)->nr_frags;
632 nfrags = skb_cow_data(skb, 0, &trailer);
640 tmp = esp_alloc_tmp(aead, nfrags, seqhilen);
644 ESP_SKB_CB(skb)->tmp = tmp;
645 seqhi = esp_tmp_seqhi(tmp);
646 iv = esp_tmp_iv(aead, tmp, seqhilen);
647 req = esp_tmp_req(aead, iv);
648 sg = esp_req_sg(aead, req);
650 esp_input_set_header(skb, seqhi);
652 sg_init_table(sg, nfrags);
653 ret = skb_to_sgvec(skb, sg, 0, skb->len);
654 if (unlikely(ret < 0))
657 skb->ip_summed = CHECKSUM_NONE;
659 if ((x->props.flags & XFRM_STATE_ESN))
660 aead_request_set_callback(req, 0, esp_input_done_esn, skb);
662 aead_request_set_callback(req, 0, esp_input_done, skb);
664 aead_request_set_crypt(req, sg, sg, elen + ivlen, iv);
665 aead_request_set_ad(req, assoclen);
667 ret = crypto_aead_decrypt(req);
668 if (ret == -EINPROGRESS)
671 if ((x->props.flags & XFRM_STATE_ESN))
672 esp_input_restore_header(skb);
674 ret = esp6_input_done2(skb, ret);
680 static u32 esp6_get_mtu(struct xfrm_state *x, int mtu)
682 struct crypto_aead *aead = x->data;
683 u32 blksize = ALIGN(crypto_aead_blocksize(aead), 4);
684 unsigned int net_adj;
686 if (x->props.mode != XFRM_MODE_TUNNEL)
687 net_adj = sizeof(struct ipv6hdr);
691 return ((mtu - x->props.header_len - crypto_aead_authsize(aead) -
692 net_adj) & ~(blksize - 1)) + net_adj - 2;
695 static int esp6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
696 u8 type, u8 code, int offset, __be32 info)
698 struct net *net = dev_net(skb->dev);
699 const struct ipv6hdr *iph = (const struct ipv6hdr *)skb->data;
700 struct ip_esp_hdr *esph = (struct ip_esp_hdr *)(skb->data + offset);
701 struct xfrm_state *x;
703 if (type != ICMPV6_PKT_TOOBIG &&
704 type != NDISC_REDIRECT)
707 x = xfrm_state_lookup(net, skb->mark, (const xfrm_address_t *)&iph->daddr,
708 esph->spi, IPPROTO_ESP, AF_INET6);
712 if (type == NDISC_REDIRECT)
713 ip6_redirect(skb, net, skb->dev->ifindex, 0,
714 sock_net_uid(net, NULL));
716 ip6_update_pmtu(skb, net, info, 0, 0, sock_net_uid(net, NULL));
722 static void esp6_destroy(struct xfrm_state *x)
724 struct crypto_aead *aead = x->data;
729 crypto_free_aead(aead);
732 static int esp_init_aead(struct xfrm_state *x)
734 char aead_name[CRYPTO_MAX_ALG_NAME];
735 struct crypto_aead *aead;
740 if (snprintf(aead_name, CRYPTO_MAX_ALG_NAME, "%s(%s)",
741 x->geniv, x->aead->alg_name) >= CRYPTO_MAX_ALG_NAME)
744 if (x->xso.offload_handle)
745 mask |= CRYPTO_ALG_ASYNC;
747 aead = crypto_alloc_aead(aead_name, 0, mask);
754 err = crypto_aead_setkey(aead, x->aead->alg_key,
755 (x->aead->alg_key_len + 7) / 8);
759 err = crypto_aead_setauthsize(aead, x->aead->alg_icv_len / 8);
767 static int esp_init_authenc(struct xfrm_state *x)
769 struct crypto_aead *aead;
770 struct crypto_authenc_key_param *param;
774 char authenc_name[CRYPTO_MAX_ALG_NAME];
785 if ((x->props.flags & XFRM_STATE_ESN)) {
786 if (snprintf(authenc_name, CRYPTO_MAX_ALG_NAME,
787 "%s%sauthencesn(%s,%s)%s",
788 x->geniv ?: "", x->geniv ? "(" : "",
789 x->aalg ? x->aalg->alg_name : "digest_null",
791 x->geniv ? ")" : "") >= CRYPTO_MAX_ALG_NAME)
794 if (snprintf(authenc_name, CRYPTO_MAX_ALG_NAME,
795 "%s%sauthenc(%s,%s)%s",
796 x->geniv ?: "", x->geniv ? "(" : "",
797 x->aalg ? x->aalg->alg_name : "digest_null",
799 x->geniv ? ")" : "") >= CRYPTO_MAX_ALG_NAME)
803 if (x->xso.offload_handle)
804 mask |= CRYPTO_ALG_ASYNC;
806 aead = crypto_alloc_aead(authenc_name, 0, mask);
813 keylen = (x->aalg ? (x->aalg->alg_key_len + 7) / 8 : 0) +
814 (x->ealg->alg_key_len + 7) / 8 + RTA_SPACE(sizeof(*param));
816 key = kmalloc(keylen, GFP_KERNEL);
822 rta->rta_type = CRYPTO_AUTHENC_KEYA_PARAM;
823 rta->rta_len = RTA_LENGTH(sizeof(*param));
824 param = RTA_DATA(rta);
825 p += RTA_SPACE(sizeof(*param));
828 struct xfrm_algo_desc *aalg_desc;
830 memcpy(p, x->aalg->alg_key, (x->aalg->alg_key_len + 7) / 8);
831 p += (x->aalg->alg_key_len + 7) / 8;
833 aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0);
837 if (aalg_desc->uinfo.auth.icv_fullbits / 8 !=
838 crypto_aead_authsize(aead)) {
839 pr_info("ESP: %s digestsize %u != %hu\n",
841 crypto_aead_authsize(aead),
842 aalg_desc->uinfo.auth.icv_fullbits / 8);
846 err = crypto_aead_setauthsize(
847 aead, x->aalg->alg_trunc_len / 8);
852 param->enckeylen = cpu_to_be32((x->ealg->alg_key_len + 7) / 8);
853 memcpy(p, x->ealg->alg_key, (x->ealg->alg_key_len + 7) / 8);
855 err = crypto_aead_setkey(aead, key, keylen);
864 static int esp6_init_state(struct xfrm_state *x)
866 struct crypto_aead *aead;
876 err = esp_init_aead(x);
878 err = esp_init_authenc(x);
885 x->props.header_len = sizeof(struct ip_esp_hdr) +
886 crypto_aead_ivsize(aead);
887 switch (x->props.mode) {
889 if (x->sel.family != AF_INET6)
890 x->props.header_len += IPV4_BEET_PHMAXLEN +
891 (sizeof(struct ipv6hdr) - sizeof(struct iphdr));
893 case XFRM_MODE_TRANSPORT:
895 case XFRM_MODE_TUNNEL:
896 x->props.header_len += sizeof(struct ipv6hdr);
902 align = ALIGN(crypto_aead_blocksize(aead), 4);
903 x->props.trailer_len = align + 1 + crypto_aead_authsize(aead);
909 static int esp6_rcv_cb(struct sk_buff *skb, int err)
914 static const struct xfrm_type esp6_type = {
915 .description = "ESP6",
916 .owner = THIS_MODULE,
917 .proto = IPPROTO_ESP,
918 .flags = XFRM_TYPE_REPLAY_PROT,
919 .init_state = esp6_init_state,
920 .destructor = esp6_destroy,
921 .get_mtu = esp6_get_mtu,
923 .output = esp6_output,
924 .hdr_offset = xfrm6_find_1stfragopt,
927 static struct xfrm6_protocol esp6_protocol = {
928 .handler = xfrm6_rcv,
929 .cb_handler = esp6_rcv_cb,
930 .err_handler = esp6_err,
934 static int __init esp6_init(void)
936 if (xfrm_register_type(&esp6_type, AF_INET6) < 0) {
937 pr_info("%s: can't add xfrm type\n", __func__);
940 if (xfrm6_protocol_register(&esp6_protocol, IPPROTO_ESP) < 0) {
941 pr_info("%s: can't add protocol\n", __func__);
942 xfrm_unregister_type(&esp6_type, AF_INET6);
949 static void __exit esp6_fini(void)
951 if (xfrm6_protocol_deregister(&esp6_protocol, IPPROTO_ESP) < 0)
952 pr_info("%s: can't remove protocol\n", __func__);
953 if (xfrm_unregister_type(&esp6_type, AF_INET6) < 0)
954 pr_info("%s: can't remove xfrm type\n", __func__);
957 module_init(esp6_init);
958 module_exit(esp6_fini);
960 MODULE_LICENSE("GPL");
961 MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_ESP);