1 // SPDX-License-Identifier: GPL-2.0-only
3 * T10 Data Integrity Field CRC16 calculation
5 * Copyright (c) 2007 Oracle Corporation. All rights reserved.
6 * Written by Martin K. Petersen <martin.petersen@oracle.com>
9 #include <linux/types.h>
10 #include <linux/module.h>
11 #include <linux/crc-t10dif.h>
12 #include <linux/err.h>
13 #include <linux/init.h>
14 #include <crypto/hash.h>
15 #include <crypto/algapi.h>
16 #include <linux/static_key.h>
17 #include <linux/notifier.h>
19 static struct crypto_shash __rcu *crct10dif_tfm;
20 static struct static_key crct10dif_fallback __read_mostly;
21 static DEFINE_MUTEX(crc_t10dif_mutex);
23 static int crc_t10dif_rehash(struct notifier_block *self, unsigned long val, void *data)
25 struct crypto_alg *alg = data;
26 struct crypto_shash *new, *old;
28 if (val != CRYPTO_MSG_ALG_LOADED ||
29 static_key_false(&crct10dif_fallback) ||
30 strncmp(alg->cra_name, CRC_T10DIF_STRING, strlen(CRC_T10DIF_STRING)))
33 mutex_lock(&crc_t10dif_mutex);
34 old = rcu_dereference_protected(crct10dif_tfm,
35 lockdep_is_held(&crc_t10dif_mutex));
37 mutex_unlock(&crc_t10dif_mutex);
40 new = crypto_alloc_shash("crct10dif", 0, 0);
42 mutex_unlock(&crc_t10dif_mutex);
45 rcu_assign_pointer(crct10dif_tfm, new);
46 mutex_unlock(&crc_t10dif_mutex);
49 crypto_free_shash(old);
53 static struct notifier_block crc_t10dif_nb = {
54 .notifier_call = crc_t10dif_rehash,
57 __u16 crc_t10dif_update(__u16 crc, const unsigned char *buffer, size_t len)
60 struct shash_desc shash;
65 if (static_key_false(&crct10dif_fallback))
66 return crc_t10dif_generic(crc, buffer, len);
69 desc.shash.tfm = rcu_dereference(crct10dif_tfm);
70 *(__u16 *)desc.ctx = crc;
72 err = crypto_shash_update(&desc.shash, buffer, len);
77 return *(__u16 *)desc.ctx;
79 EXPORT_SYMBOL(crc_t10dif_update);
81 __u16 crc_t10dif(const unsigned char *buffer, size_t len)
83 return crc_t10dif_update(0, buffer, len);
85 EXPORT_SYMBOL(crc_t10dif);
87 static int __init crc_t10dif_mod_init(void)
89 crypto_register_notifier(&crc_t10dif_nb);
90 crct10dif_tfm = crypto_alloc_shash("crct10dif", 0, 0);
91 if (IS_ERR(crct10dif_tfm)) {
92 static_key_slow_inc(&crct10dif_fallback);
98 static void __exit crc_t10dif_mod_fini(void)
100 crypto_unregister_notifier(&crc_t10dif_nb);
101 crypto_free_shash(crct10dif_tfm);
104 module_init(crc_t10dif_mod_init);
105 module_exit(crc_t10dif_mod_fini);
107 static int crc_t10dif_transform_show(char *buffer, const struct kernel_param *kp)
109 if (static_key_false(&crct10dif_fallback))
110 return sprintf(buffer, "fallback\n");
112 return sprintf(buffer, "%s\n",
113 crypto_tfm_alg_driver_name(crypto_shash_tfm(crct10dif_tfm)));
116 module_param_call(transform, NULL, crc_t10dif_transform_show, NULL, 0644);
118 MODULE_DESCRIPTION("T10 DIF CRC calculation");
119 MODULE_LICENSE("GPL");
120 MODULE_SOFTDEP("pre: crct10dif");