Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Cryptographic API |
| 3 | * |
| 4 | * Michael MIC (IEEE 802.11i/TKIP) keyed digest |
| 5 | * |
Jouni Malinen | 85d32e7 | 2007-03-24 17:15:30 -0700 | [diff] [blame] | 6 | * Copyright (c) 2004 Jouni Malinen <j@w1.fi> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 12 | #include <crypto/internal/hash.h> |
Herbert Xu | 06ace7a | 2005-10-30 21:25:15 +1100 | [diff] [blame] | 13 | #include <asm/byteorder.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/init.h> |
| 15 | #include <linux/module.h> |
| 16 | #include <linux/string.h> |
Herbert Xu | 06ace7a | 2005-10-30 21:25:15 +1100 | [diff] [blame] | 17 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
| 19 | |
| 20 | struct michael_mic_ctx { |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 21 | u32 l, r; |
| 22 | }; |
| 23 | |
| 24 | struct michael_mic_desc_ctx { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | u8 pending[4]; |
| 26 | size_t pending_len; |
| 27 | |
| 28 | u32 l, r; |
| 29 | }; |
| 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | static inline u32 xswap(u32 val) |
| 32 | { |
| 33 | return ((val & 0x00ff00ff) << 8) | ((val & 0xff00ff00) >> 8); |
| 34 | } |
| 35 | |
| 36 | |
| 37 | #define michael_block(l, r) \ |
| 38 | do { \ |
| 39 | r ^= rol32(l, 17); \ |
| 40 | l += r; \ |
| 41 | r ^= xswap(l); \ |
| 42 | l += r; \ |
| 43 | r ^= rol32(l, 3); \ |
| 44 | l += r; \ |
| 45 | r ^= ror32(l, 2); \ |
| 46 | l += r; \ |
| 47 | } while (0) |
| 48 | |
| 49 | |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 50 | static int michael_init(struct shash_desc *desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | { |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 52 | struct michael_mic_desc_ctx *mctx = shash_desc_ctx(desc); |
| 53 | struct michael_mic_ctx *ctx = crypto_shash_ctx(desc->tfm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | mctx->pending_len = 0; |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 55 | mctx->l = ctx->l; |
| 56 | mctx->r = ctx->r; |
| 57 | |
| 58 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 62 | static int michael_update(struct shash_desc *desc, const u8 *data, |
Herbert Xu | 6c2bb98 | 2006-05-16 22:09:29 +1000 | [diff] [blame] | 63 | unsigned int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | { |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 65 | struct michael_mic_desc_ctx *mctx = shash_desc_ctx(desc); |
Herbert Xu | 06ace7a | 2005-10-30 21:25:15 +1100 | [diff] [blame] | 66 | const __le32 *src; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
| 68 | if (mctx->pending_len) { |
| 69 | int flen = 4 - mctx->pending_len; |
| 70 | if (flen > len) |
| 71 | flen = len; |
| 72 | memcpy(&mctx->pending[mctx->pending_len], data, flen); |
| 73 | mctx->pending_len += flen; |
| 74 | data += flen; |
| 75 | len -= flen; |
| 76 | |
| 77 | if (mctx->pending_len < 4) |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 78 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Herbert Xu | 06ace7a | 2005-10-30 21:25:15 +1100 | [diff] [blame] | 80 | src = (const __le32 *)mctx->pending; |
| 81 | mctx->l ^= le32_to_cpup(src); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | michael_block(mctx->l, mctx->r); |
| 83 | mctx->pending_len = 0; |
| 84 | } |
| 85 | |
Herbert Xu | 06ace7a | 2005-10-30 21:25:15 +1100 | [diff] [blame] | 86 | src = (const __le32 *)data; |
| 87 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | while (len >= 4) { |
Herbert Xu | 06ace7a | 2005-10-30 21:25:15 +1100 | [diff] [blame] | 89 | mctx->l ^= le32_to_cpup(src++); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | michael_block(mctx->l, mctx->r); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | len -= 4; |
| 92 | } |
| 93 | |
| 94 | if (len > 0) { |
| 95 | mctx->pending_len = len; |
Herbert Xu | 06ace7a | 2005-10-30 21:25:15 +1100 | [diff] [blame] | 96 | memcpy(mctx->pending, src, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | } |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 98 | |
| 99 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 103 | static int michael_final(struct shash_desc *desc, u8 *out) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | { |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 105 | struct michael_mic_desc_ctx *mctx = shash_desc_ctx(desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | u8 *data = mctx->pending; |
Herbert Xu | 06ace7a | 2005-10-30 21:25:15 +1100 | [diff] [blame] | 107 | __le32 *dst = (__le32 *)out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
| 109 | /* Last block and padding (0x5a, 4..7 x 0) */ |
| 110 | switch (mctx->pending_len) { |
| 111 | case 0: |
| 112 | mctx->l ^= 0x5a; |
| 113 | break; |
| 114 | case 1: |
| 115 | mctx->l ^= data[0] | 0x5a00; |
| 116 | break; |
| 117 | case 2: |
| 118 | mctx->l ^= data[0] | (data[1] << 8) | 0x5a0000; |
| 119 | break; |
| 120 | case 3: |
| 121 | mctx->l ^= data[0] | (data[1] << 8) | (data[2] << 16) | |
| 122 | 0x5a000000; |
| 123 | break; |
| 124 | } |
| 125 | michael_block(mctx->l, mctx->r); |
| 126 | /* l ^= 0; */ |
| 127 | michael_block(mctx->l, mctx->r); |
| 128 | |
Herbert Xu | 06ace7a | 2005-10-30 21:25:15 +1100 | [diff] [blame] | 129 | dst[0] = cpu_to_le32(mctx->l); |
| 130 | dst[1] = cpu_to_le32(mctx->r); |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 131 | |
| 132 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 136 | static int michael_setkey(struct crypto_shash *tfm, const u8 *key, |
Herbert Xu | 560c06a | 2006-08-13 14:16:39 +1000 | [diff] [blame] | 137 | unsigned int keylen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | { |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 139 | struct michael_mic_ctx *mctx = crypto_shash_ctx(tfm); |
| 140 | |
Herbert Xu | 06ace7a | 2005-10-30 21:25:15 +1100 | [diff] [blame] | 141 | const __le32 *data = (const __le32 *)key; |
| 142 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | if (keylen != 8) { |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 144 | crypto_shash_set_flags(tfm, CRYPTO_TFM_RES_BAD_KEY_LEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | return -EINVAL; |
| 146 | } |
Herbert Xu | 06ace7a | 2005-10-30 21:25:15 +1100 | [diff] [blame] | 147 | |
| 148 | mctx->l = le32_to_cpu(data[0]); |
| 149 | mctx->r = le32_to_cpu(data[1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | return 0; |
| 151 | } |
| 152 | |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 153 | static struct shash_alg alg = { |
| 154 | .digestsize = 8, |
| 155 | .setkey = michael_setkey, |
| 156 | .init = michael_init, |
| 157 | .update = michael_update, |
| 158 | .final = michael_final, |
| 159 | .descsize = sizeof(struct michael_mic_desc_ctx), |
| 160 | .base = { |
| 161 | .cra_name = "michael_mic", |
| 162 | .cra_blocksize = 8, |
| 163 | .cra_alignmask = 3, |
| 164 | .cra_ctxsize = sizeof(struct michael_mic_ctx), |
| 165 | .cra_module = THIS_MODULE, |
| 166 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | }; |
| 168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | static int __init michael_mic_init(void) |
| 170 | { |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 171 | return crypto_register_shash(&alg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | |
| 175 | static void __exit michael_mic_exit(void) |
| 176 | { |
Adrian-Ken Rueegsegger | 19e2bf1 | 2008-12-07 19:35:38 +0800 | [diff] [blame] | 177 | crypto_unregister_shash(&alg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | |
| 181 | module_init(michael_mic_init); |
| 182 | module_exit(michael_mic_exit); |
| 183 | |
| 184 | MODULE_LICENSE("GPL v2"); |
| 185 | MODULE_DESCRIPTION("Michael MIC"); |
Jouni Malinen | 85d32e7 | 2007-03-24 17:15:30 -0700 | [diff] [blame] | 186 | MODULE_AUTHOR("Jouni Malinen <j@w1.fi>"); |
Kees Cook | 5d26a10 | 2014-11-20 17:05:53 -0800 | [diff] [blame] | 187 | MODULE_ALIAS_CRYPTO("michael_mic"); |