4 * T10 Data Integrity Field CRC16 Crypto Transform
6 * Copyright (c) 2007 Oracle Corporation. All rights reserved.
8 * Copyright (C) 2013 Intel Corporation
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
13 * Software Foundation; either version 2 of the License, or (at your option)
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 #include <linux/module.h>
28 #include <linux/crc-t10dif.h>
29 #include <crypto/internal/hash.h>
30 #include <linux/init.h>
31 #include <linux/kernel.h>
33 struct chksum_desc_ctx {
38 * Steps through buffer one byte at a time, calculates reflected
42 static int chksum_init(struct shash_desc *desc)
44 struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
51 static int chksum_update(struct shash_desc *desc, const u8 *data,
54 struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
56 ctx->crc = crc_t10dif_generic(ctx->crc, data, length);
60 static int chksum_update_arch(struct shash_desc *desc, const u8 *data,
63 struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
65 ctx->crc = crc_t10dif_update(ctx->crc, data, length);
69 static int chksum_final(struct shash_desc *desc, u8 *out)
71 struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
73 *(__u16 *)out = ctx->crc;
77 static int __chksum_finup(__u16 crc, const u8 *data, unsigned int len, u8 *out)
79 *(__u16 *)out = crc_t10dif_generic(crc, data, len);
83 static int __chksum_finup_arch(__u16 crc, const u8 *data, unsigned int len,
86 *(__u16 *)out = crc_t10dif_update(crc, data, len);
90 static int chksum_finup(struct shash_desc *desc, const u8 *data,
91 unsigned int len, u8 *out)
93 struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
95 return __chksum_finup(ctx->crc, data, len, out);
98 static int chksum_finup_arch(struct shash_desc *desc, const u8 *data,
99 unsigned int len, u8 *out)
101 struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
103 return __chksum_finup_arch(ctx->crc, data, len, out);
106 static int chksum_digest(struct shash_desc *desc, const u8 *data,
107 unsigned int length, u8 *out)
109 return __chksum_finup(0, data, length, out);
112 static int chksum_digest_arch(struct shash_desc *desc, const u8 *data,
113 unsigned int length, u8 *out)
115 return __chksum_finup_arch(0, data, length, out);
118 static struct shash_alg algs[] = {{
119 .digestsize = CRC_T10DIF_DIGEST_SIZE,
121 .update = chksum_update,
122 .final = chksum_final,
123 .finup = chksum_finup,
124 .digest = chksum_digest,
125 .descsize = sizeof(struct chksum_desc_ctx),
126 .base.cra_name = "crct10dif",
127 .base.cra_driver_name = "crct10dif-generic",
128 .base.cra_priority = 100,
129 .base.cra_blocksize = CRC_T10DIF_BLOCK_SIZE,
130 .base.cra_module = THIS_MODULE,
132 .digestsize = CRC_T10DIF_DIGEST_SIZE,
134 .update = chksum_update_arch,
135 .final = chksum_final,
136 .finup = chksum_finup_arch,
137 .digest = chksum_digest_arch,
138 .descsize = sizeof(struct chksum_desc_ctx),
139 .base.cra_name = "crct10dif",
140 .base.cra_driver_name = "crct10dif-" __stringify(ARCH),
141 .base.cra_priority = 150,
142 .base.cra_blocksize = CRC_T10DIF_BLOCK_SIZE,
143 .base.cra_module = THIS_MODULE,
148 static int __init crct10dif_mod_init(void)
150 /* register the arch flavor only if it differs from the generic one */
151 num_algs = 1 + crc_t10dif_is_optimized();
153 return crypto_register_shashes(algs, num_algs);
156 static void __exit crct10dif_mod_fini(void)
158 crypto_unregister_shashes(algs, num_algs);
161 subsys_initcall(crct10dif_mod_init);
162 module_exit(crct10dif_mod_fini);
165 MODULE_DESCRIPTION("T10 DIF CRC calculation.");
166 MODULE_LICENSE("GPL");
167 MODULE_ALIAS_CRYPTO("crct10dif");
168 MODULE_ALIAS_CRYPTO("crct10dif-generic");