| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Cryptographic API | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Michael MIC (IEEE 802.11i/TKIP) keyed digest | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-03-24 17:15:30 -07:00
										 |  |  |  * Copyright (c) 2004 Jouni Malinen <j@w1.fi> | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License version 2 as | 
					
						
							|  |  |  |  * published by the Free Software Foundation. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | #include <crypto/internal/hash.h>
 | 
					
						
							| 
									
										
										
										
											2005-10-30 21:25:15 +11:00
										 |  |  | #include <asm/byteorder.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/string.h>
 | 
					
						
							| 
									
										
										
										
											2005-10-30 21:25:15 +11:00
										 |  |  | #include <linux/types.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct michael_mic_ctx { | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | 	u32 l, r; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct michael_mic_desc_ctx { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	u8 pending[4]; | 
					
						
							|  |  |  | 	size_t pending_len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	u32 l, r; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline u32 xswap(u32 val) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return ((val & 0x00ff00ff) << 8) | ((val & 0xff00ff00) >> 8); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define michael_block(l, r)	\
 | 
					
						
							|  |  |  | do {				\ | 
					
						
							|  |  |  | 	r ^= rol32(l, 17);	\ | 
					
						
							|  |  |  | 	l += r;			\ | 
					
						
							|  |  |  | 	r ^= xswap(l);		\ | 
					
						
							|  |  |  | 	l += r;			\ | 
					
						
							|  |  |  | 	r ^= rol32(l, 3);	\ | 
					
						
							|  |  |  | 	l += r;			\ | 
					
						
							|  |  |  | 	r ^= ror32(l, 2);	\ | 
					
						
							|  |  |  | 	l += r;			\ | 
					
						
							|  |  |  | } while (0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | static int michael_init(struct shash_desc *desc) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | 	struct michael_mic_desc_ctx *mctx = shash_desc_ctx(desc); | 
					
						
							|  |  |  | 	struct michael_mic_ctx *ctx = crypto_shash_ctx(desc->tfm); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	mctx->pending_len = 0; | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | 	mctx->l = ctx->l; | 
					
						
							|  |  |  | 	mctx->r = ctx->r; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | static int michael_update(struct shash_desc *desc, const u8 *data, | 
					
						
							| 
									
										
										
										
											2006-05-16 22:09:29 +10:00
										 |  |  | 			   unsigned int len) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | 	struct michael_mic_desc_ctx *mctx = shash_desc_ctx(desc); | 
					
						
							| 
									
										
										
										
											2005-10-30 21:25:15 +11:00
										 |  |  | 	const __le32 *src; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (mctx->pending_len) { | 
					
						
							|  |  |  | 		int flen = 4 - mctx->pending_len; | 
					
						
							|  |  |  | 		if (flen > len) | 
					
						
							|  |  |  | 			flen = len; | 
					
						
							|  |  |  | 		memcpy(&mctx->pending[mctx->pending_len], data, flen); | 
					
						
							|  |  |  | 		mctx->pending_len += flen; | 
					
						
							|  |  |  | 		data += flen; | 
					
						
							|  |  |  | 		len -= flen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (mctx->pending_len < 4) | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | 			return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 21:25:15 +11:00
										 |  |  | 		src = (const __le32 *)mctx->pending; | 
					
						
							|  |  |  | 		mctx->l ^= le32_to_cpup(src); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		michael_block(mctx->l, mctx->r); | 
					
						
							|  |  |  | 		mctx->pending_len = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 21:25:15 +11:00
										 |  |  | 	src = (const __le32 *)data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	while (len >= 4) { | 
					
						
							| 
									
										
										
										
											2005-10-30 21:25:15 +11:00
										 |  |  | 		mctx->l ^= le32_to_cpup(src++); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		michael_block(mctx->l, mctx->r); | 
					
						
							|  |  |  | 		len -= 4; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (len > 0) { | 
					
						
							|  |  |  | 		mctx->pending_len = len; | 
					
						
							| 
									
										
										
										
											2005-10-30 21:25:15 +11:00
										 |  |  | 		memcpy(mctx->pending, src, len); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | static int michael_final(struct shash_desc *desc, u8 *out) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | 	struct michael_mic_desc_ctx *mctx = shash_desc_ctx(desc); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	u8 *data = mctx->pending; | 
					
						
							| 
									
										
										
										
											2005-10-30 21:25:15 +11:00
										 |  |  | 	__le32 *dst = (__le32 *)out; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Last block and padding (0x5a, 4..7 x 0) */ | 
					
						
							|  |  |  | 	switch (mctx->pending_len) { | 
					
						
							|  |  |  | 	case 0: | 
					
						
							|  |  |  | 		mctx->l ^= 0x5a; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 1: | 
					
						
							|  |  |  | 		mctx->l ^= data[0] | 0x5a00; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 2: | 
					
						
							|  |  |  | 		mctx->l ^= data[0] | (data[1] << 8) | 0x5a0000; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 3: | 
					
						
							|  |  |  | 		mctx->l ^= data[0] | (data[1] << 8) | (data[2] << 16) | | 
					
						
							|  |  |  | 			0x5a000000; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	michael_block(mctx->l, mctx->r); | 
					
						
							|  |  |  | 	/* l ^= 0; */ | 
					
						
							|  |  |  | 	michael_block(mctx->l, mctx->r); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 21:25:15 +11:00
										 |  |  | 	dst[0] = cpu_to_le32(mctx->l); | 
					
						
							|  |  |  | 	dst[1] = cpu_to_le32(mctx->r); | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | static int michael_setkey(struct crypto_shash *tfm, const u8 *key, | 
					
						
							| 
									
										
										
										
											2006-08-13 14:16:39 +10:00
										 |  |  | 			  unsigned int keylen) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | 	struct michael_mic_ctx *mctx = crypto_shash_ctx(tfm); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 21:25:15 +11:00
										 |  |  | 	const __le32 *data = (const __le32 *)key; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (keylen != 8) { | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | 		crypto_shash_set_flags(tfm, CRYPTO_TFM_RES_BAD_KEY_LEN); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-10-30 21:25:15 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	mctx->l = le32_to_cpu(data[0]); | 
					
						
							|  |  |  | 	mctx->r = le32_to_cpu(data[1]); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | static struct shash_alg alg = { | 
					
						
							|  |  |  | 	.digestsize		=	8, | 
					
						
							|  |  |  | 	.setkey			=	michael_setkey, | 
					
						
							|  |  |  | 	.init			=	michael_init, | 
					
						
							|  |  |  | 	.update			=	michael_update, | 
					
						
							|  |  |  | 	.final			=	michael_final, | 
					
						
							|  |  |  | 	.descsize		=	sizeof(struct michael_mic_desc_ctx), | 
					
						
							|  |  |  | 	.base			=	{ | 
					
						
							|  |  |  | 		.cra_name		=	"michael_mic", | 
					
						
							|  |  |  | 		.cra_blocksize		=	8, | 
					
						
							|  |  |  | 		.cra_alignmask		=	3, | 
					
						
							|  |  |  | 		.cra_ctxsize		=	sizeof(struct michael_mic_ctx), | 
					
						
							|  |  |  | 		.cra_module		=	THIS_MODULE, | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init michael_mic_init(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | 	return crypto_register_shash(&alg); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __exit michael_mic_exit(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-07 19:35:38 +08:00
										 |  |  | 	crypto_unregister_shash(&alg); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module_init(michael_mic_init); | 
					
						
							|  |  |  | module_exit(michael_mic_exit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_LICENSE("GPL v2"); | 
					
						
							|  |  |  | MODULE_DESCRIPTION("Michael MIC"); | 
					
						
							| 
									
										
										
										
											2007-03-24 17:15:30 -07:00
										 |  |  | MODULE_AUTHOR("Jouni Malinen <j@w1.fi>"); | 
					
						
							| 
									
										
										
										
											2014-11-20 17:05:53 -08:00
										 |  |  | MODULE_ALIAS_CRYPTO("michael_mic"); |