blob: b9b595c081123d518ff19416f9f6cb705b8d3fb1 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * Copyright 2003-2004, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
Ilpo Järvinen172589c2007-08-28 15:50:33 -070010#include <linux/kernel.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070011#include <linux/types.h>
12#include <linux/crypto.h>
13#include <linux/err.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070014
15#include <net/mac80211.h>
Johannes Berg2c8dccc2008-04-08 15:14:40 -040016#include "key.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070017#include "aes_ccm.h"
18
Harvey Harrison5fdae6b2008-07-02 16:30:53 -070019static void aes_ccm_prepare(struct crypto_cipher *tfm, u8 *scratch, u8 *a)
Jiri Bencf0706e82007-05-05 11:45:53 -070020{
21 int i;
Harvey Harrison5fdae6b2008-07-02 16:30:53 -070022 u8 *b_0, *aad, *b, *s_0;
Jiri Bencf0706e82007-05-05 11:45:53 -070023
Harvey Harrison5fdae6b2008-07-02 16:30:53 -070024 b_0 = scratch + 3 * AES_BLOCK_LEN;
25 aad = scratch + 4 * AES_BLOCK_LEN;
26 b = scratch;
27 s_0 = scratch + AES_BLOCK_LEN;
28
29 crypto_cipher_encrypt_one(tfm, b, b_0);
Jiri Bencf0706e82007-05-05 11:45:53 -070030
31 /* Extra Authenticate-only data (always two AES blocks) */
32 for (i = 0; i < AES_BLOCK_LEN; i++)
33 aad[i] ^= b[i];
Harvey Harrison5fdae6b2008-07-02 16:30:53 -070034 crypto_cipher_encrypt_one(tfm, b, aad);
Jiri Bencf0706e82007-05-05 11:45:53 -070035
36 aad += AES_BLOCK_LEN;
37
38 for (i = 0; i < AES_BLOCK_LEN; i++)
39 aad[i] ^= b[i];
Harvey Harrison5fdae6b2008-07-02 16:30:53 -070040 crypto_cipher_encrypt_one(tfm, a, aad);
Jiri Bencf0706e82007-05-05 11:45:53 -070041
42 /* Mask out bits from auth-only-b_0 */
43 b_0[0] &= 0x07;
44
45 /* S_0 is used to encrypt T (= MIC) */
46 b_0[14] = 0;
47 b_0[15] = 0;
Harvey Harrison5fdae6b2008-07-02 16:30:53 -070048 crypto_cipher_encrypt_one(tfm, s_0, b_0);
Jiri Bencf0706e82007-05-05 11:45:53 -070049}
50
51
52void ieee80211_aes_ccm_encrypt(struct crypto_cipher *tfm, u8 *scratch,
Harvey Harrisonfeccb462008-07-02 16:30:52 -070053 u8 *data, size_t data_len,
Jiri Bencf0706e82007-05-05 11:45:53 -070054 u8 *cdata, u8 *mic)
55{
56 int i, j, last_len, num_blocks;
Rajkumar Manoharan0915cba2011-04-25 15:56:17 +053057 u8 *pos, *cpos, *b, *s_0, *e, *b_0;
Jiri Bencf0706e82007-05-05 11:45:53 -070058
59 b = scratch;
60 s_0 = scratch + AES_BLOCK_LEN;
61 e = scratch + 2 * AES_BLOCK_LEN;
Harvey Harrisonfeccb462008-07-02 16:30:52 -070062 b_0 = scratch + 3 * AES_BLOCK_LEN;
Jiri Bencf0706e82007-05-05 11:45:53 -070063
Ilpo Järvinen172589c2007-08-28 15:50:33 -070064 num_blocks = DIV_ROUND_UP(data_len, AES_BLOCK_LEN);
Jiri Bencf0706e82007-05-05 11:45:53 -070065 last_len = data_len % AES_BLOCK_LEN;
Harvey Harrison5fdae6b2008-07-02 16:30:53 -070066 aes_ccm_prepare(tfm, scratch, b);
Jiri Bencf0706e82007-05-05 11:45:53 -070067
68 /* Process payload blocks */
69 pos = data;
70 cpos = cdata;
71 for (j = 1; j <= num_blocks; j++) {
72 int blen = (j == num_blocks && last_len) ?
73 last_len : AES_BLOCK_LEN;
74
75 /* Authentication followed by encryption */
76 for (i = 0; i < blen; i++)
77 b[i] ^= pos[i];
Harvey Harrison5fdae6b2008-07-02 16:30:53 -070078 crypto_cipher_encrypt_one(tfm, b, b);
Jiri Bencf0706e82007-05-05 11:45:53 -070079
80 b_0[14] = (j >> 8) & 0xff;
81 b_0[15] = j & 0xff;
Harvey Harrison5fdae6b2008-07-02 16:30:53 -070082 crypto_cipher_encrypt_one(tfm, e, b_0);
Jiri Bencf0706e82007-05-05 11:45:53 -070083 for (i = 0; i < blen; i++)
84 *cpos++ = *pos++ ^ e[i];
85 }
86
87 for (i = 0; i < CCMP_MIC_LEN; i++)
88 mic[i] = b[i] ^ s_0[i];
89}
90
91
92int ieee80211_aes_ccm_decrypt(struct crypto_cipher *tfm, u8 *scratch,
Harvey Harrisonfeccb462008-07-02 16:30:52 -070093 u8 *cdata, size_t data_len, u8 *mic, u8 *data)
Jiri Bencf0706e82007-05-05 11:45:53 -070094{
95 int i, j, last_len, num_blocks;
Rajkumar Manoharan0915cba2011-04-25 15:56:17 +053096 u8 *pos, *cpos, *b, *s_0, *a, *b_0;
Jiri Bencf0706e82007-05-05 11:45:53 -070097
98 b = scratch;
99 s_0 = scratch + AES_BLOCK_LEN;
100 a = scratch + 2 * AES_BLOCK_LEN;
Harvey Harrisonfeccb462008-07-02 16:30:52 -0700101 b_0 = scratch + 3 * AES_BLOCK_LEN;
Jiri Bencf0706e82007-05-05 11:45:53 -0700102
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700103 num_blocks = DIV_ROUND_UP(data_len, AES_BLOCK_LEN);
Jiri Bencf0706e82007-05-05 11:45:53 -0700104 last_len = data_len % AES_BLOCK_LEN;
Harvey Harrison5fdae6b2008-07-02 16:30:53 -0700105 aes_ccm_prepare(tfm, scratch, a);
Jiri Bencf0706e82007-05-05 11:45:53 -0700106
107 /* Process payload blocks */
108 cpos = cdata;
109 pos = data;
110 for (j = 1; j <= num_blocks; j++) {
111 int blen = (j == num_blocks && last_len) ?
112 last_len : AES_BLOCK_LEN;
113
114 /* Decryption followed by authentication */
115 b_0[14] = (j >> 8) & 0xff;
116 b_0[15] = j & 0xff;
Harvey Harrison5fdae6b2008-07-02 16:30:53 -0700117 crypto_cipher_encrypt_one(tfm, b, b_0);
Jiri Bencf0706e82007-05-05 11:45:53 -0700118 for (i = 0; i < blen; i++) {
119 *pos = *cpos++ ^ b[i];
120 a[i] ^= *pos++;
121 }
Harvey Harrison5fdae6b2008-07-02 16:30:53 -0700122 crypto_cipher_encrypt_one(tfm, a, a);
Jiri Bencf0706e82007-05-05 11:45:53 -0700123 }
124
125 for (i = 0; i < CCMP_MIC_LEN; i++) {
126 if ((mic[i] ^ s_0[i]) != a[i])
127 return -1;
128 }
129
130 return 0;
131}
132
133
Johannes Berg988c0f72008-04-17 19:21:22 +0200134struct crypto_cipher *ieee80211_aes_key_setup_encrypt(const u8 key[])
Jiri Bencf0706e82007-05-05 11:45:53 -0700135{
136 struct crypto_cipher *tfm;
137
138 tfm = crypto_alloc_cipher("aes", 0, CRYPTO_ALG_ASYNC);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100139 if (!IS_ERR(tfm))
140 crypto_cipher_setkey(tfm, key, ALG_CCMP_KEY_LEN);
Jiri Bencf0706e82007-05-05 11:45:53 -0700141
142 return tfm;
143}
144
145
146void ieee80211_aes_key_free(struct crypto_cipher *tfm)
147{
Jesper Juhlffa56e542010-11-04 22:59:56 +0100148 crypto_free_cipher(tfm);
Jiri Bencf0706e82007-05-05 11:45:53 -0700149}