michael_mic.c 3.49 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1
2
3
4
5
/*
 * Cryptographic API
 *
 * Michael MIC (IEEE 802.11i/TKIP) keyed digest
 *
6
 * Copyright (c) 2004 Jouni Malinen <j@w1.fi>
Linus Torvalds's avatar
Linus Torvalds committed
7
8
9
10
11
12
 *
 * 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.
 */

13
#include <asm/byteorder.h>
Linus Torvalds's avatar
Linus Torvalds committed
14
15
16
17
#include <linux/init.h>
#include <linux/module.h>
#include <linux/string.h>
#include <linux/crypto.h>
18
#include <linux/types.h>
Linus Torvalds's avatar
Linus Torvalds committed
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47


struct michael_mic_ctx {
	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)


48
static void michael_init(struct crypto_tfm *tfm)
Linus Torvalds's avatar
Linus Torvalds committed
49
{
50
	struct michael_mic_ctx *mctx = crypto_tfm_ctx(tfm);
Linus Torvalds's avatar
Linus Torvalds committed
51
52
53
54
	mctx->pending_len = 0;
}


55
56
static void michael_update(struct crypto_tfm *tfm, const u8 *data,
			   unsigned int len)
Linus Torvalds's avatar
Linus Torvalds committed
57
{
58
	struct michael_mic_ctx *mctx = crypto_tfm_ctx(tfm);
59
	const __le32 *src;
Linus Torvalds's avatar
Linus Torvalds committed
60
61
62
63
64
65
66
67
68
69
70
71
72

	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)
			return;

73
74
		src = (const __le32 *)mctx->pending;
		mctx->l ^= le32_to_cpup(src);
Linus Torvalds's avatar
Linus Torvalds committed
75
76
77
78
		michael_block(mctx->l, mctx->r);
		mctx->pending_len = 0;
	}

79
80
	src = (const __le32 *)data;

Linus Torvalds's avatar
Linus Torvalds committed
81
	while (len >= 4) {
82
		mctx->l ^= le32_to_cpup(src++);
Linus Torvalds's avatar
Linus Torvalds committed
83
84
85
86
87
88
		michael_block(mctx->l, mctx->r);
		len -= 4;
	}

	if (len > 0) {
		mctx->pending_len = len;
89
		memcpy(mctx->pending, src, len);
Linus Torvalds's avatar
Linus Torvalds committed
90
91
92
93
	}
}


94
static void michael_final(struct crypto_tfm *tfm, u8 *out)
Linus Torvalds's avatar
Linus Torvalds committed
95
{
96
	struct michael_mic_ctx *mctx = crypto_tfm_ctx(tfm);
Linus Torvalds's avatar
Linus Torvalds committed
97
	u8 *data = mctx->pending;
98
	__le32 *dst = (__le32 *)out;
Linus Torvalds's avatar
Linus Torvalds committed
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119

	/* 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);

120
121
	dst[0] = cpu_to_le32(mctx->l);
	dst[1] = cpu_to_le32(mctx->r);
Linus Torvalds's avatar
Linus Torvalds committed
122
123
124
}


125
static int michael_setkey(struct crypto_tfm *tfm, const u8 *key,
126
			  unsigned int keylen)
Linus Torvalds's avatar
Linus Torvalds committed
127
{
128
	struct michael_mic_ctx *mctx = crypto_tfm_ctx(tfm);
129
130
	const __le32 *data = (const __le32 *)key;

Linus Torvalds's avatar
Linus Torvalds committed
131
	if (keylen != 8) {
132
		tfm->crt_flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
Linus Torvalds's avatar
Linus Torvalds committed
133
134
		return -EINVAL;
	}
135
136
137

	mctx->l = le32_to_cpu(data[0]);
	mctx->r = le32_to_cpu(data[1]);
Linus Torvalds's avatar
Linus Torvalds committed
138
139
140
141
142
143
144
145
146
147
	return 0;
}


static struct crypto_alg michael_mic_alg = {
	.cra_name	= "michael_mic",
	.cra_flags	= CRYPTO_ALG_TYPE_DIGEST,
	.cra_blocksize	= 8,
	.cra_ctxsize	= sizeof(struct michael_mic_ctx),
	.cra_module	= THIS_MODULE,
148
	.cra_alignmask	= 3,
Linus Torvalds's avatar
Linus Torvalds committed
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
	.cra_list	= LIST_HEAD_INIT(michael_mic_alg.cra_list),
	.cra_u		= { .digest = {
	.dia_digestsize	= 8,
	.dia_init	= michael_init,
	.dia_update	= michael_update,
	.dia_final	= michael_final,
	.dia_setkey	= michael_setkey } }
};


static int __init michael_mic_init(void)
{
	return crypto_register_alg(&michael_mic_alg);
}


static void __exit michael_mic_exit(void)
{
	crypto_unregister_alg(&michael_mic_alg);
}


module_init(michael_mic_init);
module_exit(michael_mic_exit);

MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("Michael MIC");
176
MODULE_AUTHOR("Jouni Malinen <j@w1.fi>");