blob: 7ed0d268aff2fd8da2b44bf7af733e6e798e5761 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Jiri Bencf0706e82007-05-05 11:45:53 -07002/*
3 * Copyright 2002-2004, Instant802 Networks, Inc.
Jouni Malinen765cb462009-01-08 13:32:01 +02004 * Copyright 2008, Jouni Malinen <j@w1.fi>
David Spinadel9de18d82017-12-01 13:50:52 +02005 * Copyright (C) 2016-2017 Intel Deutschland GmbH
Johannes Bergbf30ca92021-05-11 20:02:48 +02006 * Copyright (C) 2020-2021 Intel Corporation
Jiri Bencf0706e82007-05-05 11:45:53 -07007 */
8
9#include <linux/netdevice.h>
10#include <linux/types.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070011#include <linux/skbuff.h>
12#include <linux/compiler.h>
Harvey Harrisonf14df802008-07-02 11:05:35 -070013#include <linux/ieee80211.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/gfp.h>
Harvey Harrisonf14df802008-07-02 11:05:35 -070015#include <asm/unaligned.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070016#include <net/mac80211.h>
Johannes Bergaba83a0b2011-07-06 21:59:39 +020017#include <crypto/aes.h>
Jason A. Donenfeld98c67d12017-06-10 04:59:12 +020018#include <crypto/algapi.h>
Johannes Bergeb063c12007-08-28 17:01:53 -040019
Jiri Bencf0706e82007-05-05 11:45:53 -070020#include "ieee80211_i.h"
21#include "michael.h"
22#include "tkip.h"
23#include "aes_ccm.h"
Jouni Malinen765cb462009-01-08 13:32:01 +020024#include "aes_cmac.h"
Jouni Malinen8ade5382015-01-24 19:52:09 +020025#include "aes_gmac.h"
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020026#include "aes_gcm.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070027#include "wpa.h"
28
Johannes Berg9ae54c82008-01-31 19:48:20 +010029ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +010030ieee80211_tx_h_michael_mic_add(struct ieee80211_tx_data *tx)
Jiri Bencf0706e82007-05-05 11:45:53 -070031{
Jouni Malinen747d7532011-02-03 18:34:28 +020032 u8 *data, *key, *mic;
Jiri Bencf0706e82007-05-05 11:45:53 -070033 size_t data_len;
Harvey Harrison8e8862b2008-07-02 11:05:35 -070034 unsigned int hdrlen;
35 struct ieee80211_hdr *hdr;
Jiri Bencf0706e82007-05-05 11:45:53 -070036 struct sk_buff *skb = tx->skb;
Johannes Berg813d7662010-01-17 01:47:58 +010037 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg23c07522008-05-29 10:38:53 +020038 int tail;
Jiri Bencf0706e82007-05-05 11:45:53 -070039
Harvey Harrisonc34498b2008-07-02 16:30:52 -070040 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg97359d12010-08-10 09:46:38 +020041 if (!tx->key || tx->key->conf.cipher != WLAN_CIPHER_SUITE_TKIP ||
42 skb->len < 24 || !ieee80211_is_data_present(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +010043 return TX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -070044
Harvey Harrison8e8862b2008-07-02 11:05:35 -070045 hdrlen = ieee80211_hdrlen(hdr->frame_control);
46 if (skb->len < hdrlen)
Johannes Berg9ae54c82008-01-31 19:48:20 +010047 return TX_DROP;
Jiri Bencf0706e82007-05-05 11:45:53 -070048
Harvey Harrison8e8862b2008-07-02 11:05:35 -070049 data = skb->data + hdrlen;
50 data_len = skb->len - hdrlen;
51
Jouni Malinen681d1192011-02-03 18:35:19 +020052 if (unlikely(info->flags & IEEE80211_TX_INTFL_TKIP_MIC_FAILURE)) {
53 /* Need to use software crypto for the test */
54 info->control.hw_key = NULL;
55 }
56
Johannes Berg813d7662010-01-17 01:47:58 +010057 if (info->control.hw_key &&
Johannes Berga26eb272011-10-07 14:01:25 +020058 (info->flags & IEEE80211_TX_CTL_DONTFRAG ||
Sara Sharonf3fe4e92016-10-18 23:12:11 +030059 ieee80211_hw_check(&tx->local->hw, SUPPORTS_TX_FRAG)) &&
David Spinadel9de18d82017-12-01 13:50:52 +020060 !(tx->key->conf.flags & (IEEE80211_KEY_FLAG_GENERATE_MMIC |
61 IEEE80211_KEY_FLAG_PUT_MIC_SPACE))) {
62 /* hwaccel - with no need for SW-generated MMIC or MIC space */
Johannes Berg9ae54c82008-01-31 19:48:20 +010063 return TX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -070064 }
65
Johannes Berg23c07522008-05-29 10:38:53 +020066 tail = MICHAEL_MIC_LEN;
Johannes Berg813d7662010-01-17 01:47:58 +010067 if (!info->control.hw_key)
Johannes Berg4325f6c2013-05-08 13:09:08 +020068 tail += IEEE80211_TKIP_ICV_LEN;
Johannes Berg23c07522008-05-29 10:38:53 +020069
Johannes Bergb1e9be82014-09-08 11:22:42 +020070 if (WARN(skb_tailroom(skb) < tail ||
71 skb_headroom(skb) < IEEE80211_TKIP_IV_LEN,
72 "mmic: not enough head/tail (%d/%d,%d/%d)\n",
73 skb_headroom(skb), IEEE80211_TKIP_IV_LEN,
74 skb_tailroom(skb), tail))
Johannes Berg23c07522008-05-29 10:38:53 +020075 return TX_DROP;
Jiri Bencf0706e82007-05-05 11:45:53 -070076
Jiri Bencf0706e82007-05-05 11:45:53 -070077 mic = skb_put(skb, MICHAEL_MIC_LEN);
David Spinadel9de18d82017-12-01 13:50:52 +020078
79 if (tx->key->conf.flags & IEEE80211_KEY_FLAG_PUT_MIC_SPACE) {
80 /* Zeroed MIC can help with debug */
81 memset(mic, 0, MICHAEL_MIC_LEN);
82 return TX_CONTINUE;
83 }
84
85 key = &tx->key->conf.key[NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY];
Harvey Harrison8e8862b2008-07-02 11:05:35 -070086 michael_mic(key, hdr, data, data_len, mic);
Jouni Malinen681d1192011-02-03 18:35:19 +020087 if (unlikely(info->flags & IEEE80211_TX_INTFL_TKIP_MIC_FAILURE))
88 mic[0]++;
Jiri Bencf0706e82007-05-05 11:45:53 -070089
Johannes Berg9ae54c82008-01-31 19:48:20 +010090 return TX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -070091}
92
93
Johannes Berg9ae54c82008-01-31 19:48:20 +010094ieee80211_rx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +010095ieee80211_rx_h_michael_mic_verify(struct ieee80211_rx_data *rx)
Jiri Bencf0706e82007-05-05 11:45:53 -070096{
Jouni Malinen747d7532011-02-03 18:34:28 +020097 u8 *data, *key = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -070098 size_t data_len;
Harvey Harrison8e8862b2008-07-02 11:05:35 -070099 unsigned int hdrlen;
Jiri Bencf0706e82007-05-05 11:45:53 -0700100 u8 mic[MICHAEL_MIC_LEN];
101 struct sk_buff *skb = rx->skb;
Johannes Bergeb9fb5b82009-11-16 13:58:20 +0100102 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
103 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Jiri Bencf0706e82007-05-05 11:45:53 -0700104
Christian Lamparter816c04f2011-04-30 15:24:30 +0200105 /*
106 * it makes no sense to check for MIC errors on anything other
107 * than data frames.
108 */
109 if (!ieee80211_is_data_present(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100110 return RX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700111
Christian Lamparter816c04f2011-04-30 15:24:30 +0200112 /*
113 * No way to verify the MIC if the hardware stripped it or
114 * the IV with the key index. In this case we have solely rely
115 * on the driver to set RX_FLAG_MMIC_ERROR in the event of a
116 * MIC failure report.
117 */
118 if (status->flag & (RX_FLAG_MMIC_STRIPPED | RX_FLAG_IV_STRIPPED)) {
119 if (status->flag & RX_FLAG_MMIC_ERROR)
Saravanab98ea052012-12-04 19:47:42 +0530120 goto mic_fail_no_key;
Christian Lamparter816c04f2011-04-30 15:24:30 +0200121
Stanislaw Gruszka4045f722012-10-02 21:34:23 +0200122 if (!(status->flag & RX_FLAG_IV_STRIPPED) && rx->key &&
123 rx->key->conf.cipher == WLAN_CIPHER_SUITE_TKIP)
Christian Lamparter816c04f2011-04-30 15:24:30 +0200124 goto update_iv;
125
Johannes Berg9ae54c82008-01-31 19:48:20 +0100126 return RX_CONTINUE;
Christian Lamparter816c04f2011-04-30 15:24:30 +0200127 }
128
129 /*
130 * Some hardware seems to generate Michael MIC failure reports; even
131 * though, the frame was not encrypted with TKIP and therefore has no
132 * MIC. Ignore the flag them to avoid triggering countermeasures.
133 */
134 if (!rx->key || rx->key->conf.cipher != WLAN_CIPHER_SUITE_TKIP ||
135 !(status->flag & RX_FLAG_DECRYPTED))
136 return RX_CONTINUE;
137
138 if (rx->sdata->vif.type == NL80211_IFTYPE_AP && rx->key->conf.keyidx) {
139 /*
140 * APs with pairwise keys should never receive Michael MIC
141 * errors for non-zero keyidx because these are reserved for
142 * group keys and only the AP is sending real multicast
Emmanuel Grumbach87ee4752014-01-07 13:09:38 +0200143 * frames in the BSS.
Christian Lamparter816c04f2011-04-30 15:24:30 +0200144 */
145 return RX_DROP_UNUSABLE;
146 }
147
148 if (status->flag & RX_FLAG_MMIC_ERROR)
149 goto mic_fail;
Jiri Bencf0706e82007-05-05 11:45:53 -0700150
Harvey Harrison8e8862b2008-07-02 11:05:35 -0700151 hdrlen = ieee80211_hdrlen(hdr->frame_control);
152 if (skb->len < hdrlen + MICHAEL_MIC_LEN)
Johannes Berge4c26ad2008-01-31 19:48:21 +0100153 return RX_DROP_UNUSABLE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700154
Johannes Berga8286912012-03-12 13:49:14 +0100155 if (skb_linearize(rx->skb))
156 return RX_DROP_UNUSABLE;
157 hdr = (void *)skb->data;
158
Harvey Harrison8e8862b2008-07-02 11:05:35 -0700159 data = skb->data + hdrlen;
160 data_len = skb->len - hdrlen - MICHAEL_MIC_LEN;
Jouni Malinen747d7532011-02-03 18:34:28 +0200161 key = &rx->key->conf.key[NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY];
Harvey Harrison8e8862b2008-07-02 11:05:35 -0700162 michael_mic(key, hdr, data, data_len, mic);
Jason A. Donenfeld98c67d12017-06-10 04:59:12 +0200163 if (crypto_memneq(mic, data + data_len, MICHAEL_MIC_LEN))
Christian Lamparter816c04f2011-04-30 15:24:30 +0200164 goto mic_fail;
Jiri Bencf0706e82007-05-05 11:45:53 -0700165
Jiri Bencf0706e82007-05-05 11:45:53 -0700166 /* remove Michael MIC from payload */
167 skb_trim(skb, skb->len - MICHAEL_MIC_LEN);
168
Christian Lamparter816c04f2011-04-30 15:24:30 +0200169update_iv:
Johannes Berg50741ae2007-09-26 15:19:45 +0200170 /* update IV in key information to be able to detect replays */
Johannes Bergbf30ca92021-05-11 20:02:48 +0200171 rx->key->u.tkip.rx[rx->security_idx].iv32 = rx->tkip.iv32;
172 rx->key->u.tkip.rx[rx->security_idx].iv16 = rx->tkip.iv16;
Johannes Berg50741ae2007-09-26 15:19:45 +0200173
Johannes Berg9ae54c82008-01-31 19:48:20 +0100174 return RX_CONTINUE;
Christian Lamparter816c04f2011-04-30 15:24:30 +0200175
176mic_fail:
Saravanab98ea052012-12-04 19:47:42 +0530177 rx->key->u.tkip.mic_failures++;
178
179mic_fail_no_key:
Arik Nemtsova66b98d2011-06-23 00:00:24 +0300180 /*
181 * In some cases the key can be unset - e.g. a multicast packet, in
182 * a driver that supports HW encryption. Send up the key idx only if
183 * the key is set.
184 */
Johannes Berg6f1f5d52015-10-14 18:40:10 +0200185 cfg80211_michael_mic_failure(rx->sdata->dev, hdr->addr2,
186 is_multicast_ether_addr(hdr->addr1) ?
187 NL80211_KEYTYPE_GROUP :
188 NL80211_KEYTYPE_PAIRWISE,
189 rx->key ? rx->key->conf.keyidx : -1,
190 NULL, GFP_ATOMIC);
Christian Lamparter816c04f2011-04-30 15:24:30 +0200191 return RX_DROP_UNUSABLE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700192}
193
Johannes Berge039fa42008-05-15 12:55:29 +0200194static int tkip_encrypt_skb(struct ieee80211_tx_data *tx, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700195{
196 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
197 struct ieee80211_key *key = tx->key;
Johannes Berge039fa42008-05-15 12:55:29 +0200198 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Harvey Harrisond5184ca2008-06-11 14:21:58 -0700199 unsigned int hdrlen;
200 int len, tail;
Eliad Pellerf8079d42016-02-14 13:56:35 +0200201 u64 pn;
Jiri Bencf0706e82007-05-05 11:45:53 -0700202 u8 *pos;
203
Johannes Berg813d7662010-01-17 01:47:58 +0100204 if (info->control.hw_key &&
Janusz.Dziedzic@tieto.comee701082012-05-09 08:11:20 +0300205 !(info->control.hw_key->flags & IEEE80211_KEY_FLAG_GENERATE_IV) &&
206 !(info->control.hw_key->flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE)) {
Johannes Berg813d7662010-01-17 01:47:58 +0100207 /* hwaccel - with no need for software-generated IV */
Johannes Berg23c07522008-05-29 10:38:53 +0200208 return 0;
Johannes Berge039fa42008-05-15 12:55:29 +0200209 }
210
Harvey Harrisond5184ca2008-06-11 14:21:58 -0700211 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Jiri Bencf0706e82007-05-05 11:45:53 -0700212 len = skb->len - hdrlen;
213
Johannes Berg813d7662010-01-17 01:47:58 +0100214 if (info->control.hw_key)
Johannes Berg23c07522008-05-29 10:38:53 +0200215 tail = 0;
Johannes Berg11a843b2007-08-28 17:01:55 -0400216 else
Johannes Berg4325f6c2013-05-08 13:09:08 +0200217 tail = IEEE80211_TKIP_ICV_LEN;
Johannes Berg8f20fc22007-08-28 17:01:54 -0400218
Johannes Berg23c07522008-05-29 10:38:53 +0200219 if (WARN_ON(skb_tailroom(skb) < tail ||
Johannes Berg4325f6c2013-05-08 13:09:08 +0200220 skb_headroom(skb) < IEEE80211_TKIP_IV_LEN))
Johannes Berg23c07522008-05-29 10:38:53 +0200221 return -1;
Jiri Bencf0706e82007-05-05 11:45:53 -0700222
Johannes Berg4325f6c2013-05-08 13:09:08 +0200223 pos = skb_push(skb, IEEE80211_TKIP_IV_LEN);
224 memmove(pos, pos + IEEE80211_TKIP_IV_LEN, hdrlen);
Jiri Bencf0706e82007-05-05 11:45:53 -0700225 pos += hdrlen;
226
Janusz.Dziedzic@tieto.comee701082012-05-09 08:11:20 +0300227 /* the HW only needs room for the IV, but not the actual IV */
228 if (info->control.hw_key &&
229 (info->control.hw_key->flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE))
230 return 0;
231
Jiri Bencf0706e82007-05-05 11:45:53 -0700232 /* Increase IV for the frame */
Eliad Pellerf8079d42016-02-14 13:56:35 +0200233 pn = atomic64_inc_return(&key->conf.tx_pn);
234 pos = ieee80211_tkip_add_iv(pos, &key->conf, pn);
Jiri Bencf0706e82007-05-05 11:45:53 -0700235
Johannes Berg813d7662010-01-17 01:47:58 +0100236 /* hwaccel - with software IV */
237 if (info->control.hw_key)
Jiri Bencf0706e82007-05-05 11:45:53 -0700238 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700239
240 /* Add room for ICV */
Johannes Berg4325f6c2013-05-08 13:09:08 +0200241 skb_put(skb, IEEE80211_TKIP_ICV_LEN);
Jiri Bencf0706e82007-05-05 11:45:53 -0700242
Ard Biesheuvel5fdb3732019-06-12 18:19:54 +0200243 return ieee80211_tkip_encrypt_data(&tx->local->wep_tx_ctx,
Johannes Berg523b02e2011-07-07 22:28:01 +0200244 key, skb, pos, len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700245}
246
247
Johannes Berg9ae54c82008-01-31 19:48:20 +0100248ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100249ieee80211_crypto_tkip_encrypt(struct ieee80211_tx_data *tx)
Jiri Bencf0706e82007-05-05 11:45:53 -0700250{
Johannes Berg252b86c2011-11-16 15:28:55 +0100251 struct sk_buff *skb;
Jiri Bencf0706e82007-05-05 11:45:53 -0700252
Johannes Berg5cf121c2008-02-25 16:27:43 +0100253 ieee80211_tx_set_protected(tx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700254
Johannes Berg252b86c2011-11-16 15:28:55 +0100255 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100256 if (tkip_encrypt_skb(tx, skb) < 0)
257 return TX_DROP;
Johannes Berg252b86c2011-11-16 15:28:55 +0100258 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700259
Johannes Berg9ae54c82008-01-31 19:48:20 +0100260 return TX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700261}
262
263
Johannes Berg9ae54c82008-01-31 19:48:20 +0100264ieee80211_rx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100265ieee80211_crypto_tkip_decrypt(struct ieee80211_rx_data *rx)
Jiri Bencf0706e82007-05-05 11:45:53 -0700266{
267 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
Jouni Malinen747d7532011-02-03 18:34:28 +0200268 int hdrlen, res, hwaccel = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700269 struct ieee80211_key *key = rx->key;
270 struct sk_buff *skb = rx->skb;
Johannes Bergeb9fb5b82009-11-16 13:58:20 +0100271 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700272
Harvey Harrisond5184ca2008-06-11 14:21:58 -0700273 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Jiri Bencf0706e82007-05-05 11:45:53 -0700274
Harvey Harrisonc34498b2008-07-02 16:30:52 -0700275 if (!ieee80211_is_data(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100276 return RX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700277
278 if (!rx->sta || skb->len - hdrlen < 12)
Johannes Berge4c26ad2008-01-31 19:48:21 +0100279 return RX_DROP_UNUSABLE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700280
Johannes Berga8286912012-03-12 13:49:14 +0100281 /* it may be possible to optimize this a bit more */
282 if (skb_linearize(rx->skb))
283 return RX_DROP_UNUSABLE;
284 hdr = (void *)skb->data;
285
Johannes Bergdc1580d2010-08-10 09:46:40 +0200286 /*
287 * Let TKIP code verify IV, but skip decryption.
288 * In the case where hardware checks the IV as well,
289 * we don't even get here, see ieee80211_rx_h_decrypt()
290 */
291 if (status->flag & RX_FLAG_DECRYPTED)
Jiri Bencf0706e82007-05-05 11:45:53 -0700292 hwaccel = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -0700293
Ard Biesheuvel5fdb3732019-06-12 18:19:54 +0200294 res = ieee80211_tkip_decrypt_data(&rx->local->wep_rx_ctx,
Jiri Bencf0706e82007-05-05 11:45:53 -0700295 key, skb->data + hdrlen,
Johannes Berg17741cd2008-09-11 00:02:02 +0200296 skb->len - hdrlen, rx->sta->sta.addr,
Johannes Berg9e262972011-07-07 18:45:03 +0200297 hdr->addr1, hwaccel, rx->security_idx,
Johannes Bergbf30ca92021-05-11 20:02:48 +0200298 &rx->tkip.iv32,
299 &rx->tkip.iv16);
Jouni Malinen747d7532011-02-03 18:34:28 +0200300 if (res != TKIP_DECRYPT_OK)
Johannes Berge4c26ad2008-01-31 19:48:21 +0100301 return RX_DROP_UNUSABLE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700302
303 /* Trim ICV */
David Spinadelcef0acd2016-11-21 16:58:40 +0200304 if (!(status->flag & RX_FLAG_ICV_STRIPPED))
305 skb_trim(skb, skb->len - IEEE80211_TKIP_ICV_LEN);
Jiri Bencf0706e82007-05-05 11:45:53 -0700306
307 /* Remove IV */
Johannes Berg4325f6c2013-05-08 13:09:08 +0200308 memmove(skb->data + IEEE80211_TKIP_IV_LEN, skb->data, hdrlen);
309 skb_pull(skb, IEEE80211_TKIP_IV_LEN);
Jiri Bencf0706e82007-05-05 11:45:53 -0700310
Johannes Berg9ae54c82008-01-31 19:48:20 +0100311 return RX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700312}
313
314
Ard Biesheuvel30ef7ef2014-01-16 12:16:30 +0100315static void ccmp_special_blocks(struct sk_buff *skb, u8 *pn, u8 *b_0, u8 *aad)
Jiri Bencf0706e82007-05-05 11:45:53 -0700316{
Harvey Harrisonf14df802008-07-02 11:05:35 -0700317 __le16 mask_fc;
Jouni Malinenfb733332009-01-08 13:32:00 +0200318 int a4_included, mgmt;
Harvey Harrisonf14df802008-07-02 11:05:35 -0700319 u8 qos_tid;
Ard Biesheuvel7ec7c4a2013-10-10 09:55:20 +0200320 u16 len_a;
Harvey Harrisonf14df802008-07-02 11:05:35 -0700321 unsigned int hdrlen;
322 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Jiri Bencf0706e82007-05-05 11:45:53 -0700323
Harvey Harrisonf14df802008-07-02 11:05:35 -0700324 /*
Jouni Malinenfb733332009-01-08 13:32:00 +0200325 * Mask FC: zero subtype b4 b5 b6 (if not mgmt)
Harvey Harrisonf14df802008-07-02 11:05:35 -0700326 * Retry, PwrMgt, MoreData; set Protected
327 */
Jouni Malinenfb733332009-01-08 13:32:00 +0200328 mgmt = ieee80211_is_mgmt(hdr->frame_control);
Harvey Harrisonf14df802008-07-02 11:05:35 -0700329 mask_fc = hdr->frame_control;
Jouni Malinenfb733332009-01-08 13:32:00 +0200330 mask_fc &= ~cpu_to_le16(IEEE80211_FCTL_RETRY |
Harvey Harrisonf14df802008-07-02 11:05:35 -0700331 IEEE80211_FCTL_PM | IEEE80211_FCTL_MOREDATA);
Jouni Malinenfb733332009-01-08 13:32:00 +0200332 if (!mgmt)
333 mask_fc &= ~cpu_to_le16(0x0070);
Harvey Harrisonf14df802008-07-02 11:05:35 -0700334 mask_fc |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
Jiri Bencf0706e82007-05-05 11:45:53 -0700335
Harvey Harrisonf14df802008-07-02 11:05:35 -0700336 hdrlen = ieee80211_hdrlen(hdr->frame_control);
337 len_a = hdrlen - 2;
338 a4_included = ieee80211_has_a4(hdr->frame_control);
339
340 if (ieee80211_is_data_qos(hdr->frame_control))
Sara Sharona1f2ba04c2018-02-19 14:48:40 +0200341 qos_tid = ieee80211_get_tid(hdr);
Harvey Harrisonf14df802008-07-02 11:05:35 -0700342 else
343 qos_tid = 0;
344
Ard Biesheuvel7ec7c4a2013-10-10 09:55:20 +0200345 /* In CCM, the initial vectors (IV) used for CTR mode encryption and CBC
346 * mode authentication are not allowed to collide, yet both are derived
347 * from this vector b_0. We only set L := 1 here to indicate that the
348 * data size can be represented in (L+1) bytes. The CCM layer will take
349 * care of storing the data length in the top (L+1) bytes and setting
350 * and clearing the other bits as is required to derive the two IVs.
351 */
352 b_0[0] = 0x1;
Harvey Harrisonf14df802008-07-02 11:05:35 -0700353
Jouni Malinenfb733332009-01-08 13:32:00 +0200354 /* Nonce: Nonce Flags | A2 | PN
355 * Nonce Flags: Priority (b0..b3) | Management (b4) | Reserved (b5..b7)
356 */
357 b_0[1] = qos_tid | (mgmt << 4);
Harvey Harrison73e1f7c2008-07-02 11:05:34 -0700358 memcpy(&b_0[2], hdr->addr2, ETH_ALEN);
Johannes Berg4325f6c2013-05-08 13:09:08 +0200359 memcpy(&b_0[8], pn, IEEE80211_CCMP_PN_LEN);
Jiri Bencf0706e82007-05-05 11:45:53 -0700360
361 /* AAD (extra authenticate-only data) / masked 802.11 header
362 * FC | A1 | A2 | A3 | SC | [A4] | [QC] */
Harvey Harrisonf14df802008-07-02 11:05:35 -0700363 put_unaligned_be16(len_a, &aad[0]);
364 put_unaligned(mask_fc, (__le16 *)&aad[2]);
Harvey Harrison73e1f7c2008-07-02 11:05:34 -0700365 memcpy(&aad[4], &hdr->addr1, 3 * ETH_ALEN);
Jiri Bencf0706e82007-05-05 11:45:53 -0700366
367 /* Mask Seq#, leave Frag# */
368 aad[22] = *((u8 *) &hdr->seq_ctrl) & 0x0f;
369 aad[23] = 0;
Harvey Harrisonf14df802008-07-02 11:05:35 -0700370
Jiri Bencf0706e82007-05-05 11:45:53 -0700371 if (a4_included) {
Harvey Harrison73e1f7c2008-07-02 11:05:34 -0700372 memcpy(&aad[24], hdr->addr4, ETH_ALEN);
Harvey Harrisonf14df802008-07-02 11:05:35 -0700373 aad[30] = qos_tid;
Jiri Bencf0706e82007-05-05 11:45:53 -0700374 aad[31] = 0;
Harvey Harrisonf14df802008-07-02 11:05:35 -0700375 } else {
Harvey Harrison73e1f7c2008-07-02 11:05:34 -0700376 memset(&aad[24], 0, ETH_ALEN + IEEE80211_QOS_CTL_LEN);
Harvey Harrisonf14df802008-07-02 11:05:35 -0700377 aad[24] = qos_tid;
Jiri Bencf0706e82007-05-05 11:45:53 -0700378 }
379}
380
381
382static inline void ccmp_pn2hdr(u8 *hdr, u8 *pn, int key_id)
383{
384 hdr[0] = pn[5];
385 hdr[1] = pn[4];
386 hdr[2] = 0;
387 hdr[3] = 0x20 | (key_id << 6);
388 hdr[4] = pn[3];
389 hdr[5] = pn[2];
390 hdr[6] = pn[1];
391 hdr[7] = pn[0];
392}
393
394
Johannes Bergc6a1fa12008-10-07 12:04:32 +0200395static inline void ccmp_hdr2pn(u8 *pn, u8 *hdr)
Jiri Bencf0706e82007-05-05 11:45:53 -0700396{
397 pn[0] = hdr[7];
398 pn[1] = hdr[6];
399 pn[2] = hdr[5];
400 pn[3] = hdr[4];
401 pn[4] = hdr[1];
402 pn[5] = hdr[0];
Jiri Bencf0706e82007-05-05 11:45:53 -0700403}
404
405
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200406static int ccmp_encrypt_skb(struct ieee80211_tx_data *tx, struct sk_buff *skb,
407 unsigned int mic_len)
Jiri Bencf0706e82007-05-05 11:45:53 -0700408{
409 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
410 struct ieee80211_key *key = tx->key;
Johannes Berge039fa42008-05-15 12:55:29 +0200411 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg23c07522008-05-29 10:38:53 +0200412 int hdrlen, len, tail;
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200413 u8 *pos;
414 u8 pn[6];
415 u64 pn64;
Ard Biesheuvelf4a067f2016-10-17 15:05:33 +0100416 u8 aad[CCM_AAD_LEN];
Ard Biesheuvel7ec7c4a2013-10-10 09:55:20 +0200417 u8 b_0[AES_BLOCK_SIZE];
Jouni Malinen1f7d77a2009-01-08 13:32:10 +0200418
Johannes Berg813d7662010-01-17 01:47:58 +0100419 if (info->control.hw_key &&
Arik Nemtsov077a9152011-10-23 08:21:41 +0200420 !(info->control.hw_key->flags & IEEE80211_KEY_FLAG_GENERATE_IV) &&
Marek Kwaczynski17d38fa2014-04-14 11:27:21 +0200421 !(info->control.hw_key->flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE) &&
422 !((info->control.hw_key->flags &
423 IEEE80211_KEY_FLAG_GENERATE_IV_MGMT) &&
424 ieee80211_is_mgmt(hdr->frame_control))) {
Johannes Berg813d7662010-01-17 01:47:58 +0100425 /*
426 * hwaccel has no need for preallocated room for CCMP
427 * header or MIC fields
428 */
Johannes Berg23c07522008-05-29 10:38:53 +0200429 return 0;
Johannes Berge039fa42008-05-15 12:55:29 +0200430 }
431
Harvey Harrisond5184ca2008-06-11 14:21:58 -0700432 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Jiri Bencf0706e82007-05-05 11:45:53 -0700433 len = skb->len - hdrlen;
434
Johannes Berg813d7662010-01-17 01:47:58 +0100435 if (info->control.hw_key)
Johannes Berg23c07522008-05-29 10:38:53 +0200436 tail = 0;
Johannes Berg11a843b2007-08-28 17:01:55 -0400437 else
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200438 tail = mic_len;
Jiri Bencf0706e82007-05-05 11:45:53 -0700439
Johannes Berg23c07522008-05-29 10:38:53 +0200440 if (WARN_ON(skb_tailroom(skb) < tail ||
Johannes Berg4325f6c2013-05-08 13:09:08 +0200441 skb_headroom(skb) < IEEE80211_CCMP_HDR_LEN))
Johannes Berg23c07522008-05-29 10:38:53 +0200442 return -1;
Jiri Bencf0706e82007-05-05 11:45:53 -0700443
Johannes Berg4325f6c2013-05-08 13:09:08 +0200444 pos = skb_push(skb, IEEE80211_CCMP_HDR_LEN);
445 memmove(pos, pos + IEEE80211_CCMP_HDR_LEN, hdrlen);
Arik Nemtsov077a9152011-10-23 08:21:41 +0200446
447 /* the HW only needs room for the IV, but not the actual IV */
Arik Nemtsove0830f72011-11-10 09:35:13 +0200448 if (info->control.hw_key &&
449 (info->control.hw_key->flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE))
Arik Nemtsov077a9152011-10-23 08:21:41 +0200450 return 0;
451
Jiri Bencf0706e82007-05-05 11:45:53 -0700452 pos += hdrlen;
453
Johannes Bergdb388a52015-06-01 15:36:51 +0200454 pn64 = atomic64_inc_return(&key->conf.tx_pn);
Jiri Bencf0706e82007-05-05 11:45:53 -0700455
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200456 pn[5] = pn64;
457 pn[4] = pn64 >> 8;
458 pn[3] = pn64 >> 16;
459 pn[2] = pn64 >> 24;
460 pn[1] = pn64 >> 32;
461 pn[0] = pn64 >> 40;
Jiri Bencf0706e82007-05-05 11:45:53 -0700462
Johannes Berg8f20fc22007-08-28 17:01:54 -0400463 ccmp_pn2hdr(pos, pn, key->conf.keyidx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700464
Johannes Berg813d7662010-01-17 01:47:58 +0100465 /* hwaccel - with software CCMP header */
466 if (info->control.hw_key)
Jiri Bencf0706e82007-05-05 11:45:53 -0700467 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700468
Johannes Berg4325f6c2013-05-08 13:09:08 +0200469 pos += IEEE80211_CCMP_HDR_LEN;
Ard Biesheuvel30ef7ef2014-01-16 12:16:30 +0100470 ccmp_special_blocks(skb, pn, b_0, aad);
Ard Biesheuvelf4a067f2016-10-17 15:05:33 +0100471 return ieee80211_aes_ccm_encrypt(key->u.ccmp.tfm, b_0, aad, pos, len,
Xiang Gao4133da72017-10-10 22:31:49 -0400472 skb_put(skb, mic_len));
Jiri Bencf0706e82007-05-05 11:45:53 -0700473}
474
475
Johannes Berg9ae54c82008-01-31 19:48:20 +0100476ieee80211_tx_result
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200477ieee80211_crypto_ccmp_encrypt(struct ieee80211_tx_data *tx,
478 unsigned int mic_len)
Jiri Bencf0706e82007-05-05 11:45:53 -0700479{
Johannes Berg252b86c2011-11-16 15:28:55 +0100480 struct sk_buff *skb;
Jiri Bencf0706e82007-05-05 11:45:53 -0700481
Johannes Berg5cf121c2008-02-25 16:27:43 +0100482 ieee80211_tx_set_protected(tx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700483
Johannes Berg252b86c2011-11-16 15:28:55 +0100484 skb_queue_walk(&tx->skbs, skb) {
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200485 if (ccmp_encrypt_skb(tx, skb, mic_len) < 0)
Johannes Berg2de8e0d2009-03-23 17:28:35 +0100486 return TX_DROP;
Johannes Berg252b86c2011-11-16 15:28:55 +0100487 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700488
Johannes Berg9ae54c82008-01-31 19:48:20 +0100489 return TX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700490}
491
492
Johannes Berg9ae54c82008-01-31 19:48:20 +0100493ieee80211_rx_result
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200494ieee80211_crypto_ccmp_decrypt(struct ieee80211_rx_data *rx,
495 unsigned int mic_len)
Jiri Bencf0706e82007-05-05 11:45:53 -0700496{
Harvey Harrisonc34498b2008-07-02 16:30:52 -0700497 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Jiri Bencf0706e82007-05-05 11:45:53 -0700498 int hdrlen;
499 struct ieee80211_key *key = rx->key;
500 struct sk_buff *skb = rx->skb;
Johannes Bergeb9fb5b82009-11-16 13:58:20 +0100501 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg4325f6c2013-05-08 13:09:08 +0200502 u8 pn[IEEE80211_CCMP_PN_LEN];
Jiri Bencf0706e82007-05-05 11:45:53 -0700503 int data_len;
Jouni Malinen91902522010-06-11 10:27:33 -0700504 int queue;
Jiri Bencf0706e82007-05-05 11:45:53 -0700505
Harvey Harrisond5184ca2008-06-11 14:21:58 -0700506 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Jiri Bencf0706e82007-05-05 11:45:53 -0700507
Jouni Malinenfb733332009-01-08 13:32:00 +0200508 if (!ieee80211_is_data(hdr->frame_control) &&
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100509 !ieee80211_is_robust_mgmt_frame(skb))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100510 return RX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700511
Johannes Berga8286912012-03-12 13:49:14 +0100512 if (status->flag & RX_FLAG_DECRYPTED) {
Johannes Berg4325f6c2013-05-08 13:09:08 +0200513 if (!pskb_may_pull(rx->skb, hdrlen + IEEE80211_CCMP_HDR_LEN))
Johannes Berga8286912012-03-12 13:49:14 +0100514 return RX_DROP_UNUSABLE;
Sara Sharonf980ebc2016-02-24 11:49:45 +0200515 if (status->flag & RX_FLAG_MIC_STRIPPED)
516 mic_len = 0;
Johannes Berga8286912012-03-12 13:49:14 +0100517 } else {
518 if (skb_linearize(rx->skb))
519 return RX_DROP_UNUSABLE;
520 }
521
Johannes Berg94513062021-09-27 11:58:39 +0200522 /* reload hdr - skb might have been reallocated */
523 hdr = (void *)rx->skb->data;
524
Sara Sharonf980ebc2016-02-24 11:49:45 +0200525 data_len = skb->len - hdrlen - IEEE80211_CCMP_HDR_LEN - mic_len;
526 if (!rx->sta || data_len < 0)
527 return RX_DROP_UNUSABLE;
528
Johannes Berg981d94a2015-06-12 14:39:02 +0200529 if (!(status->flag & RX_FLAG_PN_VALIDATED)) {
Sara Sharonf631a772016-05-03 15:59:44 +0300530 int res;
531
Johannes Berg981d94a2015-06-12 14:39:02 +0200532 ccmp_hdr2pn(pn, skb->data + hdrlen);
Jiri Bencf0706e82007-05-05 11:45:53 -0700533
Johannes Berg981d94a2015-06-12 14:39:02 +0200534 queue = rx->security_idx;
Jouni Malinen91902522010-06-11 10:27:33 -0700535
Sara Sharonf631a772016-05-03 15:59:44 +0300536 res = memcmp(pn, key->u.ccmp.rx_pn[queue],
537 IEEE80211_CCMP_PN_LEN);
538 if (res < 0 ||
539 (!res && !(status->flag & RX_FLAG_ALLOW_SAME_PN))) {
Johannes Berg981d94a2015-06-12 14:39:02 +0200540 key->u.ccmp.replays++;
Johannes Berge4c26ad2008-01-31 19:48:21 +0100541 return RX_DROP_UNUSABLE;
Johannes Berg981d94a2015-06-12 14:39:02 +0200542 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700543
Johannes Berg981d94a2015-06-12 14:39:02 +0200544 if (!(status->flag & RX_FLAG_DECRYPTED)) {
545 u8 aad[2 * AES_BLOCK_SIZE];
546 u8 b_0[AES_BLOCK_SIZE];
547 /* hardware didn't decrypt/verify MIC */
548 ccmp_special_blocks(skb, pn, b_0, aad);
549
550 if (ieee80211_aes_ccm_decrypt(
551 key->u.ccmp.tfm, b_0, aad,
552 skb->data + hdrlen + IEEE80211_CCMP_HDR_LEN,
553 data_len,
Xiang Gao4133da72017-10-10 22:31:49 -0400554 skb->data + skb->len - mic_len))
Johannes Berg981d94a2015-06-12 14:39:02 +0200555 return RX_DROP_UNUSABLE;
556 }
557
558 memcpy(key->u.ccmp.rx_pn[queue], pn, IEEE80211_CCMP_PN_LEN);
Johannes Bergbf30ca92021-05-11 20:02:48 +0200559 if (unlikely(ieee80211_is_frag(hdr)))
560 memcpy(rx->ccm_gcm.pn, pn, IEEE80211_CCMP_PN_LEN);
Johannes Berg981d94a2015-06-12 14:39:02 +0200561 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700562
563 /* Remove CCMP header and MIC */
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200564 if (pskb_trim(skb, skb->len - mic_len))
Johannes Berga8286912012-03-12 13:49:14 +0100565 return RX_DROP_UNUSABLE;
Johannes Berg4325f6c2013-05-08 13:09:08 +0200566 memmove(skb->data + IEEE80211_CCMP_HDR_LEN, skb->data, hdrlen);
567 skb_pull(skb, IEEE80211_CCMP_HDR_LEN);
Jiri Bencf0706e82007-05-05 11:45:53 -0700568
Johannes Berg9ae54c82008-01-31 19:48:20 +0100569 return RX_CONTINUE;
Jiri Bencf0706e82007-05-05 11:45:53 -0700570}
Jouni Malinen765cb462009-01-08 13:32:01 +0200571
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200572static void gcmp_special_blocks(struct sk_buff *skb, u8 *pn, u8 *j_0, u8 *aad)
573{
574 __le16 mask_fc;
575 u8 qos_tid;
576 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
577
578 memcpy(j_0, hdr->addr2, ETH_ALEN);
579 memcpy(&j_0[ETH_ALEN], pn, IEEE80211_GCMP_PN_LEN);
580 j_0[13] = 0;
581 j_0[14] = 0;
582 j_0[AES_BLOCK_SIZE - 1] = 0x01;
583
584 /* AAD (extra authenticate-only data) / masked 802.11 header
585 * FC | A1 | A2 | A3 | SC | [A4] | [QC]
586 */
587 put_unaligned_be16(ieee80211_hdrlen(hdr->frame_control) - 2, &aad[0]);
588 /* Mask FC: zero subtype b4 b5 b6 (if not mgmt)
589 * Retry, PwrMgt, MoreData; set Protected
590 */
591 mask_fc = hdr->frame_control;
592 mask_fc &= ~cpu_to_le16(IEEE80211_FCTL_RETRY |
593 IEEE80211_FCTL_PM | IEEE80211_FCTL_MOREDATA);
594 if (!ieee80211_is_mgmt(hdr->frame_control))
595 mask_fc &= ~cpu_to_le16(0x0070);
596 mask_fc |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
597
598 put_unaligned(mask_fc, (__le16 *)&aad[2]);
599 memcpy(&aad[4], &hdr->addr1, 3 * ETH_ALEN);
600
601 /* Mask Seq#, leave Frag# */
602 aad[22] = *((u8 *)&hdr->seq_ctrl) & 0x0f;
603 aad[23] = 0;
604
605 if (ieee80211_is_data_qos(hdr->frame_control))
Sara Sharona1f2ba04c2018-02-19 14:48:40 +0200606 qos_tid = ieee80211_get_tid(hdr);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200607 else
608 qos_tid = 0;
609
610 if (ieee80211_has_a4(hdr->frame_control)) {
611 memcpy(&aad[24], hdr->addr4, ETH_ALEN);
612 aad[30] = qos_tid;
613 aad[31] = 0;
614 } else {
615 memset(&aad[24], 0, ETH_ALEN + IEEE80211_QOS_CTL_LEN);
616 aad[24] = qos_tid;
617 }
618}
619
620static inline void gcmp_pn2hdr(u8 *hdr, const u8 *pn, int key_id)
621{
622 hdr[0] = pn[5];
623 hdr[1] = pn[4];
624 hdr[2] = 0;
625 hdr[3] = 0x20 | (key_id << 6);
626 hdr[4] = pn[3];
627 hdr[5] = pn[2];
628 hdr[6] = pn[1];
629 hdr[7] = pn[0];
630}
631
632static inline void gcmp_hdr2pn(u8 *pn, const u8 *hdr)
633{
634 pn[0] = hdr[7];
635 pn[1] = hdr[6];
636 pn[2] = hdr[5];
637 pn[3] = hdr[4];
638 pn[4] = hdr[1];
639 pn[5] = hdr[0];
640}
641
642static int gcmp_encrypt_skb(struct ieee80211_tx_data *tx, struct sk_buff *skb)
643{
644 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
645 struct ieee80211_key *key = tx->key;
646 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
647 int hdrlen, len, tail;
648 u8 *pos;
649 u8 pn[6];
650 u64 pn64;
Ard Biesheuvelf4a067f2016-10-17 15:05:33 +0100651 u8 aad[GCM_AAD_LEN];
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200652 u8 j_0[AES_BLOCK_SIZE];
653
654 if (info->control.hw_key &&
655 !(info->control.hw_key->flags & IEEE80211_KEY_FLAG_GENERATE_IV) &&
656 !(info->control.hw_key->flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE) &&
657 !((info->control.hw_key->flags &
658 IEEE80211_KEY_FLAG_GENERATE_IV_MGMT) &&
659 ieee80211_is_mgmt(hdr->frame_control))) {
660 /* hwaccel has no need for preallocated room for GCMP
661 * header or MIC fields
662 */
663 return 0;
664 }
665
666 hdrlen = ieee80211_hdrlen(hdr->frame_control);
667 len = skb->len - hdrlen;
668
669 if (info->control.hw_key)
670 tail = 0;
671 else
672 tail = IEEE80211_GCMP_MIC_LEN;
673
674 if (WARN_ON(skb_tailroom(skb) < tail ||
675 skb_headroom(skb) < IEEE80211_GCMP_HDR_LEN))
676 return -1;
677
678 pos = skb_push(skb, IEEE80211_GCMP_HDR_LEN);
679 memmove(pos, pos + IEEE80211_GCMP_HDR_LEN, hdrlen);
680 skb_set_network_header(skb, skb_network_offset(skb) +
681 IEEE80211_GCMP_HDR_LEN);
682
683 /* the HW only needs room for the IV, but not the actual IV */
684 if (info->control.hw_key &&
685 (info->control.hw_key->flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE))
686 return 0;
687
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200688 pos += hdrlen;
689
Johannes Bergdb388a52015-06-01 15:36:51 +0200690 pn64 = atomic64_inc_return(&key->conf.tx_pn);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200691
692 pn[5] = pn64;
693 pn[4] = pn64 >> 8;
694 pn[3] = pn64 >> 16;
695 pn[2] = pn64 >> 24;
696 pn[1] = pn64 >> 32;
697 pn[0] = pn64 >> 40;
698
699 gcmp_pn2hdr(pos, pn, key->conf.keyidx);
700
701 /* hwaccel - with software GCMP header */
702 if (info->control.hw_key)
703 return 0;
704
705 pos += IEEE80211_GCMP_HDR_LEN;
706 gcmp_special_blocks(skb, pn, j_0, aad);
Ard Biesheuvelf4a067f2016-10-17 15:05:33 +0100707 return ieee80211_aes_gcm_encrypt(key->u.gcmp.tfm, j_0, aad, pos, len,
708 skb_put(skb, IEEE80211_GCMP_MIC_LEN));
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200709}
710
711ieee80211_tx_result
712ieee80211_crypto_gcmp_encrypt(struct ieee80211_tx_data *tx)
713{
714 struct sk_buff *skb;
715
716 ieee80211_tx_set_protected(tx);
717
718 skb_queue_walk(&tx->skbs, skb) {
719 if (gcmp_encrypt_skb(tx, skb) < 0)
720 return TX_DROP;
721 }
722
723 return TX_CONTINUE;
724}
725
726ieee80211_rx_result
727ieee80211_crypto_gcmp_decrypt(struct ieee80211_rx_data *rx)
728{
729 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
730 int hdrlen;
731 struct ieee80211_key *key = rx->key;
732 struct sk_buff *skb = rx->skb;
733 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
734 u8 pn[IEEE80211_GCMP_PN_LEN];
Sara Sharonf980ebc2016-02-24 11:49:45 +0200735 int data_len, queue, mic_len = IEEE80211_GCMP_MIC_LEN;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200736
737 hdrlen = ieee80211_hdrlen(hdr->frame_control);
738
739 if (!ieee80211_is_data(hdr->frame_control) &&
740 !ieee80211_is_robust_mgmt_frame(skb))
741 return RX_CONTINUE;
742
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200743 if (status->flag & RX_FLAG_DECRYPTED) {
744 if (!pskb_may_pull(rx->skb, hdrlen + IEEE80211_GCMP_HDR_LEN))
745 return RX_DROP_UNUSABLE;
Sara Sharonf980ebc2016-02-24 11:49:45 +0200746 if (status->flag & RX_FLAG_MIC_STRIPPED)
747 mic_len = 0;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200748 } else {
749 if (skb_linearize(rx->skb))
750 return RX_DROP_UNUSABLE;
751 }
752
Johannes Berg94513062021-09-27 11:58:39 +0200753 /* reload hdr - skb might have been reallocated */
754 hdr = (void *)rx->skb->data;
755
Sara Sharonf980ebc2016-02-24 11:49:45 +0200756 data_len = skb->len - hdrlen - IEEE80211_GCMP_HDR_LEN - mic_len;
757 if (!rx->sta || data_len < 0)
758 return RX_DROP_UNUSABLE;
759
Johannes Berg981d94a2015-06-12 14:39:02 +0200760 if (!(status->flag & RX_FLAG_PN_VALIDATED)) {
Sara Sharonf631a772016-05-03 15:59:44 +0300761 int res;
762
Johannes Berg981d94a2015-06-12 14:39:02 +0200763 gcmp_hdr2pn(pn, skb->data + hdrlen);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200764
Johannes Berg981d94a2015-06-12 14:39:02 +0200765 queue = rx->security_idx;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200766
Sara Sharonf631a772016-05-03 15:59:44 +0300767 res = memcmp(pn, key->u.gcmp.rx_pn[queue],
768 IEEE80211_GCMP_PN_LEN);
769 if (res < 0 ||
770 (!res && !(status->flag & RX_FLAG_ALLOW_SAME_PN))) {
Johannes Berg981d94a2015-06-12 14:39:02 +0200771 key->u.gcmp.replays++;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200772 return RX_DROP_UNUSABLE;
Johannes Berg981d94a2015-06-12 14:39:02 +0200773 }
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200774
Johannes Berg981d94a2015-06-12 14:39:02 +0200775 if (!(status->flag & RX_FLAG_DECRYPTED)) {
776 u8 aad[2 * AES_BLOCK_SIZE];
777 u8 j_0[AES_BLOCK_SIZE];
778 /* hardware didn't decrypt/verify MIC */
779 gcmp_special_blocks(skb, pn, j_0, aad);
780
781 if (ieee80211_aes_gcm_decrypt(
782 key->u.gcmp.tfm, j_0, aad,
783 skb->data + hdrlen + IEEE80211_GCMP_HDR_LEN,
784 data_len,
785 skb->data + skb->len -
786 IEEE80211_GCMP_MIC_LEN))
787 return RX_DROP_UNUSABLE;
788 }
789
790 memcpy(key->u.gcmp.rx_pn[queue], pn, IEEE80211_GCMP_PN_LEN);
Johannes Bergbf30ca92021-05-11 20:02:48 +0200791 if (unlikely(ieee80211_is_frag(hdr)))
792 memcpy(rx->ccm_gcm.pn, pn, IEEE80211_CCMP_PN_LEN);
Johannes Berg981d94a2015-06-12 14:39:02 +0200793 }
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200794
795 /* Remove GCMP header and MIC */
Sara Sharonf980ebc2016-02-24 11:49:45 +0200796 if (pskb_trim(skb, skb->len - mic_len))
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200797 return RX_DROP_UNUSABLE;
798 memmove(skb->data + IEEE80211_GCMP_HDR_LEN, skb->data, hdrlen);
799 skb_pull(skb, IEEE80211_GCMP_HDR_LEN);
800
801 return RX_CONTINUE;
802}
803
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200804static ieee80211_tx_result
805ieee80211_crypto_cs_encrypt(struct ieee80211_tx_data *tx,
806 struct sk_buff *skb)
807{
808 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
809 struct ieee80211_key *key = tx->key;
810 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200811 int hdrlen;
Cedric Izoardc7ef38e2015-03-17 10:47:33 +0000812 u8 *pos, iv_len = key->conf.iv_len;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200813
814 if (info->control.hw_key &&
815 !(info->control.hw_key->flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE)) {
816 /* hwaccel has no need for preallocated head room */
817 return TX_CONTINUE;
818 }
819
Cedric Izoardc7ef38e2015-03-17 10:47:33 +0000820 if (unlikely(skb_headroom(skb) < iv_len &&
821 pskb_expand_head(skb, iv_len, 0, GFP_ATOMIC)))
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200822 return TX_DROP;
823
824 hdrlen = ieee80211_hdrlen(hdr->frame_control);
825
Cedric Izoardc7ef38e2015-03-17 10:47:33 +0000826 pos = skb_push(skb, iv_len);
827 memmove(pos, pos + iv_len, hdrlen);
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200828
829 return TX_CONTINUE;
830}
831
832static inline int ieee80211_crypto_cs_pn_compare(u8 *pn1, u8 *pn2, int len)
833{
834 int i;
835
836 /* pn is little endian */
837 for (i = len - 1; i >= 0; i--) {
838 if (pn1[i] < pn2[i])
839 return -1;
840 else if (pn1[i] > pn2[i])
841 return 1;
842 }
843
844 return 0;
845}
846
847static ieee80211_rx_result
848ieee80211_crypto_cs_decrypt(struct ieee80211_rx_data *rx)
849{
850 struct ieee80211_key *key = rx->key;
851 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
852 const struct ieee80211_cipher_scheme *cs = NULL;
853 int hdrlen = ieee80211_hdrlen(hdr->frame_control);
854 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
855 int data_len;
856 u8 *rx_pn;
857 u8 *skb_pn;
858 u8 qos_tid;
859
860 if (!rx->sta || !rx->sta->cipher_scheme ||
861 !(status->flag & RX_FLAG_DECRYPTED))
862 return RX_DROP_UNUSABLE;
863
864 if (!ieee80211_is_data(hdr->frame_control))
865 return RX_CONTINUE;
866
867 cs = rx->sta->cipher_scheme;
868
869 data_len = rx->skb->len - hdrlen - cs->hdr_len;
870
871 if (data_len < 0)
872 return RX_DROP_UNUSABLE;
873
874 if (ieee80211_is_data_qos(hdr->frame_control))
Sara Sharona1f2ba04c2018-02-19 14:48:40 +0200875 qos_tid = ieee80211_get_tid(hdr);
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200876 else
877 qos_tid = 0;
878
879 if (skb_linearize(rx->skb))
880 return RX_DROP_UNUSABLE;
881
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200882 rx_pn = key->u.gen.rx_pn[qos_tid];
883 skb_pn = rx->skb->data + hdrlen + cs->pn_off;
884
885 if (ieee80211_crypto_cs_pn_compare(skb_pn, rx_pn, cs->pn_len) <= 0)
886 return RX_DROP_UNUSABLE;
887
888 memcpy(rx_pn, skb_pn, cs->pn_len);
889
890 /* remove security header and MIC */
891 if (pskb_trim(rx->skb, rx->skb->len - cs->mic_len))
892 return RX_DROP_UNUSABLE;
893
894 memmove(rx->skb->data + cs->hdr_len, rx->skb->data, hdrlen);
895 skb_pull(rx->skb, cs->hdr_len);
896
897 return RX_CONTINUE;
898}
Jouni Malinen765cb462009-01-08 13:32:01 +0200899
900static void bip_aad(struct sk_buff *skb, u8 *aad)
901{
Jouni Malinen33766362012-09-30 19:47:40 +0300902 __le16 mask_fc;
903 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
904
Jouni Malinen765cb462009-01-08 13:32:01 +0200905 /* BIP AAD: FC(masked) || A1 || A2 || A3 */
906
907 /* FC type/subtype */
Jouni Malinen765cb462009-01-08 13:32:01 +0200908 /* Mask FC Retry, PwrMgt, MoreData flags to zero */
Jouni Malinen33766362012-09-30 19:47:40 +0300909 mask_fc = hdr->frame_control;
910 mask_fc &= ~cpu_to_le16(IEEE80211_FCTL_RETRY | IEEE80211_FCTL_PM |
911 IEEE80211_FCTL_MOREDATA);
912 put_unaligned(mask_fc, (__le16 *) &aad[0]);
Jouni Malinen765cb462009-01-08 13:32:01 +0200913 /* A1 || A2 || A3 */
Jouni Malinen33766362012-09-30 19:47:40 +0300914 memcpy(aad + 2, &hdr->addr1, 3 * ETH_ALEN);
Jouni Malinen765cb462009-01-08 13:32:01 +0200915}
916
917
Johannes Berg75396ae2011-07-06 22:00:35 +0200918static inline void bip_ipn_set64(u8 *d, u64 pn)
919{
920 *d++ = pn;
921 *d++ = pn >> 8;
922 *d++ = pn >> 16;
923 *d++ = pn >> 24;
924 *d++ = pn >> 32;
925 *d = pn >> 40;
926}
927
Jouni Malinen765cb462009-01-08 13:32:01 +0200928static inline void bip_ipn_swap(u8 *d, const u8 *s)
929{
930 *d++ = s[5];
931 *d++ = s[4];
932 *d++ = s[3];
933 *d++ = s[2];
934 *d++ = s[1];
935 *d = s[0];
936}
937
938
939ieee80211_tx_result
940ieee80211_crypto_aes_cmac_encrypt(struct ieee80211_tx_data *tx)
941{
Johannes Berg252b86c2011-11-16 15:28:55 +0100942 struct sk_buff *skb;
943 struct ieee80211_tx_info *info;
Jouni Malinen765cb462009-01-08 13:32:01 +0200944 struct ieee80211_key *key = tx->key;
945 struct ieee80211_mmie *mmie;
Johannes Berg75396ae2011-07-06 22:00:35 +0200946 u8 aad[20];
947 u64 pn64;
Jouni Malinen765cb462009-01-08 13:32:01 +0200948
Johannes Berg252b86c2011-11-16 15:28:55 +0100949 if (WARN_ON(skb_queue_len(&tx->skbs) != 1))
950 return TX_DROP;
951
952 skb = skb_peek(&tx->skbs);
953
954 info = IEEE80211_SKB_CB(skb);
955
Lorenzo Bianconia0b44962019-07-16 00:09:19 +0200956 if (info->control.hw_key &&
957 !(key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIE))
Johannes Berg252b86c2011-11-16 15:28:55 +0100958 return TX_CONTINUE;
Jouni Malinen765cb462009-01-08 13:32:01 +0200959
960 if (WARN_ON(skb_tailroom(skb) < sizeof(*mmie)))
961 return TX_DROP;
962
Johannes Berg4df864c2017-06-16 14:29:21 +0200963 mmie = skb_put(skb, sizeof(*mmie));
Jouni Malinen765cb462009-01-08 13:32:01 +0200964 mmie->element_id = WLAN_EID_MMIE;
965 mmie->length = sizeof(*mmie) - 2;
966 mmie->key_id = cpu_to_le16(key->conf.keyidx);
967
968 /* PN = PN + 1 */
Johannes Bergdb388a52015-06-01 15:36:51 +0200969 pn64 = atomic64_inc_return(&key->conf.tx_pn);
Jouni Malinen765cb462009-01-08 13:32:01 +0200970
Johannes Berg75396ae2011-07-06 22:00:35 +0200971 bip_ipn_set64(mmie->sequence_number, pn64);
Jouni Malinen765cb462009-01-08 13:32:01 +0200972
Lorenzo Bianconia0b44962019-07-16 00:09:19 +0200973 if (info->control.hw_key)
974 return TX_CONTINUE;
975
Jouni Malinen765cb462009-01-08 13:32:01 +0200976 bip_aad(skb, aad);
977
978 /*
979 * MIC = AES-128-CMAC(IGTK, AAD || Management Frame Body || MMIE, 64)
980 */
Johannes Berg75396ae2011-07-06 22:00:35 +0200981 ieee80211_aes_cmac(key->u.aes_cmac.tfm, aad,
982 skb->data + 24, skb->len - 24, mmie->mic);
Jouni Malinen765cb462009-01-08 13:32:01 +0200983
984 return TX_CONTINUE;
985}
986
Jouni Malinen56c52da2015-01-24 19:52:08 +0200987ieee80211_tx_result
988ieee80211_crypto_aes_cmac_256_encrypt(struct ieee80211_tx_data *tx)
989{
990 struct sk_buff *skb;
991 struct ieee80211_tx_info *info;
992 struct ieee80211_key *key = tx->key;
993 struct ieee80211_mmie_16 *mmie;
994 u8 aad[20];
995 u64 pn64;
996
997 if (WARN_ON(skb_queue_len(&tx->skbs) != 1))
998 return TX_DROP;
999
1000 skb = skb_peek(&tx->skbs);
1001
1002 info = IEEE80211_SKB_CB(skb);
1003
1004 if (info->control.hw_key)
1005 return TX_CONTINUE;
1006
1007 if (WARN_ON(skb_tailroom(skb) < sizeof(*mmie)))
1008 return TX_DROP;
1009
Johannes Berg4df864c2017-06-16 14:29:21 +02001010 mmie = skb_put(skb, sizeof(*mmie));
Jouni Malinen56c52da2015-01-24 19:52:08 +02001011 mmie->element_id = WLAN_EID_MMIE;
1012 mmie->length = sizeof(*mmie) - 2;
1013 mmie->key_id = cpu_to_le16(key->conf.keyidx);
1014
1015 /* PN = PN + 1 */
Johannes Bergdb388a52015-06-01 15:36:51 +02001016 pn64 = atomic64_inc_return(&key->conf.tx_pn);
Jouni Malinen56c52da2015-01-24 19:52:08 +02001017
1018 bip_ipn_set64(mmie->sequence_number, pn64);
1019
1020 bip_aad(skb, aad);
1021
1022 /* MIC = AES-256-CMAC(IGTK, AAD || Management Frame Body || MMIE, 128)
1023 */
1024 ieee80211_aes_cmac_256(key->u.aes_cmac.tfm, aad,
1025 skb->data + 24, skb->len - 24, mmie->mic);
1026
1027 return TX_CONTINUE;
1028}
Jouni Malinen765cb462009-01-08 13:32:01 +02001029
1030ieee80211_rx_result
1031ieee80211_crypto_aes_cmac_decrypt(struct ieee80211_rx_data *rx)
1032{
1033 struct sk_buff *skb = rx->skb;
Johannes Bergeb9fb5b82009-11-16 13:58:20 +01001034 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Jouni Malinen765cb462009-01-08 13:32:01 +02001035 struct ieee80211_key *key = rx->key;
1036 struct ieee80211_mmie *mmie;
1037 u8 aad[20], mic[8], ipn[6];
1038 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1039
1040 if (!ieee80211_is_mgmt(hdr->frame_control))
1041 return RX_CONTINUE;
1042
Johannes Berga8286912012-03-12 13:49:14 +01001043 /* management frames are already linear */
1044
Jouni Malinen765cb462009-01-08 13:32:01 +02001045 if (skb->len < 24 + sizeof(*mmie))
1046 return RX_DROP_UNUSABLE;
1047
1048 mmie = (struct ieee80211_mmie *)
1049 (skb->data + skb->len - sizeof(*mmie));
1050 if (mmie->element_id != WLAN_EID_MMIE ||
1051 mmie->length != sizeof(*mmie) - 2)
1052 return RX_DROP_UNUSABLE; /* Invalid MMIE */
1053
1054 bip_ipn_swap(ipn, mmie->sequence_number);
1055
1056 if (memcmp(ipn, key->u.aes_cmac.rx_pn, 6) <= 0) {
1057 key->u.aes_cmac.replays++;
1058 return RX_DROP_UNUSABLE;
1059 }
1060
Johannes Bergeb9fb5b82009-11-16 13:58:20 +01001061 if (!(status->flag & RX_FLAG_DECRYPTED)) {
Jouni Malinen765cb462009-01-08 13:32:01 +02001062 /* hardware didn't decrypt/verify MIC */
1063 bip_aad(skb, aad);
Johannes Berg75396ae2011-07-06 22:00:35 +02001064 ieee80211_aes_cmac(key->u.aes_cmac.tfm, aad,
Jouni Malinen765cb462009-01-08 13:32:01 +02001065 skb->data + 24, skb->len - 24, mic);
Jason A. Donenfeld98c67d12017-06-10 04:59:12 +02001066 if (crypto_memneq(mic, mmie->mic, sizeof(mmie->mic))) {
Jouni Malinen765cb462009-01-08 13:32:01 +02001067 key->u.aes_cmac.icverrors++;
1068 return RX_DROP_UNUSABLE;
1069 }
1070 }
1071
1072 memcpy(key->u.aes_cmac.rx_pn, ipn, 6);
1073
1074 /* Remove MMIE */
1075 skb_trim(skb, skb->len - sizeof(*mmie));
1076
1077 return RX_CONTINUE;
1078}
Yoni Divinskyd32a1022012-01-16 15:18:59 +02001079
Jouni Malinen56c52da2015-01-24 19:52:08 +02001080ieee80211_rx_result
1081ieee80211_crypto_aes_cmac_256_decrypt(struct ieee80211_rx_data *rx)
1082{
1083 struct sk_buff *skb = rx->skb;
1084 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1085 struct ieee80211_key *key = rx->key;
1086 struct ieee80211_mmie_16 *mmie;
1087 u8 aad[20], mic[16], ipn[6];
1088 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1089
1090 if (!ieee80211_is_mgmt(hdr->frame_control))
1091 return RX_CONTINUE;
1092
1093 /* management frames are already linear */
1094
1095 if (skb->len < 24 + sizeof(*mmie))
1096 return RX_DROP_UNUSABLE;
1097
1098 mmie = (struct ieee80211_mmie_16 *)
1099 (skb->data + skb->len - sizeof(*mmie));
1100 if (mmie->element_id != WLAN_EID_MMIE ||
1101 mmie->length != sizeof(*mmie) - 2)
1102 return RX_DROP_UNUSABLE; /* Invalid MMIE */
1103
1104 bip_ipn_swap(ipn, mmie->sequence_number);
1105
1106 if (memcmp(ipn, key->u.aes_cmac.rx_pn, 6) <= 0) {
1107 key->u.aes_cmac.replays++;
1108 return RX_DROP_UNUSABLE;
1109 }
1110
1111 if (!(status->flag & RX_FLAG_DECRYPTED)) {
1112 /* hardware didn't decrypt/verify MIC */
1113 bip_aad(skb, aad);
1114 ieee80211_aes_cmac_256(key->u.aes_cmac.tfm, aad,
1115 skb->data + 24, skb->len - 24, mic);
Jason A. Donenfeld98c67d12017-06-10 04:59:12 +02001116 if (crypto_memneq(mic, mmie->mic, sizeof(mmie->mic))) {
Jouni Malinen56c52da2015-01-24 19:52:08 +02001117 key->u.aes_cmac.icverrors++;
1118 return RX_DROP_UNUSABLE;
1119 }
1120 }
1121
1122 memcpy(key->u.aes_cmac.rx_pn, ipn, 6);
1123
1124 /* Remove MMIE */
1125 skb_trim(skb, skb->len - sizeof(*mmie));
1126
1127 return RX_CONTINUE;
1128}
1129
Yoni Divinskyd32a1022012-01-16 15:18:59 +02001130ieee80211_tx_result
Jouni Malinen8ade5382015-01-24 19:52:09 +02001131ieee80211_crypto_aes_gmac_encrypt(struct ieee80211_tx_data *tx)
1132{
1133 struct sk_buff *skb;
1134 struct ieee80211_tx_info *info;
1135 struct ieee80211_key *key = tx->key;
1136 struct ieee80211_mmie_16 *mmie;
1137 struct ieee80211_hdr *hdr;
Ard Biesheuvelf4a067f2016-10-17 15:05:33 +01001138 u8 aad[GMAC_AAD_LEN];
Jouni Malinen8ade5382015-01-24 19:52:09 +02001139 u64 pn64;
Ard Biesheuvelf4a067f2016-10-17 15:05:33 +01001140 u8 nonce[GMAC_NONCE_LEN];
Jouni Malinen8ade5382015-01-24 19:52:09 +02001141
1142 if (WARN_ON(skb_queue_len(&tx->skbs) != 1))
1143 return TX_DROP;
1144
1145 skb = skb_peek(&tx->skbs);
1146
1147 info = IEEE80211_SKB_CB(skb);
1148
1149 if (info->control.hw_key)
1150 return TX_CONTINUE;
1151
1152 if (WARN_ON(skb_tailroom(skb) < sizeof(*mmie)))
1153 return TX_DROP;
1154
Johannes Berg4df864c2017-06-16 14:29:21 +02001155 mmie = skb_put(skb, sizeof(*mmie));
Jouni Malinen8ade5382015-01-24 19:52:09 +02001156 mmie->element_id = WLAN_EID_MMIE;
1157 mmie->length = sizeof(*mmie) - 2;
1158 mmie->key_id = cpu_to_le16(key->conf.keyidx);
1159
1160 /* PN = PN + 1 */
Johannes Bergdb388a52015-06-01 15:36:51 +02001161 pn64 = atomic64_inc_return(&key->conf.tx_pn);
Jouni Malinen8ade5382015-01-24 19:52:09 +02001162
1163 bip_ipn_set64(mmie->sequence_number, pn64);
1164
1165 bip_aad(skb, aad);
1166
1167 hdr = (struct ieee80211_hdr *)skb->data;
1168 memcpy(nonce, hdr->addr2, ETH_ALEN);
1169 bip_ipn_swap(nonce + ETH_ALEN, mmie->sequence_number);
1170
1171 /* MIC = AES-GMAC(IGTK, AAD || Management Frame Body || MMIE, 128) */
1172 if (ieee80211_aes_gmac(key->u.aes_gmac.tfm, aad, nonce,
1173 skb->data + 24, skb->len - 24, mmie->mic) < 0)
1174 return TX_DROP;
1175
1176 return TX_CONTINUE;
1177}
1178
1179ieee80211_rx_result
1180ieee80211_crypto_aes_gmac_decrypt(struct ieee80211_rx_data *rx)
1181{
1182 struct sk_buff *skb = rx->skb;
1183 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1184 struct ieee80211_key *key = rx->key;
1185 struct ieee80211_mmie_16 *mmie;
Jouni Malinena71fd9d2019-05-28 01:46:43 +03001186 u8 aad[GMAC_AAD_LEN], *mic, ipn[6], nonce[GMAC_NONCE_LEN];
Jouni Malinen8ade5382015-01-24 19:52:09 +02001187 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1188
1189 if (!ieee80211_is_mgmt(hdr->frame_control))
1190 return RX_CONTINUE;
1191
1192 /* management frames are already linear */
1193
1194 if (skb->len < 24 + sizeof(*mmie))
1195 return RX_DROP_UNUSABLE;
1196
1197 mmie = (struct ieee80211_mmie_16 *)
1198 (skb->data + skb->len - sizeof(*mmie));
1199 if (mmie->element_id != WLAN_EID_MMIE ||
1200 mmie->length != sizeof(*mmie) - 2)
1201 return RX_DROP_UNUSABLE; /* Invalid MMIE */
1202
1203 bip_ipn_swap(ipn, mmie->sequence_number);
1204
1205 if (memcmp(ipn, key->u.aes_gmac.rx_pn, 6) <= 0) {
1206 key->u.aes_gmac.replays++;
1207 return RX_DROP_UNUSABLE;
1208 }
1209
1210 if (!(status->flag & RX_FLAG_DECRYPTED)) {
1211 /* hardware didn't decrypt/verify MIC */
1212 bip_aad(skb, aad);
1213
1214 memcpy(nonce, hdr->addr2, ETH_ALEN);
1215 memcpy(nonce + ETH_ALEN, ipn, 6);
1216
Jouni Malinena71fd9d2019-05-28 01:46:43 +03001217 mic = kmalloc(GMAC_MIC_LEN, GFP_ATOMIC);
1218 if (!mic)
1219 return RX_DROP_UNUSABLE;
Jouni Malinen8ade5382015-01-24 19:52:09 +02001220 if (ieee80211_aes_gmac(key->u.aes_gmac.tfm, aad, nonce,
1221 skb->data + 24, skb->len - 24,
1222 mic) < 0 ||
Jason A. Donenfeld98c67d12017-06-10 04:59:12 +02001223 crypto_memneq(mic, mmie->mic, sizeof(mmie->mic))) {
Jouni Malinen8ade5382015-01-24 19:52:09 +02001224 key->u.aes_gmac.icverrors++;
Jouni Malinena71fd9d2019-05-28 01:46:43 +03001225 kfree(mic);
Jouni Malinen8ade5382015-01-24 19:52:09 +02001226 return RX_DROP_UNUSABLE;
1227 }
Jouni Malinena71fd9d2019-05-28 01:46:43 +03001228 kfree(mic);
Jouni Malinen8ade5382015-01-24 19:52:09 +02001229 }
1230
1231 memcpy(key->u.aes_gmac.rx_pn, ipn, 6);
1232
1233 /* Remove MMIE */
1234 skb_trim(skb, skb->len - sizeof(*mmie));
1235
1236 return RX_CONTINUE;
1237}
1238
1239ieee80211_tx_result
Yoni Divinskyd32a1022012-01-16 15:18:59 +02001240ieee80211_crypto_hw_encrypt(struct ieee80211_tx_data *tx)
1241{
1242 struct sk_buff *skb;
1243 struct ieee80211_tx_info *info = NULL;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001244 ieee80211_tx_result res;
Yoni Divinskyd32a1022012-01-16 15:18:59 +02001245
1246 skb_queue_walk(&tx->skbs, skb) {
1247 info = IEEE80211_SKB_CB(skb);
1248
1249 /* handle hw-only algorithm */
1250 if (!info->control.hw_key)
1251 return TX_DROP;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001252
Cedric Izoardc7ef38e2015-03-17 10:47:33 +00001253 if (tx->key->flags & KEY_FLAG_CIPHER_SCHEME) {
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001254 res = ieee80211_crypto_cs_encrypt(tx, skb);
1255 if (res != TX_CONTINUE)
1256 return res;
1257 }
Yoni Divinskyd32a1022012-01-16 15:18:59 +02001258 }
1259
1260 ieee80211_tx_set_protected(tx);
1261
1262 return TX_CONTINUE;
1263}
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001264
1265ieee80211_rx_result
1266ieee80211_crypto_hw_decrypt(struct ieee80211_rx_data *rx)
1267{
Max Stepanovaeb136c2014-07-09 16:55:32 +03001268 if (rx->sta && rx->sta->cipher_scheme)
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001269 return ieee80211_crypto_cs_decrypt(rx);
1270
1271 return RX_DROP_UNUSABLE;
1272}