crc32c_generic.c 4.4 KB
Newer Older
1
/*
L
Linus Torvalds 已提交
2 3 4 5
 * Cryptographic API.
 *
 * CRC32C chksum
 *
6 7 8 9 10 11 12 13 14 15 16 17 18 19
 *@Article{castagnoli-crc,
 * author =       { Guy Castagnoli and Stefan Braeuer and Martin Herrman},
 * title =        {{Optimization of Cyclic Redundancy-Check Codes with 24
 *                 and 32 Parity Bits}},
 * journal =      IEEE Transactions on Communication,
 * year =         {1993},
 * volume =       {41},
 * number =       {6},
 * pages =        {},
 * month =        {June},
 *}
 * Used by the iSCSI driver, possibly others, and derived from the
 * the iscsi-crc.c module of the linux-iscsi driver at
 * http://linux-iscsi.sourceforge.net.
L
Linus Torvalds 已提交
20
 *
21 22 23 24 25 26 27 28
 * Following the example of lib/crc32, this function is intended to be
 * flexible and useful for all users.  Modules that currently have their
 * own crc32c, but hopefully may be able to use this one are:
 *  net/sctp (please add all your doco to here if you change to
 *            use this one!)
 *  <endoflist>
 *
 * Copyright (c) 2004 Cisco Systems, Inc.
29 30
 * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
 *
L
Linus Torvalds 已提交
31 32
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the Free
33
 * Software Foundation; either version 2 of the License, or (at your option)
L
Linus Torvalds 已提交
34 35 36
 * any later version.
 *
 */
37

38
#include <asm/unaligned.h>
39
#include <crypto/internal/hash.h>
L
Linus Torvalds 已提交
40 41 42
#include <linux/init.h>
#include <linux/module.h>
#include <linux/string.h>
43
#include <linux/kernel.h>
44
#include <linux/crc32.h>
L
Linus Torvalds 已提交
45

46
#define CHKSUM_BLOCK_SIZE	1
L
Linus Torvalds 已提交
47 48 49
#define CHKSUM_DIGEST_SIZE	4

struct chksum_ctx {
50
	u32 key;
L
Linus Torvalds 已提交
51 52
};

H
Herbert Xu 已提交
53 54 55 56
struct chksum_desc_ctx {
	u32 crc;
};

L
Linus Torvalds 已提交
57
/*
58
 * Steps through buffer one byte at at time, calculates reflected
L
Linus Torvalds 已提交
59 60 61
 * crc using table.
 */

H
Herbert Xu 已提交
62
static int chksum_init(struct shash_desc *desc)
L
Linus Torvalds 已提交
63
{
H
Herbert Xu 已提交
64 65 66 67
	struct chksum_ctx *mctx = crypto_shash_ctx(desc->tfm);
	struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);

	ctx->crc = mctx->key;
L
Linus Torvalds 已提交
68

H
Herbert Xu 已提交
69
	return 0;
L
Linus Torvalds 已提交
70 71 72 73 74 75 76
}

/*
 * Setting the seed allows arbitrary accumulators and flexible XOR policy
 * If your algorithm starts with ~0, then XOR with ~0 before you set
 * the seed.
 */
H
Herbert Xu 已提交
77
static int chksum_setkey(struct crypto_shash *tfm, const u8 *key,
78
			 unsigned int keylen)
L
Linus Torvalds 已提交
79
{
H
Herbert Xu 已提交
80
	struct chksum_ctx *mctx = crypto_shash_ctx(tfm);
L
Linus Torvalds 已提交
81

H
Herbert Xu 已提交
82 83
	if (keylen != sizeof(mctx->key)) {
		crypto_shash_set_flags(tfm, CRYPTO_TFM_RES_BAD_KEY_LEN);
L
Linus Torvalds 已提交
84 85
		return -EINVAL;
	}
86
	mctx->key = get_unaligned_le32(key);
L
Linus Torvalds 已提交
87 88 89
	return 0;
}

H
Herbert Xu 已提交
90 91
static int chksum_update(struct shash_desc *desc, const u8 *data,
			 unsigned int length)
