]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - lib/crc-t10dif.c
UBUNTU: Ubuntu-4.10.0-37.41
[mirror_ubuntu-zesty-kernel.git] / lib / crc-t10dif.c
CommitLineData
f11f594e
MP
1/*
2 * T10 Data Integrity Field CRC16 calculation
3 *
4 * Copyright (c) 2007 Oracle Corporation. All rights reserved.
5 * Written by Martin K. Petersen <martin.petersen@oracle.com>
6 *
7 * This source code is licensed under the GNU General Public License,
8 * Version 2. See the file COPYING for more details.
9 */
10
11#include <linux/types.h>
12#include <linux/module.h>
13#include <linux/crc-t10dif.h>
68411521
HX
14#include <linux/err.h>
15#include <linux/init.h>
16#include <crypto/hash.h>
26052f9b 17#include <linux/static_key.h>
f11f594e 18
68411521 19static struct crypto_shash *crct10dif_tfm;
26052f9b 20static struct static_key crct10dif_fallback __read_mostly;
f11f594e 21
10081fb5 22__u16 crc_t10dif_update(__u16 crc, const unsigned char *buffer, size_t len)
f11f594e 23{
68411521
HX
24 struct {
25 struct shash_desc shash;
26 char ctx[2];
27 } desc;
28 int err;
29
26052f9b 30 if (static_key_false(&crct10dif_fallback))
10081fb5 31 return crc_t10dif_generic(crc, buffer, len);
26052f9b 32
68411521
HX
33 desc.shash.tfm = crct10dif_tfm;
34 desc.shash.flags = 0;
10081fb5 35 *(__u16 *)desc.ctx = crc;
f11f594e 36
68411521
HX
37 err = crypto_shash_update(&desc.shash, buffer, len);
38 BUG_ON(err);
f11f594e 39
68411521 40 return *(__u16 *)desc.ctx;
f11f594e 41}
10081fb5
AM
42EXPORT_SYMBOL(crc_t10dif_update);
43
44__u16 crc_t10dif(const unsigned char *buffer, size_t len)
45{
46 return crc_t10dif_update(0, buffer, len);
47}
f11f594e
MP
48EXPORT_SYMBOL(crc_t10dif);
49
68411521
HX
50static int __init crc_t10dif_mod_init(void)
51{
52 crct10dif_tfm = crypto_alloc_shash("crct10dif", 0, 0);
26052f9b
HX
53 if (IS_ERR(crct10dif_tfm)) {
54 static_key_slow_inc(&crct10dif_fallback);
55 crct10dif_tfm = NULL;
56 }
57 return 0;
68411521
HX
58}
59
60static void __exit crc_t10dif_mod_fini(void)
61{
62 crypto_free_shash(crct10dif_tfm);
63}
64
65module_init(crc_t10dif_mod_init);
66module_exit(crc_t10dif_mod_fini);
67
f11f594e
MP
68MODULE_DESCRIPTION("T10 DIF CRC calculation");
69MODULE_LICENSE("GPL");
68411521 70MODULE_SOFTDEP("pre: crct10dif");