blob: c9acf1c12cfcb464b32cb8d489d55f05c5d8477e [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * T10 Data Integrity Field CRC16 calculation
4 *
5 * Copyright (c) 2007 Oracle Corporation. All rights reserved.
6 * Written by Martin K. Petersen <martin.petersen@oracle.com>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00007 */
8
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>
David Brazdil0f672f62019-12-10 10:32:29 +000015#include <crypto/algapi.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000016#include <linux/static_key.h>
David Brazdil0f672f62019-12-10 10:32:29 +000017#include <linux/notifier.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000018
David Brazdil0f672f62019-12-10 10:32:29 +000019static struct crypto_shash __rcu *crct10dif_tfm;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000020static struct static_key crct10dif_fallback __read_mostly;
David Brazdil0f672f62019-12-10 10:32:29 +000021static DEFINE_MUTEX(crc_t10dif_mutex);
Olivier Deprez0e641232021-09-23 10:07:05 +020022static struct work_struct crct10dif_rehash_work;
David Brazdil0f672f62019-12-10 10:32:29 +000023
Olivier Deprez0e641232021-09-23 10:07:05 +020024static int crc_t10dif_notify(struct notifier_block *self, unsigned long val, void *data)
David Brazdil0f672f62019-12-10 10:32:29 +000025{
26 struct crypto_alg *alg = data;
David Brazdil0f672f62019-12-10 10:32:29 +000027
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)))
31 return 0;
32
Olivier Deprez0e641232021-09-23 10:07:05 +020033 schedule_work(&crct10dif_rehash_work);
34 return 0;
35}
36
37static void crc_t10dif_rehash(struct work_struct *work)
38{
39 struct crypto_shash *new, *old;
40
David Brazdil0f672f62019-12-10 10:32:29 +000041 mutex_lock(&crc_t10dif_mutex);
42 old = rcu_dereference_protected(crct10dif_tfm,
43 lockdep_is_held(&crc_t10dif_mutex));
44 if (!old) {
45 mutex_unlock(&crc_t10dif_mutex);
Olivier Deprez0e641232021-09-23 10:07:05 +020046 return;
David Brazdil0f672f62019-12-10 10:32:29 +000047 }
48 new = crypto_alloc_shash("crct10dif", 0, 0);
49 if (IS_ERR(new)) {
50 mutex_unlock(&crc_t10dif_mutex);
Olivier Deprez0e641232021-09-23 10:07:05 +020051 return;
David Brazdil0f672f62019-12-10 10:32:29 +000052 }
53 rcu_assign_pointer(crct10dif_tfm, new);
54 mutex_unlock(&crc_t10dif_mutex);
55
56 synchronize_rcu();
57 crypto_free_shash(old);
David Brazdil0f672f62019-12-10 10:32:29 +000058}
59
60static struct notifier_block crc_t10dif_nb = {
Olivier Deprez0e641232021-09-23 10:07:05 +020061 .notifier_call = crc_t10dif_notify,
David Brazdil0f672f62019-12-10 10:32:29 +000062};
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000063
64__u16 crc_t10dif_update(__u16 crc, const unsigned char *buffer, size_t len)
65{
66 struct {
67 struct shash_desc shash;
68 char ctx[2];
69 } desc;
70 int err;
71
72 if (static_key_false(&crct10dif_fallback))
73 return crc_t10dif_generic(crc, buffer, len);
74
David Brazdil0f672f62019-12-10 10:32:29 +000075 rcu_read_lock();
76 desc.shash.tfm = rcu_dereference(crct10dif_tfm);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000077 *(__u16 *)desc.ctx = crc;
78
79 err = crypto_shash_update(&desc.shash, buffer, len);
David Brazdil0f672f62019-12-10 10:32:29 +000080 rcu_read_unlock();
81
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000082 BUG_ON(err);
83
84 return *(__u16 *)desc.ctx;
85}
86EXPORT_SYMBOL(crc_t10dif_update);
87
88__u16 crc_t10dif(const unsigned char *buffer, size_t len)
89{
90 return crc_t10dif_update(0, buffer, len);
91}
92EXPORT_SYMBOL(crc_t10dif);
93
94static int __init crc_t10dif_mod_init(void)
95{
Olivier Deprez0e641232021-09-23 10:07:05 +020096 struct crypto_shash *tfm;
97
98 INIT_WORK(&crct10dif_rehash_work, crc_t10dif_rehash);
David Brazdil0f672f62019-12-10 10:32:29 +000099 crypto_register_notifier(&crc_t10dif_nb);
Olivier Deprez0e641232021-09-23 10:07:05 +0200100 mutex_lock(&crc_t10dif_mutex);
101 tfm = crypto_alloc_shash("crct10dif", 0, 0);
102 if (IS_ERR(tfm)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000103 static_key_slow_inc(&crct10dif_fallback);
Olivier Deprez0e641232021-09-23 10:07:05 +0200104 tfm = NULL;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000105 }
Olivier Deprez0e641232021-09-23 10:07:05 +0200106 RCU_INIT_POINTER(crct10dif_tfm, tfm);
107 mutex_unlock(&crc_t10dif_mutex);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000108 return 0;
109}
110
111static void __exit crc_t10dif_mod_fini(void)
112{
David Brazdil0f672f62019-12-10 10:32:29 +0000113 crypto_unregister_notifier(&crc_t10dif_nb);
Olivier Deprez0e641232021-09-23 10:07:05 +0200114 cancel_work_sync(&crct10dif_rehash_work);
115 crypto_free_shash(rcu_dereference_protected(crct10dif_tfm, 1));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000116}
117
118module_init(crc_t10dif_mod_init);
119module_exit(crc_t10dif_mod_fini);
120
David Brazdil0f672f62019-12-10 10:32:29 +0000121static int crc_t10dif_transform_show(char *buffer, const struct kernel_param *kp)
122{
Olivier Deprez0e641232021-09-23 10:07:05 +0200123 struct crypto_shash *tfm;
124 const char *name;
125 int len;
126
David Brazdil0f672f62019-12-10 10:32:29 +0000127 if (static_key_false(&crct10dif_fallback))
128 return sprintf(buffer, "fallback\n");
129
Olivier Deprez0e641232021-09-23 10:07:05 +0200130 rcu_read_lock();
131 tfm = rcu_dereference(crct10dif_tfm);
132 if (!tfm) {
133 len = sprintf(buffer, "init\n");
134 goto unlock;
135 }
136
137 name = crypto_tfm_alg_driver_name(crypto_shash_tfm(tfm));
138 len = sprintf(buffer, "%s\n", name);
139
140unlock:
141 rcu_read_unlock();
142
143 return len;
David Brazdil0f672f62019-12-10 10:32:29 +0000144}
145
146module_param_call(transform, NULL, crc_t10dif_transform_show, NULL, 0644);
147
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000148MODULE_DESCRIPTION("T10 DIF CRC calculation");
149MODULE_LICENSE("GPL");
150MODULE_SOFTDEP("pre: crct10dif");