2 * xfrm algorithm interface
4 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/pfkeyv2.h>
15 #include <linux/crypto.h>
16 #include <linux/scatterlist.h>
18 #if defined(CONFIG_INET_ESP) || defined(CONFIG_INET_ESP_MODULE) || defined(CONFIG_INET6_ESP) || defined(CONFIG_INET6_ESP_MODULE)
23 * Algorithms supported by IPsec. These entries contain properties which
24 * are used in key negotiation and xfrm processing, and are used to verify
25 * that instantiated crypto transforms have correct parameters for IPsec
28 static struct xfrm_algo_desc aead_list[] = {
30 .name = "rfc4106(gcm(aes))",
41 .sadb_alg_id = SADB_X_EALG_AES_GCM_ICV8,
43 .sadb_alg_minbits = 128,
44 .sadb_alg_maxbits = 256
48 .name = "rfc4106(gcm(aes))",
59 .sadb_alg_id = SADB_X_EALG_AES_GCM_ICV12,
61 .sadb_alg_minbits = 128,
62 .sadb_alg_maxbits = 256
66 .name = "rfc4106(gcm(aes))",
77 .sadb_alg_id = SADB_X_EALG_AES_GCM_ICV16,
79 .sadb_alg_minbits = 128,
80 .sadb_alg_maxbits = 256
84 .name = "rfc4309(ccm(aes))",
95 .sadb_alg_id = SADB_X_EALG_AES_CCM_ICV8,
97 .sadb_alg_minbits = 128,
98 .sadb_alg_maxbits = 256
102 .name = "rfc4309(ccm(aes))",
110 .pfkey_supported = 1,
113 .sadb_alg_id = SADB_X_EALG_AES_CCM_ICV12,
115 .sadb_alg_minbits = 128,
116 .sadb_alg_maxbits = 256
120 .name = "rfc4309(ccm(aes))",
124 .icv_truncbits = 128,
128 .pfkey_supported = 1,
131 .sadb_alg_id = SADB_X_EALG_AES_CCM_ICV16,
133 .sadb_alg_minbits = 128,
134 .sadb_alg_maxbits = 256
138 .name = "rfc4543(gcm(aes))",
142 .icv_truncbits = 128,
146 .pfkey_supported = 1,
149 .sadb_alg_id = SADB_X_EALG_NULL_AES_GMAC,
151 .sadb_alg_minbits = 128,
152 .sadb_alg_maxbits = 256
157 static struct xfrm_algo_desc aalg_list[] = {
159 .name = "digest_null",
168 .pfkey_supported = 1,
171 .sadb_alg_id = SADB_X_AALG_NULL,
173 .sadb_alg_minbits = 0,
174 .sadb_alg_maxbits = 0
188 .pfkey_supported = 1,
191 .sadb_alg_id = SADB_AALG_MD5HMAC,
193 .sadb_alg_minbits = 128,
194 .sadb_alg_maxbits = 128
198 .name = "hmac(sha1)",
208 .pfkey_supported = 1,
211 .sadb_alg_id = SADB_AALG_SHA1HMAC,
213 .sadb_alg_minbits = 160,
214 .sadb_alg_maxbits = 160
218 .name = "hmac(sha256)",
228 .pfkey_supported = 1,
231 .sadb_alg_id = SADB_X_AALG_SHA2_256HMAC,
233 .sadb_alg_minbits = 256,
234 .sadb_alg_maxbits = 256
238 .name = "hmac(sha384)",
242 .icv_truncbits = 192,
247 .pfkey_supported = 1,
250 .sadb_alg_id = SADB_X_AALG_SHA2_384HMAC,
252 .sadb_alg_minbits = 384,
253 .sadb_alg_maxbits = 384
257 .name = "hmac(sha512)",
261 .icv_truncbits = 256,
266 .pfkey_supported = 1,
269 .sadb_alg_id = SADB_X_AALG_SHA2_512HMAC,
271 .sadb_alg_minbits = 512,
272 .sadb_alg_maxbits = 512
276 .name = "hmac(rmd160)",
286 .pfkey_supported = 1,
289 .sadb_alg_id = SADB_X_AALG_RIPEMD160HMAC,
291 .sadb_alg_minbits = 160,
292 .sadb_alg_maxbits = 160
305 .pfkey_supported = 1,
308 .sadb_alg_id = SADB_X_AALG_AES_XCBC_MAC,
310 .sadb_alg_minbits = 128,
311 .sadb_alg_maxbits = 128
316 static struct xfrm_algo_desc ealg_list[] = {
318 .name = "ecb(cipher_null)",
319 .compat = "cipher_null",
328 .pfkey_supported = 1,
331 .sadb_alg_id = SADB_EALG_NULL,
333 .sadb_alg_minbits = 0,
334 .sadb_alg_maxbits = 0
348 .pfkey_supported = 1,
351 .sadb_alg_id = SADB_EALG_DESCBC,
353 .sadb_alg_minbits = 64,
354 .sadb_alg_maxbits = 64
358 .name = "cbc(des3_ede)",
359 .compat = "des3_ede",
368 .pfkey_supported = 1,
371 .sadb_alg_id = SADB_EALG_3DESCBC,
373 .sadb_alg_minbits = 192,
374 .sadb_alg_maxbits = 192
378 .name = "cbc(cast5)",
388 .pfkey_supported = 1,
391 .sadb_alg_id = SADB_X_EALG_CASTCBC,
393 .sadb_alg_minbits = 40,
394 .sadb_alg_maxbits = 128
398 .name = "cbc(blowfish)",
399 .compat = "blowfish",
408 .pfkey_supported = 1,
411 .sadb_alg_id = SADB_X_EALG_BLOWFISHCBC,
413 .sadb_alg_minbits = 40,
414 .sadb_alg_maxbits = 448
428 .pfkey_supported = 1,
431 .sadb_alg_id = SADB_X_EALG_AESCBC,
433 .sadb_alg_minbits = 128,
434 .sadb_alg_maxbits = 256
438 .name = "cbc(serpent)",
448 .pfkey_supported = 1,
451 .sadb_alg_id = SADB_X_EALG_SERPENTCBC,
453 .sadb_alg_minbits = 128,
454 .sadb_alg_maxbits = 256,
458 .name = "cbc(camellia)",
459 .compat = "camellia",
468 .pfkey_supported = 1,
471 .sadb_alg_id = SADB_X_EALG_CAMELLIACBC,
473 .sadb_alg_minbits = 128,
474 .sadb_alg_maxbits = 256
478 .name = "cbc(twofish)",
488 .pfkey_supported = 1,
491 .sadb_alg_id = SADB_X_EALG_TWOFISHCBC,
493 .sadb_alg_minbits = 128,
494 .sadb_alg_maxbits = 256
498 .name = "rfc3686(ctr(aes))",
503 .defkeybits = 160, /* 128-bit key + 32-bit nonce */
507 .pfkey_supported = 1,
510 .sadb_alg_id = SADB_X_EALG_AESCTR,
512 .sadb_alg_minbits = 160,
513 .sadb_alg_maxbits = 288
518 static struct xfrm_algo_desc calg_list[] = {
526 .pfkey_supported = 1,
527 .desc = { .sadb_alg_id = SADB_X_CALG_DEFLATE }
536 .pfkey_supported = 1,
537 .desc = { .sadb_alg_id = SADB_X_CALG_LZS }
546 .pfkey_supported = 1,
547 .desc = { .sadb_alg_id = SADB_X_CALG_LZJH }
551 static inline int aead_entries(void)
553 return ARRAY_SIZE(aead_list);
556 static inline int aalg_entries(void)
558 return ARRAY_SIZE(aalg_list);
561 static inline int ealg_entries(void)
563 return ARRAY_SIZE(ealg_list);
566 static inline int calg_entries(void)
568 return ARRAY_SIZE(calg_list);
571 struct xfrm_algo_list {
572 struct xfrm_algo_desc *algs;
578 static const struct xfrm_algo_list xfrm_aead_list = {
580 .entries = ARRAY_SIZE(aead_list),
581 .type = CRYPTO_ALG_TYPE_AEAD,
582 .mask = CRYPTO_ALG_TYPE_MASK,
585 static const struct xfrm_algo_list xfrm_aalg_list = {
587 .entries = ARRAY_SIZE(aalg_list),
588 .type = CRYPTO_ALG_TYPE_HASH,
589 .mask = CRYPTO_ALG_TYPE_HASH_MASK,
592 static const struct xfrm_algo_list xfrm_ealg_list = {
594 .entries = ARRAY_SIZE(ealg_list),
595 .type = CRYPTO_ALG_TYPE_BLKCIPHER,
596 .mask = CRYPTO_ALG_TYPE_BLKCIPHER_MASK,
599 static const struct xfrm_algo_list xfrm_calg_list = {
601 .entries = ARRAY_SIZE(calg_list),
602 .type = CRYPTO_ALG_TYPE_COMPRESS,
603 .mask = CRYPTO_ALG_TYPE_MASK,
606 static struct xfrm_algo_desc *xfrm_find_algo(
607 const struct xfrm_algo_list *algo_list,
608 int match(const struct xfrm_algo_desc *entry, const void *data),
609 const void *data, int probe)
611 struct xfrm_algo_desc *list = algo_list->algs;
614 for (i = 0; i < algo_list->entries; i++) {
615 if (!match(list + i, data))
618 if (list[i].available)
624 status = crypto_has_alg(list[i].name, algo_list->type,
629 list[i].available = status;
635 static int xfrm_alg_id_match(const struct xfrm_algo_desc *entry,
638 return entry->desc.sadb_alg_id == (unsigned long)data;
641 struct xfrm_algo_desc *xfrm_aalg_get_byid(int alg_id)
643 return xfrm_find_algo(&xfrm_aalg_list, xfrm_alg_id_match,
644 (void *)(unsigned long)alg_id, 1);
646 EXPORT_SYMBOL_GPL(xfrm_aalg_get_byid);
648 struct xfrm_algo_desc *xfrm_ealg_get_byid(int alg_id)
650 return xfrm_find_algo(&xfrm_ealg_list, xfrm_alg_id_match,
651 (void *)(unsigned long)alg_id, 1);
653 EXPORT_SYMBOL_GPL(xfrm_ealg_get_byid);
655 struct xfrm_algo_desc *xfrm_calg_get_byid(int alg_id)
657 return xfrm_find_algo(&xfrm_calg_list, xfrm_alg_id_match,
658 (void *)(unsigned long)alg_id, 1);
660 EXPORT_SYMBOL_GPL(xfrm_calg_get_byid);
662 static int xfrm_alg_name_match(const struct xfrm_algo_desc *entry,
665 const char *name = data;
667 return name && (!strcmp(name, entry->name) ||
668 (entry->compat && !strcmp(name, entry->compat)));
671 struct xfrm_algo_desc *xfrm_aalg_get_byname(const char *name, int probe)
673 return xfrm_find_algo(&xfrm_aalg_list, xfrm_alg_name_match, name,
676 EXPORT_SYMBOL_GPL(xfrm_aalg_get_byname);
678 struct xfrm_algo_desc *xfrm_ealg_get_byname(const char *name, int probe)
680 return xfrm_find_algo(&xfrm_ealg_list, xfrm_alg_name_match, name,
683 EXPORT_SYMBOL_GPL(xfrm_ealg_get_byname);
685 struct xfrm_algo_desc *xfrm_calg_get_byname(const char *name, int probe)
687 return xfrm_find_algo(&xfrm_calg_list, xfrm_alg_name_match, name,
690 EXPORT_SYMBOL_GPL(xfrm_calg_get_byname);
692 struct xfrm_aead_name {
697 static int xfrm_aead_name_match(const struct xfrm_algo_desc *entry,
700 const struct xfrm_aead_name *aead = data;
701 const char *name = aead->name;
703 return aead->icvbits == entry->uinfo.aead.icv_truncbits && name &&
704 !strcmp(name, entry->name);
707 struct xfrm_algo_desc *xfrm_aead_get_byname(const char *name, int icv_len, int probe)
709 struct xfrm_aead_name data = {
714 return xfrm_find_algo(&xfrm_aead_list, xfrm_aead_name_match, &data,
717 EXPORT_SYMBOL_GPL(xfrm_aead_get_byname);
719 struct xfrm_algo_desc *xfrm_aalg_get_byidx(unsigned int idx)
721 if (idx >= aalg_entries())
724 return &aalg_list[idx];
726 EXPORT_SYMBOL_GPL(xfrm_aalg_get_byidx);
728 struct xfrm_algo_desc *xfrm_ealg_get_byidx(unsigned int idx)
730 if (idx >= ealg_entries())
733 return &ealg_list[idx];
735 EXPORT_SYMBOL_GPL(xfrm_ealg_get_byidx);
738 * Probe for the availability of crypto algorithms, and set the available
739 * flag for any algorithms found on the system. This is typically called by
740 * pfkey during userspace SA add, update or register.
742 void xfrm_probe_algs(void)
746 BUG_ON(in_softirq());
748 for (i = 0; i < aalg_entries(); i++) {
749 status = crypto_has_hash(aalg_list[i].name, 0,
751 if (aalg_list[i].available != status)
752 aalg_list[i].available = status;
755 for (i = 0; i < ealg_entries(); i++) {
756 status = crypto_has_ablkcipher(ealg_list[i].name, 0, 0);
757 if (ealg_list[i].available != status)
758 ealg_list[i].available = status;
761 for (i = 0; i < calg_entries(); i++) {
762 status = crypto_has_comp(calg_list[i].name, 0,
764 if (calg_list[i].available != status)
765 calg_list[i].available = status;
768 EXPORT_SYMBOL_GPL(xfrm_probe_algs);
770 int xfrm_count_pfkey_auth_supported(void)
774 for (i = 0, n = 0; i < aalg_entries(); i++)
775 if (aalg_list[i].available && aalg_list[i].pfkey_supported)
779 EXPORT_SYMBOL_GPL(xfrm_count_pfkey_auth_supported);
781 int xfrm_count_pfkey_enc_supported(void)
785 for (i = 0, n = 0; i < ealg_entries(); i++)
786 if (ealg_list[i].available && ealg_list[i].pfkey_supported)
790 EXPORT_SYMBOL_GPL(xfrm_count_pfkey_enc_supported);
792 #if defined(CONFIG_INET_ESP) || defined(CONFIG_INET_ESP_MODULE) || defined(CONFIG_INET6_ESP) || defined(CONFIG_INET6_ESP_MODULE)
794 void *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len)
797 skb->data_len += len;
800 return skb_put(tail, len);
802 EXPORT_SYMBOL_GPL(pskb_put);
805 MODULE_LICENSE("GPL");