Richard Hartmann | db83aab | 2010-02-16 20:31:19 +0800 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Cryptographic API. |
| 3 | * |
| 4 | * CRC32C chksum |
| 5 | * |
Herbert Xu | 69c35ef | 2008-11-07 15:11:47 +0800 | [diff] [blame] | 6 | *@Article{castagnoli-crc, |
| 7 | * author = { Guy Castagnoli and Stefan Braeuer and Martin Herrman}, |
| 8 | * title = {{Optimization of Cyclic Redundancy-Check Codes with 24 |
| 9 | * and 32 Parity Bits}}, |
| 10 | * journal = IEEE Transactions on Communication, |
| 11 | * year = {1993}, |
| 12 | * volume = {41}, |
| 13 | * number = {6}, |
| 14 | * pages = {}, |
| 15 | * month = {June}, |
| 16 | *} |
| 17 | * Used by the iSCSI driver, possibly others, and derived from the |
| 18 | * the iscsi-crc.c module of the linux-iscsi driver at |
| 19 | * http://linux-iscsi.sourceforge.net. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | * |
Herbert Xu | 69c35ef | 2008-11-07 15:11:47 +0800 | [diff] [blame] | 21 | * Following the example of lib/crc32, this function is intended to be |
| 22 | * flexible and useful for all users. Modules that currently have their |
| 23 | * own crc32c, but hopefully may be able to use this one are: |
| 24 | * net/sctp (please add all your doco to here if you change to |
| 25 | * use this one!) |
| 26 | * <endoflist> |
| 27 | * |
| 28 | * Copyright (c) 2004 Cisco Systems, Inc. |
Herbert Xu | 5773a3e | 2008-07-08 20:54:28 +0800 | [diff] [blame] | 29 | * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au> |
| 30 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | * This program is free software; you can redistribute it and/or modify it |
| 32 | * under the terms of the GNU General Public License as published by the Free |
Richard Hartmann | db83aab | 2010-02-16 20:31:19 +0800 | [diff] [blame] | 33 | * Software Foundation; either version 2 of the License, or (at your option) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | * any later version. |
| 35 | * |
| 36 | */ |
Herbert Xu | 5773a3e | 2008-07-08 20:54:28 +0800 | [diff] [blame] | 37 | |
| 38 | #include <crypto/internal/hash.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <linux/init.h> |
| 40 | #include <linux/module.h> |
| 41 | #include <linux/string.h> |
Herbert Xu | 25cdbcd | 2006-08-06 23:03:08 +1000 | [diff] [blame] | 42 | #include <linux/kernel.h> |
Darrick J. Wong | 6a0962b | 2012-03-23 15:02:25 -0700 | [diff] [blame] | 43 | #include <linux/crc32.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Herbert Xu | 5773a3e | 2008-07-08 20:54:28 +0800 | [diff] [blame] | 45 | #define CHKSUM_BLOCK_SIZE 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #define CHKSUM_DIGEST_SIZE 4 |
| 47 | |
| 48 | struct chksum_ctx { |
Herbert Xu | 25cdbcd | 2006-08-06 23:03:08 +1000 | [diff] [blame] | 49 | u32 key; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | }; |
| 51 | |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 52 | struct chksum_desc_ctx { |
| 53 | u32 crc; |
| 54 | }; |
| 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | /* |
Richard Hartmann | db83aab | 2010-02-16 20:31:19 +0800 | [diff] [blame] | 57 | * Steps through buffer one byte at at time, calculates reflected |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | * crc using table. |
| 59 | */ |
| 60 | |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 61 | static int chksum_init(struct shash_desc *desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | { |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 63 | struct chksum_ctx *mctx = crypto_shash_ctx(desc->tfm); |
| 64 | struct chksum_desc_ctx *ctx = shash_desc_ctx(desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 66 | ctx->crc = mctx->key; |
| 67 | |
| 68 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | /* |
| 72 | * Setting the seed allows arbitrary accumulators and flexible XOR policy |
| 73 | * If your algorithm starts with ~0, then XOR with ~0 before you set |
| 74 | * the seed. |
| 75 | */ |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 76 | static int chksum_setkey(struct crypto_shash *tfm, const u8 *key, |
Herbert Xu | 560c06a | 2006-08-13 14:16:39 +1000 | [diff] [blame] | 77 | unsigned int keylen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | { |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 79 | struct chksum_ctx *mctx = crypto_shash_ctx(tfm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 81 | if (keylen != sizeof(mctx->key)) { |
| 82 | crypto_shash_set_flags(tfm, CRYPTO_TFM_RES_BAD_KEY_LEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | return -EINVAL; |
| 84 | } |
Herbert Xu | 25cdbcd | 2006-08-06 23:03:08 +1000 | [diff] [blame] | 85 | mctx->key = le32_to_cpu(*(__le32 *)key); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | return 0; |
| 87 | } |
| 88 | |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 89 | static int chksum_update(struct shash_desc *desc, const u8 *data, |
| 90 | unsigned int length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | { |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 92 | struct chksum_desc_ctx *ctx = shash_desc_ctx(desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
Darrick J. Wong | 6a0962b | 2012-03-23 15:02:25 -0700 | [diff] [blame] | 94 | ctx->crc = __crc32c_le(ctx->crc, data, length); |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 95 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | } |
| 97 | |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 98 | static int chksum_final(struct shash_desc *desc, u8 *out) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | { |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 100 | struct chksum_desc_ctx *ctx = shash_desc_ctx(desc); |
| 101 | |
| 102 | *(__le32 *)out = ~cpu_to_le32p(&ctx->crc); |
| 103 | return 0; |
Herbert Xu | 25cdbcd | 2006-08-06 23:03:08 +1000 | [diff] [blame] | 104 | } |
| 105 | |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 106 | static int __chksum_finup(u32 *crcp, const u8 *data, unsigned int len, u8 *out) |
| 107 | { |
Darrick J. Wong | 6a0962b | 2012-03-23 15:02:25 -0700 | [diff] [blame] | 108 | *(__le32 *)out = ~cpu_to_le32(__crc32c_le(*crcp, data, len)); |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 109 | return 0; |
| 110 | } |
| 111 | |
| 112 | static int chksum_finup(struct shash_desc *desc, const u8 *data, |
| 113 | unsigned int len, u8 *out) |
| 114 | { |
| 115 | struct chksum_desc_ctx *ctx = shash_desc_ctx(desc); |
| 116 | |
| 117 | return __chksum_finup(&ctx->crc, data, len, out); |
| 118 | } |
| 119 | |
| 120 | static int chksum_digest(struct shash_desc *desc, const u8 *data, |
| 121 | unsigned int length, u8 *out) |
| 122 | { |
| 123 | struct chksum_ctx *mctx = crypto_shash_ctx(desc->tfm); |
| 124 | |
| 125 | return __chksum_finup(&mctx->key, data, length, out); |
| 126 | } |
| 127 | |
| 128 | static int crc32c_cra_init(struct crypto_tfm *tfm) |
Herbert Xu | 25cdbcd | 2006-08-06 23:03:08 +1000 | [diff] [blame] | 129 | { |
| 130 | struct chksum_ctx *mctx = crypto_tfm_ctx(tfm); |
| 131 | |
| 132 | mctx->key = ~0; |
| 133 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | } |
| 135 | |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 136 | static struct shash_alg alg = { |
| 137 | .digestsize = CHKSUM_DIGEST_SIZE, |
| 138 | .setkey = chksum_setkey, |
Mati Vait | fae3664 | 2011-06-08 21:23:40 +0800 | [diff] [blame] | 139 | .init = chksum_init, |
| 140 | .update = chksum_update, |
| 141 | .final = chksum_final, |
| 142 | .finup = chksum_finup, |
| 143 | .digest = chksum_digest, |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 144 | .descsize = sizeof(struct chksum_desc_ctx), |
| 145 | .base = { |
| 146 | .cra_name = "crc32c", |
| 147 | .cra_driver_name = "crc32c-generic", |
| 148 | .cra_priority = 100, |
| 149 | .cra_blocksize = CHKSUM_BLOCK_SIZE, |
| 150 | .cra_alignmask = 3, |
| 151 | .cra_ctxsize = sizeof(struct chksum_ctx), |
| 152 | .cra_module = THIS_MODULE, |
| 153 | .cra_init = crc32c_cra_init, |
Herbert Xu | 5773a3e | 2008-07-08 20:54:28 +0800 | [diff] [blame] | 154 | } |
| 155 | }; |
| 156 | |
Kamalesh Babulal | 3af5b90 | 2008-04-05 21:00:57 +0800 | [diff] [blame] | 157 | static int __init crc32c_mod_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | { |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 159 | return crypto_register_shash(&alg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | } |
| 161 | |
Kamalesh Babulal | 3af5b90 | 2008-04-05 21:00:57 +0800 | [diff] [blame] | 162 | static void __exit crc32c_mod_fini(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | { |
Herbert Xu | faccc4b | 2008-09-09 17:23:07 +1000 | [diff] [blame] | 164 | crypto_unregister_shash(&alg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Kamalesh Babulal | 3af5b90 | 2008-04-05 21:00:57 +0800 | [diff] [blame] | 167 | module_init(crc32c_mod_init); |
| 168 | module_exit(crc32c_mod_fini); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
| 170 | MODULE_AUTHOR("Clay Haapala <chaapala@cisco.com>"); |
| 171 | MODULE_DESCRIPTION("CRC32c (Castagnoli) calculations wrapper for lib/crc32c"); |
| 172 | MODULE_LICENSE("GPL"); |
Kees Cook | 5d26a10 | 2014-11-20 17:05:53 -0800 | [diff] [blame] | 173 | MODULE_ALIAS_CRYPTO("crc32c"); |
Mathias Krause | 3e14dcf | 2015-01-11 18:17:42 +0100 | [diff] [blame] | 174 | MODULE_ALIAS_CRYPTO("crc32c-generic"); |
Tim Chen | 06e5a1f | 2014-01-23 03:25:47 -0800 | [diff] [blame] | 175 | MODULE_SOFTDEP("pre: crc32c"); |