]>
Commit | Line | Data |
---|---|---|
40b0b3f8 | 1 | // SPDX-License-Identifier: GPL-2.0-only |
f11f594e MP |
2 | /* |
3 | * T10 Data Integrity Field CRC16 calculation | |
4 | * | |
5 | * Copyright (c) 2007 Oracle Corporation. All rights reserved. | |
6 | * Written by Martin K. Petersen <[email protected]> | |
f11f594e MP |
7 | */ |
8 | ||
9 | #include <linux/types.h> | |
10 | #include <linux/module.h> | |
11 | #include <linux/crc-t10dif.h> | |
68411521 HX |
12 | #include <linux/err.h> |
13 | #include <linux/init.h> | |
14 | #include <crypto/hash.h> | |
b7637754 | 15 | #include <crypto/algapi.h> |
26052f9b | 16 | #include <linux/static_key.h> |
b7637754 | 17 | #include <linux/notifier.h> |
f11f594e | 18 | |
b7637754 | 19 | static struct crypto_shash __rcu *crct10dif_tfm; |
be924e0a | 20 | static DEFINE_STATIC_KEY_TRUE(crct10dif_fallback); |
a7e7edfe | 21 | static DEFINE_MUTEX(crc_t10dif_mutex); |
3906f640 | 22 | static struct work_struct crct10dif_rehash_work; |
b7637754 | 23 | |
3906f640 | 24 | static int crc_t10dif_notify(struct notifier_block *self, unsigned long val, void *data) |
b7637754 MP |
25 | { |
26 | struct crypto_alg *alg = data; | |
b7637754 MP |
27 | |
28 | if (val != CRYPTO_MSG_ALG_LOADED || | |
29195232 EB |
29 | strcmp(alg->cra_name, CRC_T10DIF_STRING)) |
30 | return NOTIFY_DONE; | |
b7637754 | 31 | |
3906f640 | 32 | schedule_work(&crct10dif_rehash_work); |
29195232 | 33 | return NOTIFY_OK; |
3906f640 HX |
34 | } |
35 | ||
36 | static void crc_t10dif_rehash(struct work_struct *work) | |
37 | { | |
38 | struct crypto_shash *new, *old; | |
39 | ||
b7637754 MP |
40 | mutex_lock(&crc_t10dif_mutex); |
41 | old = rcu_dereference_protected(crct10dif_tfm, | |
42 | lockdep_is_held(&crc_t10dif_mutex)); | |
29195232 | 43 | new = crypto_alloc_shash(CRC_T10DIF_STRING, 0, 0); |
b7637754 MP |
44 | if (IS_ERR(new)) { |
45 | mutex_unlock(&crc_t10dif_mutex); | |
3906f640 | 46 | return; |
b7637754 MP |
47 | } |
48 | rcu_assign_pointer(crct10dif_tfm, new); | |
49 | mutex_unlock(&crc_t10dif_mutex); | |
50 | ||
be924e0a EB |
51 | if (old) { |
52 | synchronize_rcu(); | |
53 | crypto_free_shash(old); | |
54 | } else { | |
55 | static_branch_disable(&crct10dif_fallback); | |
56 | } | |
b7637754 MP |
57 | } |
58 | ||
59 | static struct notifier_block crc_t10dif_nb = { | |
3906f640 | 60 | .notifier_call = crc_t10dif_notify, |
b7637754 | 61 | }; |
f11f594e | 62 | |
10081fb5 | 63 | __u16 crc_t10dif_update(__u16 crc, const unsigned char *buffer, size_t len) |
f11f594e | 64 | { |
68411521 HX |
65 | struct { |
66 | struct shash_desc shash; | |
29195232 | 67 | __u16 crc; |
68411521 HX |
68 | } desc; |
69 | int err; | |
70 | ||
be924e0a | 71 | if (static_branch_unlikely(&crct10dif_fallback)) |
10081fb5 | 72 | return crc_t10dif_generic(crc, buffer, len); |
26052f9b | 73 | |
b7637754 MP |
74 | rcu_read_lock(); |
75 | desc.shash.tfm = rcu_dereference(crct10dif_tfm); | |
29195232 | 76 | desc.crc = crc; |
68411521 | 77 | err = crypto_shash_update(&desc.shash, buffer, len); |
b7637754 MP |
78 | rcu_read_unlock(); |
79 | ||
68411521 | 80 | BUG_ON(err); |
f11f594e | 81 | |
29195232 | 82 | return desc.crc; |
f11f594e | 83 | } |
10081fb5 AM |
84 | EXPORT_SYMBOL(crc_t10dif_update); |
85 | ||
86 | __u16 crc_t10dif(const unsigned char *buffer, size_t len) | |
87 | { | |
88 | return crc_t10dif_update(0, buffer, len); | |
89 | } | |
f11f594e MP |
90 | EXPORT_SYMBOL(crc_t10dif); |
91 | ||
68411521 HX |
92 | static int __init crc_t10dif_mod_init(void) |
93 | { | |
3906f640 | 94 | INIT_WORK(&crct10dif_rehash_work, crc_t10dif_rehash); |
b7637754 | 95 | crypto_register_notifier(&crc_t10dif_nb); |
be924e0a | 96 | crc_t10dif_rehash(&crct10dif_rehash_work); |
26052f9b | 97 | return 0; |
68411521 HX |
98 | } |
99 | ||
100 | static void __exit crc_t10dif_mod_fini(void) | |
101 | { | |
b7637754 | 102 | crypto_unregister_notifier(&crc_t10dif_nb); |
3906f640 HX |
103 | cancel_work_sync(&crct10dif_rehash_work); |
104 | crypto_free_shash(rcu_dereference_protected(crct10dif_tfm, 1)); | |
68411521 HX |
105 | } |
106 | ||
107 | module_init(crc_t10dif_mod_init); | |
108 | module_exit(crc_t10dif_mod_fini); | |
109 | ||
11dcb103 MP |
110 | static int crc_t10dif_transform_show(char *buffer, const struct kernel_param *kp) |
111 | { | |
3906f640 | 112 | struct crypto_shash *tfm; |
3906f640 HX |
113 | int len; |
114 | ||
be924e0a | 115 | if (static_branch_unlikely(&crct10dif_fallback)) |
11dcb103 MP |
116 | return sprintf(buffer, "fallback\n"); |
117 | ||
3906f640 HX |
118 | rcu_read_lock(); |
119 | tfm = rcu_dereference(crct10dif_tfm); | |
29195232 EB |
120 | len = snprintf(buffer, PAGE_SIZE, "%s\n", |
121 | crypto_shash_driver_name(tfm)); | |
3906f640 HX |
122 | rcu_read_unlock(); |
123 | ||
124 | return len; | |
11dcb103 MP |
125 | } |
126 | ||
29195232 | 127 | module_param_call(transform, NULL, crc_t10dif_transform_show, NULL, 0444); |
11dcb103 | 128 | |
29195232 | 129 | MODULE_DESCRIPTION("T10 DIF CRC calculation (library API)"); |
f11f594e | 130 | MODULE_LICENSE("GPL"); |
68411521 | 131 | MODULE_SOFTDEP("pre: crct10dif"); |