2 * T10 Data Integrity Field CRC16 calculation
4 * Copyright (c) 2007 Oracle Corporation. All rights reserved.
5 * Written by Martin K. Petersen <martin.petersen@oracle.com>
7 * This source code is licensed under the GNU General Public License,
8 * Version 2. See the file COPYING for more details.
11 #include <linux/types.h>
12 #include <linux/module.h>
13 #include <linux/crc-t10dif.h>
14 #include <linux/err.h>
15 #include <linux/init.h>
16 #include <crypto/hash.h>
17 #include <linux/static_key.h>
19 static struct crypto_shash
*crct10dif_tfm
;
20 static struct static_key crct10dif_fallback __read_mostly
;
22 __u16
crc_t10dif_update(__u16 crc
, const unsigned char *buffer
, size_t len
)
25 struct shash_desc shash
;
30 if (static_key_false(&crct10dif_fallback
))
31 return crc_t10dif_generic(crc
, buffer
, len
);
33 desc
.shash
.tfm
= crct10dif_tfm
;
35 *(__u16
*)desc
.ctx
= crc
;
37 err
= crypto_shash_update(&desc
.shash
, buffer
, len
);
40 return *(__u16
*)desc
.ctx
;
42 EXPORT_SYMBOL(crc_t10dif_update
);
44 __u16
crc_t10dif(const unsigned char *buffer
, size_t len
)
46 return crc_t10dif_update(0, buffer
, len
);
48 EXPORT_SYMBOL(crc_t10dif
);
50 static int __init
crc_t10dif_mod_init(void)
52 crct10dif_tfm
= crypto_alloc_shash("crct10dif", 0, 0);
53 if (IS_ERR(crct10dif_tfm
)) {
54 static_key_slow_inc(&crct10dif_fallback
);
60 static void __exit
crc_t10dif_mod_fini(void)
62 crypto_free_shash(crct10dif_tfm
);
65 module_init(crc_t10dif_mod_init
);
66 module_exit(crc_t10dif_mod_fini
);
68 MODULE_DESCRIPTION("T10 DIF CRC calculation");
69 MODULE_LICENSE("GPL");
70 MODULE_SOFTDEP("pre: crct10dif");