1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C)2002 USAGI/WIDE Project
7 * Mitsuru KANDA @USAGI : IPv6 Support
8 * Kazunori MIYAZAWA @USAGI :
11 * This file is derived from net/ipv4/esp.c
14 #define pr_fmt(fmt) "IPv6: " fmt
16 #include <crypto/aead.h>
17 #include <crypto/authenc.h>
18 #include <linux/err.h>
19 #include <linux/module.h>
23 #include <linux/scatterlist.h>
24 #include <linux/kernel.h>
25 #include <linux/pfkeyv2.h>
26 #include <linux/random.h>
27 #include <linux/slab.h>
28 #include <linux/spinlock.h>
29 #include <net/ip6_route.h>
32 #include <net/protocol.h>
33 #include <linux/icmpv6.h>
35 #include <linux/highmem.h>
38 struct xfrm_skb_cb xfrm;
42 #define ESP_SKB_CB(__skb) ((struct esp_skb_cb *)&((__skb)->cb[0]))
44 static u32 esp6_get_mtu(struct xfrm_state *x, int mtu);
47 * Allocate an AEAD request structure with extra space for SG and IV.
49 * For alignment considerations the upper 32 bits of the sequence number are
50 * placed at the front, if present. Followed by the IV, the request and finally
53 * TODO: Use spare space in skb for this where possible.
55 static void *esp_alloc_tmp(struct crypto_aead *aead, int nfrags, int seqihlen)
61 len += crypto_aead_ivsize(aead);
64 len += crypto_aead_alignmask(aead) &
65 ~(crypto_tfm_ctx_alignment() - 1);
66 len = ALIGN(len, crypto_tfm_ctx_alignment());
69 len += sizeof(struct aead_request) + crypto_aead_reqsize(aead);
70 len = ALIGN(len, __alignof__(struct scatterlist));
72 len += sizeof(struct scatterlist) * nfrags;
74 return kmalloc(len, GFP_ATOMIC);
77 static inline __be32 *esp_tmp_seqhi(void *tmp)
79 return PTR_ALIGN((__be32 *)tmp, __alignof__(__be32));
82 static inline u8 *esp_tmp_iv(struct crypto_aead *aead, void *tmp, int seqhilen)
84 return crypto_aead_ivsize(aead) ?
85 PTR_ALIGN((u8 *)tmp + seqhilen,
86 crypto_aead_alignmask(aead) + 1) : tmp + seqhilen;
89 static inline struct aead_request *esp_tmp_req(struct crypto_aead *aead, u8 *iv)
91 struct aead_request *req;
93 req = (void *)PTR_ALIGN(iv + crypto_aead_ivsize(aead),
94 crypto_tfm_ctx_alignment());
95 aead_request_set_tfm(req, aead);
99 static inline struct scatterlist *esp_req_sg(struct crypto_aead *aead,
100 struct aead_request *req)
102 return (void *)ALIGN((unsigned long)(req + 1) +
103 crypto_aead_reqsize(aead),
104 __alignof__(struct scatterlist));
107 static void esp_ssg_unref(struct xfrm_state *x, void *tmp)
109 struct crypto_aead *aead = x->data;
112 struct aead_request *req;
113 struct scatterlist *sg;
115 if (x->props.flags & XFRM_STATE_ESN)
116 seqhilen += sizeof(__be32);
118 iv = esp_tmp_iv(aead, tmp, seqhilen);
119 req = esp_tmp_req(aead, iv);
121 /* Unref skb_frag_pages in the src scatterlist if necessary.
122 * Skip the first sg which comes from skb->data.
124 if (req->src != req->dst)
125 for (sg = sg_next(req->src); sg; sg = sg_next(sg))
126 put_page(sg_page(sg));
129 static void esp_output_done(struct crypto_async_request *base, int err)
131 struct sk_buff *skb = base->data;
132 struct xfrm_offload *xo = xfrm_offload(skb);
134 struct xfrm_state *x;
136 if (xo && (xo->flags & XFRM_DEV_RESUME)) {
137 struct sec_path *sp = skb_sec_path(skb);
139 x = sp->xvec[sp->len - 1];
141 x = skb_dst(skb)->xfrm;
144 tmp = ESP_SKB_CB(skb)->tmp;
145 esp_ssg_unref(x, tmp);
148 if (xo && (xo->flags & XFRM_DEV_RESUME)) {
150 XFRM_INC_STATS(xs_net(x), LINUX_MIB_XFRMOUTSTATEPROTOERROR);
155 skb_push(skb, skb->data - skb_mac_header(skb));
157 xfrm_dev_resume(skb);
159 xfrm_output_resume(skb, err);
163 /* Move ESP header back into place. */
164 static void esp_restore_header(struct sk_buff *skb, unsigned int offset)
166 struct ip_esp_hdr *esph = (void *)(skb->data + offset);
167 void *tmp = ESP_SKB_CB(skb)->tmp;
168 __be32 *seqhi = esp_tmp_seqhi(tmp);
170 esph->seq_no = esph->spi;
174 static void esp_output_restore_header(struct sk_buff *skb)
176 esp_restore_header(skb, skb_transport_offset(skb) - sizeof(__be32));
179 static struct ip_esp_hdr *esp_output_set_esn(struct sk_buff *skb,
180 struct xfrm_state *x,
181 struct ip_esp_hdr *esph,
184 /* For ESN we move the header forward by 4 bytes to
185 * accomodate the high bits. We will move it back after
188 if ((x->props.flags & XFRM_STATE_ESN)) {
189 struct xfrm_offload *xo = xfrm_offload(skb);
191 esph = (void *)(skb_transport_header(skb) - sizeof(__be32));
194 esph->seq_no = htonl(xo->seq.hi);
196 esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.hi);
199 esph->spi = x->id.spi;
204 static void esp_output_done_esn(struct crypto_async_request *base, int err)
206 struct sk_buff *skb = base->data;
208 esp_output_restore_header(skb);
209 esp_output_done(base, err);
212 static void esp_output_fill_trailer(u8 *tail, int tfclen, int plen, __u8 proto)
214 /* Fill padding... */
216 memset(tail, 0, tfclen);
221 for (i = 0; i < plen - 2; i++)
224 tail[plen - 2] = plen - 2;
225 tail[plen - 1] = proto;
228 int esp6_output_head(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp)
234 struct sk_buff *trailer;
235 int tailen = esp->tailen;
237 if (!skb_cloned(skb)) {
238 if (tailen <= skb_tailroom(skb)) {
241 tail = skb_tail_pointer(trailer);
244 } else if ((skb_shinfo(skb)->nr_frags < MAX_SKB_FRAGS)
245 && !skb_has_frag_list(skb)) {
247 struct sock *sk = skb->sk;
248 struct page_frag *pfrag = &x->xfrag;
250 esp->inplace = false;
252 allocsize = ALIGN(tailen, L1_CACHE_BYTES);
254 spin_lock_bh(&x->lock);
256 if (unlikely(!skb_page_frag_refill(allocsize, pfrag, GFP_ATOMIC))) {
257 spin_unlock_bh(&x->lock);
264 vaddr = kmap_atomic(page);
266 tail = vaddr + pfrag->offset;
268 esp_output_fill_trailer(tail, esp->tfclen, esp->plen, esp->proto);
270 kunmap_atomic(vaddr);
272 nfrags = skb_shinfo(skb)->nr_frags;
274 __skb_fill_page_desc(skb, nfrags, page, pfrag->offset,
276 skb_shinfo(skb)->nr_frags = ++nfrags;
278 pfrag->offset = pfrag->offset + allocsize;
280 spin_unlock_bh(&x->lock);
285 skb->data_len += tailen;
286 skb->truesize += tailen;
287 if (sk && sk_fullsock(sk))
288 refcount_add(tailen, &sk->sk_wmem_alloc);
295 nfrags = skb_cow_data(skb, tailen, &trailer);
298 tail = skb_tail_pointer(trailer);
301 esp_output_fill_trailer(tail, esp->tfclen, esp->plen, esp->proto);
302 pskb_put(skb, trailer, tailen);
307 EXPORT_SYMBOL_GPL(esp6_output_head);
309 int esp6_output_tail(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp)
319 struct ip_esp_hdr *esph;
320 struct aead_request *req;
321 struct crypto_aead *aead;
322 struct scatterlist *sg, *dsg;
325 assoclen = sizeof(struct ip_esp_hdr);
328 if (x->props.flags & XFRM_STATE_ESN) {
329 seqhilen += sizeof(__be32);
330 assoclen += sizeof(__be32);
334 alen = crypto_aead_authsize(aead);
335 ivlen = crypto_aead_ivsize(aead);
337 tmp = esp_alloc_tmp(aead, esp->nfrags + 2, seqhilen);
341 seqhi = esp_tmp_seqhi(tmp);
342 iv = esp_tmp_iv(aead, tmp, seqhilen);
343 req = esp_tmp_req(aead, iv);
344 sg = esp_req_sg(aead, req);
349 dsg = &sg[esp->nfrags];
351 esph = esp_output_set_esn(skb, x, ip_esp_hdr(skb), seqhi);
353 sg_init_table(sg, esp->nfrags);
354 err = skb_to_sgvec(skb, sg,
355 (unsigned char *)esph - skb->data,
356 assoclen + ivlen + esp->clen + alen);
357 if (unlikely(err < 0))
362 struct page_frag *pfrag = &x->xfrag;
364 allocsize = ALIGN(skb->data_len, L1_CACHE_BYTES);
366 spin_lock_bh(&x->lock);
367 if (unlikely(!skb_page_frag_refill(allocsize, pfrag, GFP_ATOMIC))) {
368 spin_unlock_bh(&x->lock);
372 skb_shinfo(skb)->nr_frags = 1;
376 /* replace page frags in skb with new page */
377 __skb_fill_page_desc(skb, 0, page, pfrag->offset, skb->data_len);
378 pfrag->offset = pfrag->offset + allocsize;
379 spin_unlock_bh(&x->lock);
381 sg_init_table(dsg, skb_shinfo(skb)->nr_frags + 1);
382 err = skb_to_sgvec(skb, dsg,
383 (unsigned char *)esph - skb->data,
384 assoclen + ivlen + esp->clen + alen);
385 if (unlikely(err < 0))
389 if ((x->props.flags & XFRM_STATE_ESN))
390 aead_request_set_callback(req, 0, esp_output_done_esn, skb);
392 aead_request_set_callback(req, 0, esp_output_done, skb);
394 aead_request_set_crypt(req, sg, dsg, ivlen + esp->clen, iv);
395 aead_request_set_ad(req, assoclen);
397 memset(iv, 0, ivlen);
398 memcpy(iv + ivlen - min(ivlen, 8), (u8 *)&esp->seqno + 8 - min(ivlen, 8),
401 ESP_SKB_CB(skb)->tmp = tmp;
402 err = crypto_aead_encrypt(req);
413 if ((x->props.flags & XFRM_STATE_ESN))
414 esp_output_restore_header(skb);
418 esp_ssg_unref(x, tmp);
425 EXPORT_SYMBOL_GPL(esp6_output_tail);
427 static int esp6_output(struct xfrm_state *x, struct sk_buff *skb)
431 struct ip_esp_hdr *esph;
432 struct crypto_aead *aead;
437 esp.proto = *skb_mac_header(skb);
438 *skb_mac_header(skb) = IPPROTO_ESP;
440 /* skb is pure payload to encrypt */
443 alen = crypto_aead_authsize(aead);
447 struct xfrm_dst *dst = (struct xfrm_dst *)skb_dst(skb);
450 padto = min(x->tfcpad, esp6_get_mtu(x, dst->child_mtu_cached));
451 if (skb->len < padto)
452 esp.tfclen = padto - skb->len;
454 blksize = ALIGN(crypto_aead_blocksize(aead), 4);
455 esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize);
456 esp.plen = esp.clen - skb->len - esp.tfclen;
457 esp.tailen = esp.tfclen + esp.plen + alen;
459 esp.nfrags = esp6_output_head(x, skb, &esp);
463 esph = ip_esp_hdr(skb);
464 esph->spi = x->id.spi;
466 esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.low);
467 esp.seqno = cpu_to_be64(XFRM_SKB_CB(skb)->seq.output.low +
468 ((u64)XFRM_SKB_CB(skb)->seq.output.hi << 32));
470 skb_push(skb, -skb_network_offset(skb));
472 return esp6_output_tail(x, skb, &esp);
475 static inline int esp_remove_trailer(struct sk_buff *skb)
477 struct xfrm_state *x = xfrm_input_state(skb);
478 struct xfrm_offload *xo = xfrm_offload(skb);
479 struct crypto_aead *aead = x->data;
480 int alen, hlen, elen;
486 alen = crypto_aead_authsize(aead);
487 hlen = sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead);
488 elen = skb->len - hlen;
490 if (xo && (xo->flags & XFRM_ESP_NO_TRAILER)) {
495 ret = skb_copy_bits(skb, skb->len - alen - 2, nexthdr, 2);
500 if (padlen + 2 + alen >= elen) {
501 net_dbg_ratelimited("ipsec esp packet is garbage padlen=%d, elen=%d\n",
502 padlen + 2, elen - alen);
506 trimlen = alen + padlen + 2;
507 if (skb->ip_summed == CHECKSUM_COMPLETE) {
508 csumdiff = skb_checksum(skb, skb->len - trimlen, trimlen, 0);
509 skb->csum = csum_block_sub(skb->csum, csumdiff,
512 pskb_trim(skb, skb->len - trimlen);
520 int esp6_input_done2(struct sk_buff *skb, int err)
522 struct xfrm_state *x = xfrm_input_state(skb);
523 struct xfrm_offload *xo = xfrm_offload(skb);
524 struct crypto_aead *aead = x->data;
525 int hlen = sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead);
526 int hdr_len = skb_network_header_len(skb);
528 if (!xo || (xo && !(xo->flags & CRYPTO_DONE)))
529 kfree(ESP_SKB_CB(skb)->tmp);
534 err = esp_remove_trailer(skb);
535 if (unlikely(err < 0))
538 skb_postpull_rcsum(skb, skb_network_header(skb),
539 skb_network_header_len(skb));
540 skb_pull_rcsum(skb, hlen);
541 if (x->props.mode == XFRM_MODE_TUNNEL)
542 skb_reset_transport_header(skb);
544 skb_set_transport_header(skb, -hdr_len);
546 /* RFC4303: Drop dummy packets without any error */
547 if (err == IPPROTO_NONE)
553 EXPORT_SYMBOL_GPL(esp6_input_done2);
555 static void esp_input_done(struct crypto_async_request *base, int err)
557 struct sk_buff *skb = base->data;
559 xfrm_input_resume(skb, esp6_input_done2(skb, err));
562 static void esp_input_restore_header(struct sk_buff *skb)
564 esp_restore_header(skb, 0);
568 static void esp_input_set_header(struct sk_buff *skb, __be32 *seqhi)
570 struct xfrm_state *x = xfrm_input_state(skb);
572 /* For ESN we move the header forward by 4 bytes to
573 * accomodate the high bits. We will move it back after
576 if ((x->props.flags & XFRM_STATE_ESN)) {
577 struct ip_esp_hdr *esph = skb_push(skb, 4);
580 esph->spi = esph->seq_no;
581 esph->seq_no = XFRM_SKB_CB(skb)->seq.input.hi;
585 static void esp_input_done_esn(struct crypto_async_request *base, int err)
587 struct sk_buff *skb = base->data;
589 esp_input_restore_header(skb);
590 esp_input_done(base, err);
593 static int esp6_input(struct xfrm_state *x, struct sk_buff *skb)
595 struct crypto_aead *aead = x->data;
596 struct aead_request *req;
597 struct sk_buff *trailer;
598 int ivlen = crypto_aead_ivsize(aead);
599 int elen = skb->len - sizeof(struct ip_esp_hdr) - ivlen;
607 struct scatterlist *sg;
609 if (!pskb_may_pull(skb, sizeof(struct ip_esp_hdr) + ivlen)) {
619 assoclen = sizeof(struct ip_esp_hdr);
622 if (x->props.flags & XFRM_STATE_ESN) {
623 seqhilen += sizeof(__be32);
624 assoclen += seqhilen;
627 if (!skb_cloned(skb)) {
628 if (!skb_is_nonlinear(skb)) {
632 } else if (!skb_has_frag_list(skb)) {
633 nfrags = skb_shinfo(skb)->nr_frags;
640 nfrags = skb_cow_data(skb, 0, &trailer);
648 tmp = esp_alloc_tmp(aead, nfrags, seqhilen);
652 ESP_SKB_CB(skb)->tmp = tmp;
653 seqhi = esp_tmp_seqhi(tmp);
654 iv = esp_tmp_iv(aead, tmp, seqhilen);
655 req = esp_tmp_req(aead, iv);
656 sg = esp_req_sg(aead, req);
658 esp_input_set_header(skb, seqhi);
660 sg_init_table(sg, nfrags);
661 ret = skb_to_sgvec(skb, sg, 0, skb->len);
662 if (unlikely(ret < 0)) {
667 skb->ip_summed = CHECKSUM_NONE;
669 if ((x->props.flags & XFRM_STATE_ESN))
670 aead_request_set_callback(req, 0, esp_input_done_esn, skb);
672 aead_request_set_callback(req, 0, esp_input_done, skb);
674 aead_request_set_crypt(req, sg, sg, elen + ivlen, iv);
675 aead_request_set_ad(req, assoclen);
677 ret = crypto_aead_decrypt(req);
678 if (ret == -EINPROGRESS)
681 if ((x->props.flags & XFRM_STATE_ESN))
682 esp_input_restore_header(skb);
684 ret = esp6_input_done2(skb, ret);
690 static u32 esp6_get_mtu(struct xfrm_state *x, int mtu)
692 struct crypto_aead *aead = x->data;
693 u32 blksize = ALIGN(crypto_aead_blocksize(aead), 4);
694 unsigned int net_adj;
696 if (x->props.mode != XFRM_MODE_TUNNEL)
697 net_adj = sizeof(struct ipv6hdr);
701 return ((mtu - x->props.header_len - crypto_aead_authsize(aead) -
702 net_adj) & ~(blksize - 1)) + net_adj - 2;
705 static int esp6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
706 u8 type, u8 code, int offset, __be32 info)
708 struct net *net = dev_net(skb->dev);
709 const struct ipv6hdr *iph = (const struct ipv6hdr *)skb->data;
710 struct ip_esp_hdr *esph = (struct ip_esp_hdr *)(skb->data + offset);
711 struct xfrm_state *x;
713 if (type != ICMPV6_PKT_TOOBIG &&
714 type != NDISC_REDIRECT)
717 x = xfrm_state_lookup(net, skb->mark, (const xfrm_address_t *)&iph->daddr,
718 esph->spi, IPPROTO_ESP, AF_INET6);
722 if (type == NDISC_REDIRECT)
723 ip6_redirect(skb, net, skb->dev->ifindex, 0,
724 sock_net_uid(net, NULL));
726 ip6_update_pmtu(skb, net, info, 0, 0, sock_net_uid(net, NULL));
732 static void esp6_destroy(struct xfrm_state *x)
734 struct crypto_aead *aead = x->data;
739 crypto_free_aead(aead);
742 static int esp_init_aead(struct xfrm_state *x)
744 char aead_name[CRYPTO_MAX_ALG_NAME];
745 struct crypto_aead *aead;
749 if (snprintf(aead_name, CRYPTO_MAX_ALG_NAME, "%s(%s)",
750 x->geniv, x->aead->alg_name) >= CRYPTO_MAX_ALG_NAME)
753 aead = crypto_alloc_aead(aead_name, 0, 0);
760 err = crypto_aead_setkey(aead, x->aead->alg_key,
761 (x->aead->alg_key_len + 7) / 8);
765 err = crypto_aead_setauthsize(aead, x->aead->alg_icv_len / 8);
773 static int esp_init_authenc(struct xfrm_state *x)
775 struct crypto_aead *aead;
776 struct crypto_authenc_key_param *param;
780 char authenc_name[CRYPTO_MAX_ALG_NAME];
790 if ((x->props.flags & XFRM_STATE_ESN)) {
791 if (snprintf(authenc_name, CRYPTO_MAX_ALG_NAME,
792 "%s%sauthencesn(%s,%s)%s",
793 x->geniv ?: "", x->geniv ? "(" : "",
794 x->aalg ? x->aalg->alg_name : "digest_null",
796 x->geniv ? ")" : "") >= CRYPTO_MAX_ALG_NAME)
799 if (snprintf(authenc_name, CRYPTO_MAX_ALG_NAME,
800 "%s%sauthenc(%s,%s)%s",
801 x->geniv ?: "", x->geniv ? "(" : "",
802 x->aalg ? x->aalg->alg_name : "digest_null",
804 x->geniv ? ")" : "") >= CRYPTO_MAX_ALG_NAME)
808 aead = crypto_alloc_aead(authenc_name, 0, 0);
815 keylen = (x->aalg ? (x->aalg->alg_key_len + 7) / 8 : 0) +
816 (x->ealg->alg_key_len + 7) / 8 + RTA_SPACE(sizeof(*param));
818 key = kmalloc(keylen, GFP_KERNEL);
824 rta->rta_type = CRYPTO_AUTHENC_KEYA_PARAM;
825 rta->rta_len = RTA_LENGTH(sizeof(*param));
826 param = RTA_DATA(rta);
827 p += RTA_SPACE(sizeof(*param));
830 struct xfrm_algo_desc *aalg_desc;
832 memcpy(p, x->aalg->alg_key, (x->aalg->alg_key_len + 7) / 8);
833 p += (x->aalg->alg_key_len + 7) / 8;
835 aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0);
839 if (aalg_desc->uinfo.auth.icv_fullbits / 8 !=
840 crypto_aead_authsize(aead)) {
841 pr_info("ESP: %s digestsize %u != %hu\n",
843 crypto_aead_authsize(aead),
844 aalg_desc->uinfo.auth.icv_fullbits / 8);
848 err = crypto_aead_setauthsize(
849 aead, x->aalg->alg_trunc_len / 8);
854 param->enckeylen = cpu_to_be32((x->ealg->alg_key_len + 7) / 8);
855 memcpy(p, x->ealg->alg_key, (x->ealg->alg_key_len + 7) / 8);
857 err = crypto_aead_setkey(aead, key, keylen);
866 static int esp6_init_state(struct xfrm_state *x)
868 struct crypto_aead *aead;
878 err = esp_init_aead(x);
880 err = esp_init_authenc(x);
887 x->props.header_len = sizeof(struct ip_esp_hdr) +
888 crypto_aead_ivsize(aead);
889 switch (x->props.mode) {
891 if (x->sel.family != AF_INET6)
892 x->props.header_len += IPV4_BEET_PHMAXLEN +
893 (sizeof(struct ipv6hdr) - sizeof(struct iphdr));
896 case XFRM_MODE_TRANSPORT:
898 case XFRM_MODE_TUNNEL:
899 x->props.header_len += sizeof(struct ipv6hdr);
903 align = ALIGN(crypto_aead_blocksize(aead), 4);
904 x->props.trailer_len = align + 1 + crypto_aead_authsize(aead);
910 static int esp6_rcv_cb(struct sk_buff *skb, int err)
915 static const struct xfrm_type esp6_type = {
916 .description = "ESP6",
917 .owner = THIS_MODULE,
918 .proto = IPPROTO_ESP,
919 .flags = XFRM_TYPE_REPLAY_PROT,
920 .init_state = esp6_init_state,
921 .destructor = esp6_destroy,
922 .get_mtu = esp6_get_mtu,
924 .output = esp6_output,
925 .hdr_offset = xfrm6_find_1stfragopt,
928 static struct xfrm6_protocol esp6_protocol = {
929 .handler = xfrm6_rcv,
930 .cb_handler = esp6_rcv_cb,
931 .err_handler = esp6_err,
935 static int __init esp6_init(void)
937 if (xfrm_register_type(&esp6_type, AF_INET6) < 0) {
938 pr_info("%s: can't add xfrm type\n", __func__);
941 if (xfrm6_protocol_register(&esp6_protocol, IPPROTO_ESP) < 0) {
942 pr_info("%s: can't add protocol\n", __func__);
943 xfrm_unregister_type(&esp6_type, AF_INET6);
950 static void __exit esp6_fini(void)
952 if (xfrm6_protocol_deregister(&esp6_protocol, IPPROTO_ESP) < 0)
953 pr_info("%s: can't remove protocol\n", __func__);
954 if (xfrm_unregister_type(&esp6_type, AF_INET6) < 0)
955 pr_info("%s: can't remove xfrm type\n", __func__);
958 module_init(esp6_init);
959 module_exit(esp6_fini);
961 MODULE_LICENSE("GPL");
962 MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_ESP);