blob: 37ae9a959f63ca28fa9ac38d38bc7c170512c259 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * Copyright 2002-2004, Instant802 Networks, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#include <linux/netdevice.h>
10#include <linux/types.h>
11#include <linux/slab.h>
12#include <linux/skbuff.h>
13#include <linux/compiler.h>
Harvey Harrisonf14df802008-07-02 11:05:35 -070014#include <linux/ieee80211.h>
15#include <asm/unaligned.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070016#include <net/mac80211.h>
Johannes Bergeb063c12007-08-28 17:01:53 -040017
Jiri Bencf0706e82007-05-05 11:45:53 -070018#include "ieee80211_i.h"
19#include "michael.h"
20#include "tkip.h"
21#include "aes_ccm.h"
22#include "wpa.h"
23
Johannes Berg9ae54c82008-01-31 19:48:20 +010024ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +010025ieee80211_tx_h_michael_mic_add(struct ieee80211_tx_data *tx)
Jiri Bencf0706e82007-05-05 11:45:53 -070026{
Harvey Harrison8e8862b2008-07-02 11:05:35 -070027 u8 *data, *key, *mic, key_offset;
Jiri Bencf0706e82007-05-05 11:45:53 -070028 size_t data_len;
Harvey Harrison8e8862b2008-07-02 11:05:35 -070029 unsigned int hdrlen;
30 struct ieee80211_hdr *hdr;
Jiri Bencf0706e82007-05-05 11:45:53 -070031 struct sk_buff *skb = tx->skb;
32 int authenticator;
33 int wpa_test = 0;
Johannes Berg23c07522008-05-29 10:38:53 +020034 int tail;
Jiri Bencf0706e82007-05-05 11:45:53 -070035
Harvey Harrisonc34498b2008-07-02 16:30:52 -070036 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg8f20fc22007-08-28 17:01:54 -040037 if (!tx->key || tx->key->conf.alg != ALG_TKIP || skb->len < 24 ||
Harvey Harrisonc34498b2008-07-02 16:30:52 -070038 !ieee80211_is_data_present(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +010039 return TX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -070040
Harvey Harrison8e8862b2008-07-02 11:05:35 -070041 hdrlen = ieee80211_hdrlen(hdr->frame_control);
42 if (skb->len < hdrlen)
Johannes Berg9ae54c82008-01-31 19:48:20 +010043 return TX_DROP;
Jiri Bencf0706e82007-05-05 11:45:53 -070044
Harvey Harrison8e8862b2008-07-02 11:05:35 -070045 data = skb->data + hdrlen;
46 data_len = skb->len - hdrlen;
47
Johannes Berg11a843b2007-08-28 17:01:55 -040048 if ((tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) &&
Johannes Berg5cf121c2008-02-25 16:27:43 +010049 !(tx->flags & IEEE80211_TX_FRAGMENTED) &&
Johannes Berg7848ba72007-09-14 11:10:25 -040050 !(tx->key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) &&
Jiri Bencf0706e82007-05-05 11:45:53 -070051 !wpa_test) {
52 /* hwaccel - with no need for preallocated room for Michael MIC
53 */
Johannes Berg9ae54c82008-01-31 19:48:20 +010054 return TX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -070055 }
56
Johannes Berg23c07522008-05-29 10:38:53 +020057 tail = MICHAEL_MIC_LEN;
58 if (!(tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
59 tail += TKIP_ICV_LEN;
60
61 if (WARN_ON(skb_tailroom(skb) < tail ||
62 skb_headroom(skb) < TKIP_IV_LEN))
63 return TX_DROP;
Jiri Bencf0706e82007-05-05 11:45:53 -070064
65#if 0
66 authenticator = fc & IEEE80211_FCTL_FROMDS; /* FIX */
67#else
68 authenticator = 1;
69#endif
Luis R. Rodriguezffd78912008-06-21 10:02:46 -040070 /* At this point we know we're using ALG_TKIP. To get the MIC key
71 * we now will rely on the offset from the ieee80211_key_conf::key */
72 key_offset = authenticator ?
73 NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY :
74 NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY;
75 key = &tx->key->conf.key[key_offset];
Jiri Bencf0706e82007-05-05 11:45:53 -070076 mic = skb_put(skb, MICHAEL_MIC_LEN);
Harvey Harrison8e8862b2008-07-02 11:05:35 -070077 michael_mic(key, hdr, data, data_len, mic);
Jiri Bencf0706e82007-05-05 11:45:53 -070078
Johannes Berg9ae54c82008-01-31 19:48:20 +010079 return TX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -070080}
81
82
Johannes Berg9ae54c82008-01-31 19:48:20 +010083ieee80211_rx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +010084ieee80211_rx_h_michael_mic_verify(struct ieee80211_rx_data *rx)
Jiri Bencf0706e82007-05-05 11:45:53 -070085{
Harvey Harrison8e8862b2008-07-02 11:05:35 -070086 u8 *data, *key = NULL, key_offset;
Jiri Bencf0706e82007-05-05 11:45:53 -070087 size_t data_len;
Harvey Harrison8e8862b2008-07-02 11:05:35 -070088 unsigned int hdrlen;
89 struct ieee80211_hdr *hdr;
Jiri Bencf0706e82007-05-05 11:45:53 -070090 u8 mic[MICHAEL_MIC_LEN];
91 struct sk_buff *skb = rx->skb;
92 int authenticator = 1, wpa_test = 0;
Joe Perches0795af52007-10-03 17:59:30 -070093 DECLARE_MAC_BUF(mac);
Jiri Bencf0706e82007-05-05 11:45:53 -070094
Johannes Berg3017b802007-08-28 17:01:53 -040095 /*
96 * No way to verify the MIC if the hardware stripped it
97 */
Johannes Berg5cf121c2008-02-25 16:27:43 +010098 if (rx->status->flag & RX_FLAG_MMIC_STRIPPED)
Johannes Berg9ae54c82008-01-31 19:48:20 +010099 return RX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700100
Harvey Harrisonc34498b2008-07-02 16:30:52 -0700101 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg8f20fc22007-08-28 17:01:54 -0400102 if (!rx->key || rx->key->conf.alg != ALG_TKIP ||
Harvey Harrisonc34498b2008-07-02 16:30:52 -0700103 !ieee80211_has_protected(hdr->frame_control) ||
104 !ieee80211_is_data_present(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100105 return RX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700106
Harvey Harrison8e8862b2008-07-02 11:05:35 -0700107 hdrlen = ieee80211_hdrlen(hdr->frame_control);
108 if (skb->len < hdrlen + MICHAEL_MIC_LEN)
Johannes Berge4c26ad2008-01-31 19:48:21 +0100109 return RX_DROP_UNUSABLE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700110
Harvey Harrison8e8862b2008-07-02 11:05:35 -0700111 data = skb->data + hdrlen;
112 data_len = skb->len - hdrlen - MICHAEL_MIC_LEN;
Jiri Bencf0706e82007-05-05 11:45:53 -0700113
114#if 0
115 authenticator = fc & IEEE80211_FCTL_TODS; /* FIX */
116#else
117 authenticator = 1;
118#endif
Luis R. Rodriguezffd78912008-06-21 10:02:46 -0400119 /* At this point we know we're using ALG_TKIP. To get the MIC key
120 * we now will rely on the offset from the ieee80211_key_conf::key */
121 key_offset = authenticator ?
122 NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY :
123 NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY;
124 key = &rx->key->conf.key[key_offset];
Harvey Harrison8e8862b2008-07-02 11:05:35 -0700125 michael_mic(key, hdr, data, data_len, mic);
Jiri Bencf0706e82007-05-05 11:45:53 -0700126 if (memcmp(mic, data + data_len, MICHAEL_MIC_LEN) != 0 || wpa_test) {
Johannes Berg5cf121c2008-02-25 16:27:43 +0100127 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
Johannes Berge4c26ad2008-01-31 19:48:21 +0100128 return RX_DROP_UNUSABLE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700129
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200130 mac80211_ev_michael_mic_failure(rx->sdata, rx->key->conf.keyidx,
Johannes Bergeb063c12007-08-28 17:01:53 -0400131 (void *) skb->data);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100132 return RX_DROP_UNUSABLE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700133 }
134
Jiri Bencf0706e82007-05-05 11:45:53 -0700135 /* remove Michael MIC from payload */
136 skb_trim(skb, skb->len - MICHAEL_MIC_LEN);
137
Johannes Berg50741ae2007-09-26 15:19:45 +0200138 /* update IV in key information to be able to detect replays */
Harvey Harrisonb0f76b32008-05-14 16:26:19 -0700139 rx->key->u.tkip.rx[rx->queue].iv32 = rx->tkip_iv32;
140 rx->key->u.tkip.rx[rx->queue].iv16 = rx->tkip_iv16;
Johannes Berg50741ae2007-09-26 15:19:45 +0200141
Johannes Berg9ae54c82008-01-31 19:48:20 +0100142 return RX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700143}
144
145
Johannes Berge039fa42008-05-15 12:55:29 +0200146static int tkip_encrypt_skb(struct ieee80211_tx_data *tx, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700147{
148 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
149 struct ieee80211_key *key = tx->key;
Johannes Berge039fa42008-05-15 12:55:29 +0200150 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Harvey Harrisond5184ca2008-06-11 14:21:58 -0700151 unsigned int hdrlen;
152 int len, tail;
Jiri Bencf0706e82007-05-05 11:45:53 -0700153 u8 *pos;
154
Johannes Berge039fa42008-05-15 12:55:29 +0200155 info->control.icv_len = TKIP_ICV_LEN;
156 info->control.iv_len = TKIP_IV_LEN;
157
158 if ((tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) &&
159 !(tx->key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV)) {
160 /* hwaccel - with no need for preallocated room for IV/ICV */
161 info->control.hw_key = &tx->key->conf;
Johannes Berg23c07522008-05-29 10:38:53 +0200162 return 0;
Johannes Berge039fa42008-05-15 12:55:29 +0200163 }
164
Harvey Harrisond5184ca2008-06-11 14:21:58 -0700165 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Jiri Bencf0706e82007-05-05 11:45:53 -0700166 len = skb->len - hdrlen;
167
Johannes Berg11a843b2007-08-28 17:01:55 -0400168 if (tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
Johannes Berg23c07522008-05-29 10:38:53 +0200169 tail = 0;
Johannes Berg11a843b2007-08-28 17:01:55 -0400170 else
Johannes Berg23c07522008-05-29 10:38:53 +0200171 tail = TKIP_ICV_LEN;
Johannes Berg8f20fc22007-08-28 17:01:54 -0400172
Johannes Berg23c07522008-05-29 10:38:53 +0200173 if (WARN_ON(skb_tailroom(skb) < tail ||
174 skb_headroom(skb) < TKIP_IV_LEN))
175 return -1;
Jiri Bencf0706e82007-05-05 11:45:53 -0700176
177 pos = skb_push(skb, TKIP_IV_LEN);
178 memmove(pos, pos + TKIP_IV_LEN, hdrlen);
179 pos += hdrlen;
180
181 /* Increase IV for the frame */
Harvey Harrisonb0f76b32008-05-14 16:26:19 -0700182 key->u.tkip.tx.iv16++;
183 if (key->u.tkip.tx.iv16 == 0)
184 key->u.tkip.tx.iv32++;
Jiri Bencf0706e82007-05-05 11:45:53 -0700185
Johannes Berg11a843b2007-08-28 17:01:55 -0400186 if (tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700187 /* hwaccel - with preallocated room for IV */
Harvey Harrisonc8012422008-06-11 14:22:00 -0700188 ieee80211_tkip_add_iv(pos, key, key->u.tkip.tx.iv16);
Jiri Bencf0706e82007-05-05 11:45:53 -0700189
Johannes Berge039fa42008-05-15 12:55:29 +0200190 info->control.hw_key = &tx->key->conf;
Jiri Bencf0706e82007-05-05 11:45:53 -0700191 return 0;
192 }
193
194 /* Add room for ICV */
195 skb_put(skb, TKIP_ICV_LEN);
196
197 hdr = (struct ieee80211_hdr *) skb->data;
198 ieee80211_tkip_encrypt_data(tx->local->wep_tx_tfm,
199 key, pos, len, hdr->addr2);
200 return 0;
201}
202
203
Johannes Berg9ae54c82008-01-31 19:48:20 +0100204ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100205ieee80211_crypto_tkip_encrypt(struct ieee80211_tx_data *tx)
Jiri Bencf0706e82007-05-05 11:45:53 -0700206{
Jiri Bencf0706e82007-05-05 11:45:53 -0700207 struct sk_buff *skb = tx->skb;
Jiri Bencf0706e82007-05-05 11:45:53 -0700208
Johannes Berg5cf121c2008-02-25 16:27:43 +0100209 ieee80211_tx_set_protected(tx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700210
Johannes Berge039fa42008-05-15 12:55:29 +0200211 if (tkip_encrypt_skb(tx, skb) < 0)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100212 return TX_DROP;
Jiri Bencf0706e82007-05-05 11:45:53 -0700213
Johannes Berg5cf121c2008-02-25 16:27:43 +0100214 if (tx->extra_frag) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700215 int i;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100216 for (i = 0; i < tx->num_extra_frag; i++) {
Johannes Berge039fa42008-05-15 12:55:29 +0200217 if (tkip_encrypt_skb(tx, tx->extra_frag[i]) < 0)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100218 return TX_DROP;
Jiri Bencf0706e82007-05-05 11:45:53 -0700219 }
220 }
221
Johannes Berg9ae54c82008-01-31 19:48:20 +0100222 return TX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700223}
224
225
Johannes Berg9ae54c82008-01-31 19:48:20 +0100226ieee80211_rx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100227ieee80211_crypto_tkip_decrypt(struct ieee80211_rx_data *rx)
Jiri Bencf0706e82007-05-05 11:45:53 -0700228{
229 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
Jiri Bencf0706e82007-05-05 11:45:53 -0700230 int hdrlen, res, hwaccel = 0, wpa_test = 0;
231 struct ieee80211_key *key = rx->key;
232 struct sk_buff *skb = rx->skb;
Joe Perches0795af52007-10-03 17:59:30 -0700233 DECLARE_MAC_BUF(mac);
Jiri Bencf0706e82007-05-05 11:45:53 -0700234
Harvey Harrisond5184ca2008-06-11 14:21:58 -0700235 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Jiri Bencf0706e82007-05-05 11:45:53 -0700236
Harvey Harrisonc34498b2008-07-02 16:30:52 -0700237 if (!ieee80211_is_data(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100238 return RX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700239
240 if (!rx->sta || skb->len - hdrlen < 12)
Johannes Berge4c26ad2008-01-31 19:48:21 +0100241 return RX_DROP_UNUSABLE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700242
Johannes Berg5cf121c2008-02-25 16:27:43 +0100243 if (rx->status->flag & RX_FLAG_DECRYPTED) {
244 if (rx->status->flag & RX_FLAG_IV_STRIPPED) {
Johannes Berg7848ba72007-09-14 11:10:25 -0400245 /*
246 * Hardware took care of all processing, including
247 * replay protection, and stripped the ICV/IV so
248 * we cannot do any checks here.
249 */
Johannes Berg9ae54c82008-01-31 19:48:20 +0100250 return RX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700251 }
252
253 /* let TKIP code verify IV, but skip decryption */
254 hwaccel = 1;
255 }
256
257 res = ieee80211_tkip_decrypt_data(rx->local->wep_rx_tfm,
258 key, skb->data + hdrlen,
Johannes Berg17741cd2008-09-11 00:02:02 +0200259 skb->len - hdrlen, rx->sta->sta.addr,
Emmanuel Grumbach9ae4fda2008-03-20 15:06:42 +0200260 hdr->addr1, hwaccel, rx->queue,
Johannes Berg5cf121c2008-02-25 16:27:43 +0100261 &rx->tkip_iv32,
262 &rx->tkip_iv16);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200263 if (res != TKIP_DECRYPT_OK || wpa_test)
Johannes Berge4c26ad2008-01-31 19:48:21 +0100264 return RX_DROP_UNUSABLE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700265
266 /* Trim ICV */
267 skb_trim(skb, skb->len - TKIP_ICV_LEN);
268
269 /* Remove IV */
270 memmove(skb->data + TKIP_IV_LEN, skb->data, hdrlen);
271 skb_pull(skb, TKIP_IV_LEN);
272
Johannes Berg9ae54c82008-01-31 19:48:20 +0100273 return RX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700274}
275
276
Harvey Harrisonfeccb462008-07-02 16:30:52 -0700277static void ccmp_special_blocks(struct sk_buff *skb, u8 *pn, u8 *scratch,
Jiri Bencf0706e82007-05-05 11:45:53 -0700278 int encrypted)
279{
Harvey Harrisonf14df802008-07-02 11:05:35 -0700280 __le16 mask_fc;
281 int a4_included;
282 u8 qos_tid;
Harvey Harrisonfeccb462008-07-02 16:30:52 -0700283 u8 *b_0, *aad;
Harvey Harrisonf14df802008-07-02 11:05:35 -0700284 u16 data_len, len_a;
285 unsigned int hdrlen;
286 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Jiri Bencf0706e82007-05-05 11:45:53 -0700287
Harvey Harrisonfeccb462008-07-02 16:30:52 -0700288 b_0 = scratch + 3 * AES_BLOCK_LEN;
289 aad = scratch + 4 * AES_BLOCK_LEN;
290
Harvey Harrisonf14df802008-07-02 11:05:35 -0700291 /*
292 * Mask FC: zero subtype b4 b5 b6
293 * Retry, PwrMgt, MoreData; set Protected
294 */
295 mask_fc = hdr->frame_control;
296 mask_fc &= ~cpu_to_le16(0x0070 | IEEE80211_FCTL_RETRY |
297 IEEE80211_FCTL_PM | IEEE80211_FCTL_MOREDATA);
298 mask_fc |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
Jiri Bencf0706e82007-05-05 11:45:53 -0700299
Harvey Harrisonf14df802008-07-02 11:05:35 -0700300 hdrlen = ieee80211_hdrlen(hdr->frame_control);
301 len_a = hdrlen - 2;
302 a4_included = ieee80211_has_a4(hdr->frame_control);
303
304 if (ieee80211_is_data_qos(hdr->frame_control))
305 qos_tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
306 else
307 qos_tid = 0;
308
309 data_len = skb->len - hdrlen - CCMP_HDR_LEN;
310 if (encrypted)
311 data_len -= CCMP_MIC_LEN;
312
Jiri Bencf0706e82007-05-05 11:45:53 -0700313 /* First block, b_0 */
Jiri Bencf0706e82007-05-05 11:45:53 -0700314 b_0[0] = 0x59; /* flags: Adata: 1, M: 011, L: 001 */
315 /* Nonce: QoS Priority | A2 | PN */
316 b_0[1] = qos_tid;
Harvey Harrison73e1f7c2008-07-02 11:05:34 -0700317 memcpy(&b_0[2], hdr->addr2, ETH_ALEN);
Jiri Bencf0706e82007-05-05 11:45:53 -0700318 memcpy(&b_0[8], pn, CCMP_PN_LEN);
319 /* l(m) */
Harvey Harrisonf14df802008-07-02 11:05:35 -0700320 put_unaligned_be16(data_len, &b_0[14]);
Jiri Bencf0706e82007-05-05 11:45:53 -0700321
322 /* AAD (extra authenticate-only data) / masked 802.11 header
323 * FC | A1 | A2 | A3 | SC | [A4] | [QC] */
Harvey Harrisonf14df802008-07-02 11:05:35 -0700324 put_unaligned_be16(len_a, &aad[0]);
325 put_unaligned(mask_fc, (__le16 *)&aad[2]);
Harvey Harrison73e1f7c2008-07-02 11:05:34 -0700326 memcpy(&aad[4], &hdr->addr1, 3 * ETH_ALEN);
Jiri Bencf0706e82007-05-05 11:45:53 -0700327
328 /* Mask Seq#, leave Frag# */
329 aad[22] = *((u8 *) &hdr->seq_ctrl) & 0x0f;
330 aad[23] = 0;
Harvey Harrisonf14df802008-07-02 11:05:35 -0700331
Jiri Bencf0706e82007-05-05 11:45:53 -0700332 if (a4_included) {
Harvey Harrison73e1f7c2008-07-02 11:05:34 -0700333 memcpy(&aad[24], hdr->addr4, ETH_ALEN);
Harvey Harrisonf14df802008-07-02 11:05:35 -0700334 aad[30] = qos_tid;
Jiri Bencf0706e82007-05-05 11:45:53 -0700335 aad[31] = 0;
Harvey Harrisonf14df802008-07-02 11:05:35 -0700336 } else {
Harvey Harrison73e1f7c2008-07-02 11:05:34 -0700337 memset(&aad[24], 0, ETH_ALEN + IEEE80211_QOS_CTL_LEN);
Harvey Harrisonf14df802008-07-02 11:05:35 -0700338 aad[24] = qos_tid;
Jiri Bencf0706e82007-05-05 11:45:53 -0700339 }
340}
341
342
343static inline void ccmp_pn2hdr(u8 *hdr, u8 *pn, int key_id)
344{
345 hdr[0] = pn[5];
346 hdr[1] = pn[4];
347 hdr[2] = 0;
348 hdr[3] = 0x20 | (key_id << 6);
349 hdr[4] = pn[3];
350 hdr[5] = pn[2];
351 hdr[6] = pn[1];
352 hdr[7] = pn[0];
353}
354
355
356static inline int ccmp_hdr2pn(u8 *pn, u8 *hdr)
357{
358 pn[0] = hdr[7];
359 pn[1] = hdr[6];
360 pn[2] = hdr[5];
361 pn[3] = hdr[4];
362 pn[4] = hdr[1];
363 pn[5] = hdr[0];
364 return (hdr[3] >> 6) & 0x03;
365}
366
367
Johannes Berge039fa42008-05-15 12:55:29 +0200368static int ccmp_encrypt_skb(struct ieee80211_tx_data *tx, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700369{
370 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
371 struct ieee80211_key *key = tx->key;
Johannes Berge039fa42008-05-15 12:55:29 +0200372 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg23c07522008-05-29 10:38:53 +0200373 int hdrlen, len, tail;
Harvey Harrisonfeccb462008-07-02 16:30:52 -0700374 u8 *pos, *pn;
Jiri Bencf0706e82007-05-05 11:45:53 -0700375 int i;
376
Johannes Berge039fa42008-05-15 12:55:29 +0200377 info->control.icv_len = CCMP_MIC_LEN;
378 info->control.iv_len = CCMP_HDR_LEN;
379
380 if ((tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) &&
381 !(tx->key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV)) {
382 /* hwaccel - with no need for preallocated room for CCMP "
383 * header or MIC fields */
384 info->control.hw_key = &tx->key->conf;
Johannes Berg23c07522008-05-29 10:38:53 +0200385 return 0;
Johannes Berge039fa42008-05-15 12:55:29 +0200386 }
387
Harvey Harrisond5184ca2008-06-11 14:21:58 -0700388 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Jiri Bencf0706e82007-05-05 11:45:53 -0700389 len = skb->len - hdrlen;
390
Johannes Berg11a843b2007-08-28 17:01:55 -0400391 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
Johannes Berg23c07522008-05-29 10:38:53 +0200392 tail = 0;
Johannes Berg11a843b2007-08-28 17:01:55 -0400393 else
Johannes Berg23c07522008-05-29 10:38:53 +0200394 tail = CCMP_MIC_LEN;
Jiri Bencf0706e82007-05-05 11:45:53 -0700395
Johannes Berg23c07522008-05-29 10:38:53 +0200396 if (WARN_ON(skb_tailroom(skb) < tail ||
397 skb_headroom(skb) < CCMP_HDR_LEN))
398 return -1;
Jiri Bencf0706e82007-05-05 11:45:53 -0700399
400 pos = skb_push(skb, CCMP_HDR_LEN);
401 memmove(pos, pos + CCMP_HDR_LEN, hdrlen);
402 hdr = (struct ieee80211_hdr *) pos;
403 pos += hdrlen;
404
405 /* PN = PN + 1 */
406 pn = key->u.ccmp.tx_pn;
407
408 for (i = CCMP_PN_LEN - 1; i >= 0; i--) {
409 pn[i]++;
410 if (pn[i])
411 break;
412 }
413
Johannes Berg8f20fc22007-08-28 17:01:54 -0400414 ccmp_pn2hdr(pos, pn, key->conf.keyidx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700415
Johannes Berg11a843b2007-08-28 17:01:55 -0400416 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700417 /* hwaccel - with preallocated room for CCMP header */
Johannes Berge039fa42008-05-15 12:55:29 +0200418 info->control.hw_key = &tx->key->conf;
Jiri Bencf0706e82007-05-05 11:45:53 -0700419 return 0;
420 }
421
422 pos += CCMP_HDR_LEN;
Harvey Harrisonfeccb462008-07-02 16:30:52 -0700423 ccmp_special_blocks(skb, pn, key->u.ccmp.tx_crypto_buf, 0);
424 ieee80211_aes_ccm_encrypt(key->u.ccmp.tfm, key->u.ccmp.tx_crypto_buf, pos, len,
Jiri Bencf0706e82007-05-05 11:45:53 -0700425 pos, skb_put(skb, CCMP_MIC_LEN));
426
427 return 0;
428}
429
430
Johannes Berg9ae54c82008-01-31 19:48:20 +0100431ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100432ieee80211_crypto_ccmp_encrypt(struct ieee80211_tx_data *tx)
Jiri Bencf0706e82007-05-05 11:45:53 -0700433{
Jiri Bencf0706e82007-05-05 11:45:53 -0700434 struct sk_buff *skb = tx->skb;
Jiri Bencf0706e82007-05-05 11:45:53 -0700435
Johannes Berg5cf121c2008-02-25 16:27:43 +0100436 ieee80211_tx_set_protected(tx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700437
Johannes Berge039fa42008-05-15 12:55:29 +0200438 if (ccmp_encrypt_skb(tx, skb) < 0)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100439 return TX_DROP;
Jiri Bencf0706e82007-05-05 11:45:53 -0700440
Johannes Berg5cf121c2008-02-25 16:27:43 +0100441 if (tx->extra_frag) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700442 int i;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100443 for (i = 0; i < tx->num_extra_frag; i++) {
Johannes Berge039fa42008-05-15 12:55:29 +0200444 if (ccmp_encrypt_skb(tx, tx->extra_frag[i]) < 0)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100445 return TX_DROP;
Jiri Bencf0706e82007-05-05 11:45:53 -0700446 }
447 }
448
Johannes Berg9ae54c82008-01-31 19:48:20 +0100449 return TX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700450}
451
452
Johannes Berg9ae54c82008-01-31 19:48:20 +0100453ieee80211_rx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100454ieee80211_crypto_ccmp_decrypt(struct ieee80211_rx_data *rx)
Jiri Bencf0706e82007-05-05 11:45:53 -0700455{
Harvey Harrisonc34498b2008-07-02 16:30:52 -0700456 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Jiri Bencf0706e82007-05-05 11:45:53 -0700457 int hdrlen;
458 struct ieee80211_key *key = rx->key;
459 struct sk_buff *skb = rx->skb;
460 u8 pn[CCMP_PN_LEN];
461 int data_len;
Joe Perches0795af52007-10-03 17:59:30 -0700462 DECLARE_MAC_BUF(mac);
Jiri Bencf0706e82007-05-05 11:45:53 -0700463
Harvey Harrisond5184ca2008-06-11 14:21:58 -0700464 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Jiri Bencf0706e82007-05-05 11:45:53 -0700465
Harvey Harrisonc34498b2008-07-02 16:30:52 -0700466 if (!ieee80211_is_data(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100467 return RX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700468
469 data_len = skb->len - hdrlen - CCMP_HDR_LEN - CCMP_MIC_LEN;
470 if (!rx->sta || data_len < 0)
Johannes Berge4c26ad2008-01-31 19:48:21 +0100471 return RX_DROP_UNUSABLE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700472
Johannes Berg5cf121c2008-02-25 16:27:43 +0100473 if ((rx->status->flag & RX_FLAG_DECRYPTED) &&
474 (rx->status->flag & RX_FLAG_IV_STRIPPED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100475 return RX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700476
477 (void) ccmp_hdr2pn(pn, skb->data + hdrlen);
478
Johannes Berg5cf121c2008-02-25 16:27:43 +0100479 if (memcmp(pn, key->u.ccmp.rx_pn[rx->queue], CCMP_PN_LEN) <= 0) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700480 key->u.ccmp.replays++;
Johannes Berge4c26ad2008-01-31 19:48:21 +0100481 return RX_DROP_UNUSABLE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700482 }
483
Johannes Berg5cf121c2008-02-25 16:27:43 +0100484 if (!(rx->status->flag & RX_FLAG_DECRYPTED)) {
Johannes Berg7848ba72007-09-14 11:10:25 -0400485 /* hardware didn't decrypt/verify MIC */
Harvey Harrisonfeccb462008-07-02 16:30:52 -0700486 ccmp_special_blocks(skb, pn, key->u.ccmp.rx_crypto_buf, 1);
Jiri Bencf0706e82007-05-05 11:45:53 -0700487
488 if (ieee80211_aes_ccm_decrypt(
Harvey Harrisonfeccb462008-07-02 16:30:52 -0700489 key->u.ccmp.tfm, key->u.ccmp.rx_crypto_buf,
Jiri Bencf0706e82007-05-05 11:45:53 -0700490 skb->data + hdrlen + CCMP_HDR_LEN, data_len,
491 skb->data + skb->len - CCMP_MIC_LEN,
492 skb->data + hdrlen + CCMP_HDR_LEN)) {
Johannes Berge4c26ad2008-01-31 19:48:21 +0100493 return RX_DROP_UNUSABLE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700494 }
495 }
496
Johannes Berg5cf121c2008-02-25 16:27:43 +0100497 memcpy(key->u.ccmp.rx_pn[rx->queue], pn, CCMP_PN_LEN);
Jiri Bencf0706e82007-05-05 11:45:53 -0700498
499 /* Remove CCMP header and MIC */
500 skb_trim(skb, skb->len - CCMP_MIC_LEN);
501 memmove(skb->data + CCMP_HDR_LEN, skb->data, hdrlen);
502 skb_pull(skb, CCMP_HDR_LEN);
503
Johannes Berg9ae54c82008-01-31 19:48:20 +0100504 return RX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700505}