L
Linus Torvalds 已提交
92
{
H
Herbert Xu 已提交
93
	struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
L
Linus Torvalds 已提交
94

95
	ctx->crc = __crc32c_le(ctx->crc, data, length);
96
	return 0;
L
Linus Torvalds 已提交
97 98
}

H
Herbert Xu 已提交
99
static int chksum_final(struct shash_desc *desc, u8 *out)
100
{
H
Herbert Xu 已提交
101
	struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
102

103
	put_unaligned_le32(~ctx->crc, out);
104 105 106
	return 0;
}

H
Herbert Xu 已提交
107
static int __chksum_finup(u32 *crcp, const u8 *data, unsigned int len, u8 *out)
108
{
109
	put_unaligned_le32(~__crc32c_le(*crcp, data, len), out);
110 111 112
	return 0;
}

H
Herbert Xu 已提交
113 114
static int chksum_finup(struct shash_desc *desc, const u8 *data,
			unsigned int len, u8 *out)
115
{
H
Herbert Xu 已提交
116
	struct chksum_desc_ctx *ctx = shash_desc_ctx(desc);
117

H
Herbert Xu 已提交
118
	return __chksum_finup(&ctx->crc, data, len, out);
119 120
}

H
Herbert Xu 已提交
121 122
static int chksum_digest(struct shash_desc *desc, const u8 *data,
			 unsigned int length, u8 *out)
123
{
H
Herbert Xu 已提交
124
	struct chksum_ctx *mctx = crypto_shash_ctx(desc->tfm);
125

H
Herbert Xu 已提交
126
	return __chksum_finup(&mctx->key, data, length, out);
127 128 129 130
}

static int crc32c_cra_init(struct crypto_tfm *tfm)
{
H
Herbert Xu 已提交
131
	struct chksum_ctx *mctx = crypto_tfm_ctx(tfm);
132

H
Herbert Xu 已提交
133
	mctx->key = ~0;
134 135 136
	return 0;
}

H
Herbert Xu 已提交
137 138 139
static struct shash_alg alg = {
	.digestsize		=	CHKSUM_DIGEST_SIZE,
	.setkey			=	chksum_setkey,
140 141 142 143 144
	.init		=	chksum_init,
	.update		=	chksum_update,
	.final		=	chksum_final,
	.finup		=	chksum_finup,
	.digest		=	chksum_digest,
H
Herbert Xu 已提交
145 146 147 148 149
	.descsize		=	sizeof(struct chksum_desc_ctx),
	.base			=	{
		.cra_name		=	"crc32c",
		.cra_driver_name	=	"crc32c-generic",
		.cra_priority		=	100,
150
		.cra_flags		=	CRYPTO_ALG_OPTIONAL_KEY,
H
Herbert Xu 已提交
151 152 153 154
		.cra_blocksize		=	CHKSUM_BLOCK_SIZE,
		.cra_ctxsize		=	sizeof(struct chksum_ctx),
		.cra_module		=	THIS_MODULE,
		.cra_init		=	crc32c_cra_init,
155 156 157
	}
};

158
static int __init crc32c_mod_init(void)
L
Linus Torvalds 已提交
159
{
H
Herbert Xu 已提交
160
	return crypto_register_shash(&alg);
L
Linus Torvalds 已提交
161 162
}

163
static void __exit crc32c_mod_fini(void)
L
Linus Torvalds 已提交
164
{
H
Herbert Xu 已提交
165
	crypto_unregister_shash(&alg);
L
Linus Torvalds 已提交
166 167
}

168 169
module_init(crc32c_mod_init);
module_exit(crc32c_mod_fini);
L
Linus Torvalds 已提交
170 171 172 173

MODULE_AUTHOR("Clay Haapala <chaapala@cisco.com>");
MODULE_DESCRIPTION("CRC32c (Castagnoli) calculations wrapper for lib/crc32c");
MODULE_LICENSE("GPL");
174
MODULE_ALIAS_CRYPTO("crc32c");
175
MODULE_ALIAS_CRYPTO("crc32c-generic");