stackleak: Mark stackleak_track_stack() as notrace
[linux-2.6-block.git] / crypto / crc32c_generic.c
CommitLineData
db83aabf 1/*
1da177e4
LT
2 * Cryptographic API.
3 *
4 * CRC32C chksum
5 *
69c35efc
HX
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.
1da177e4 20 *
69c35efc
HX
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.
5773a3e6
HX
29 * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
30 *
1da177e4
LT
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
db83aabf 33 * Software Foundation; either version 2 of the License, or (at your option)
1da177e4
LT
34 * any later version.
35 *
36 */
5773a3e6 37
7bcfb136 38#include <asm/unaligned.h>
5773a3e6 39#include <crypto/internal/hash.h>
1da177e4
LT
40#include <linux/init.h>
41#include <linux/module.h>
42#include <linux/string.h>
25cdbcd9 43#include <linux/kernel.h>
6a0962b2 44#include <linux/crc32.h>
1da177e4 45
5773a3e6 46#define CHKSUM_BLOCK_SIZE 1
1da177e4
LT
47#define CHKSUM_DIGEST_SIZE 4
48
49struct chksum_ctx {
25cdbcd9 50 u32 key;
1da177e4
LT
51};
52
faccc4bb
HX
53struct chksum_desc_ctx {
54 u32 crc;
55};
56
1da177e4 57/*
db83aabf 58 * Steps through buffer one byte at at time, calculates reflected
1da177e4
LT
59 * crc using table.
60 */
61
faccc4bb 62static int chksum_init(struct shash_desc *desc)
1da177e4 63{
faccc4bb
HX
64 struct chksum_ctx *mctx = crypto_shash_ctx(desc->tfm);
65 struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
66
67 ctx->crc = mctx->key;
1da177e4 68
faccc4bb 69 return 0;
1da177e4
LT
70}
71
72/*
73 * Setting the seed allows arbitrary accumulators and flexible XOR policy
74 * If your algorithm starts with ~0, then XOR with ~0 before you set
75 * the seed.
76 */
faccc4bb 77static int chksum_setkey(struct crypto_shash *tfm, const u8 *key,
560c06ae 78 unsigned int keylen)
1da177e4 79{
faccc4bb 80 struct chksum_ctx *mctx = crypto_shash_ctx(tfm);
1da177e4 81
faccc4bb
HX
82 if (keylen != sizeof(mctx->key)) {
83 crypto_shash_set_flags(tfm, CRYPTO_TFM_RES_BAD_KEY_LEN);
1da177e4
LT
84 return -EINVAL;
85 }
7bcfb136 86 mctx->key = get_unaligned_le32(key);
1da177e4
LT
87 return 0;
88}
89
faccc4bb
HX
90static int chksum_update(struct shash_desc *desc, const u8 *data,
91 unsigned int length)
1da177e4 92{
faccc4bb 93 struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
1da177e4 94
6a0962b2 95 ctx->crc = __crc32c_le(ctx->crc, data, length);
25cdbcd9 96 return 0;
1da177e4
LT
97}
98
faccc4bb 99static int chksum_final(struct shash_desc *desc, u8 *out)
5773a3e6 100{
faccc4bb 101 struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
5773a3e6 102
7bcfb136 103 put_unaligned_le32(~ctx->crc, out);
5773a3e6
HX
104 return 0;
105}
106
faccc4bb 107static int __chksum_finup(u32 *crcp, const u8 *data, unsigned int len, u8 *out)
5773a3e6 108{
7bcfb136 109 put_unaligned_le32(~__crc32c_le(*crcp, data, len), out);
5773a3e6
HX
110 return 0;
111}
112
faccc4bb
HX
113static int chksum_finup(struct shash_desc *desc, const u8 *data,
114 unsigned int len, u8 *out)
5773a3e6 115{
faccc4bb 116 struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
5773a3e6 117
faccc4bb 118 return __chksum_finup(&ctx->crc, data, len, out);
5773a3e6
HX
119}
120
faccc4bb
HX
121static int chksum_digest(struct shash_desc *desc, const u8 *data,
122 unsigned int length, u8 *out)
5773a3e6 123{
faccc4bb 124 struct chksum_ctx *mctx = crypto_shash_ctx(desc->tfm);
5773a3e6 125
faccc4bb 126 return __chksum_finup(&mctx->key, data, length, out);
5773a3e6
HX
127}
128
129static int crc32c_cra_init(struct crypto_tfm *tfm)
130{
faccc4bb 131 struct chksum_ctx *mctx = crypto_tfm_ctx(tfm);
5773a3e6 132
faccc4bb 133 mctx->key = ~0;
5773a3e6
HX
134 return 0;
135}
136
faccc4bb
HX
137static struct shash_alg alg = {
138 .digestsize = CHKSUM_DIGEST_SIZE,
139 .setkey = chksum_setkey,
fae36640
MV
140 .init = chksum_init,
141 .update = chksum_update,
142 .final = chksum_final,
143 .finup = chksum_finup,
144 .digest = chksum_digest,
faccc4bb
HX
145 .descsize = sizeof(struct chksum_desc_ctx),
146 .base = {
147 .cra_name = "crc32c",
148 .cra_driver_name = "crc32c-generic",
149 .cra_priority = 100,
a208fa8f 150 .cra_flags = CRYPTO_ALG_OPTIONAL_KEY,
faccc4bb 151 .cra_blocksize = CHKSUM_BLOCK_SIZE,
faccc4bb
HX
152 .cra_ctxsize = sizeof(struct chksum_ctx),
153 .cra_module = THIS_MODULE,
154 .cra_init = crc32c_cra_init,
5773a3e6
HX
155 }
156};
157
3af5b90b 158static int __init crc32c_mod_init(void)
1da177e4 159{
faccc4bb 160 return crypto_register_shash(&alg);
1da177e4
LT
161}
162
3af5b90b 163static void __exit crc32c_mod_fini(void)
1da177e4 164{
faccc4bb 165 crypto_unregister_shash(&alg);
1da177e4
LT
166}
167
3af5b90b
KB
168module_init(crc32c_mod_init);
169module_exit(crc32c_mod_fini);
1da177e4
LT
170
171MODULE_AUTHOR("Clay Haapala <chaapala@cisco.com>");
172MODULE_DESCRIPTION("CRC32c (Castagnoli) calculations wrapper for lib/crc32c");
173MODULE_LICENSE("GPL");
5d26a105 174MODULE_ALIAS_CRYPTO("crc32c");
3e14dcf7 175MODULE_ALIAS_CRYPTO("crc32c-generic");