2 Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
3 <http://rt2x00.serialmonkey.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, see <http://www.gnu.org/licenses/>.
21 Abstract: rt2x00 crypto specific routines.
24 #include <linux/kernel.h>
25 #include <linux/module.h>
28 #include "rt2x00lib.h"
30 enum cipher
rt2x00crypto_key_to_cipher(struct ieee80211_key_conf
*key
)
32 switch (key
->cipher
) {
33 case WLAN_CIPHER_SUITE_WEP40
:
35 case WLAN_CIPHER_SUITE_WEP104
:
37 case WLAN_CIPHER_SUITE_TKIP
:
39 case WLAN_CIPHER_SUITE_CCMP
:
46 void rt2x00crypto_create_tx_descriptor(struct rt2x00_dev
*rt2x00dev
,
48 struct txentry_desc
*txdesc
)
50 struct ieee80211_tx_info
*tx_info
= IEEE80211_SKB_CB(skb
);
51 struct ieee80211_key_conf
*hw_key
= tx_info
->control
.hw_key
;
53 if (!rt2x00_has_cap_hw_crypto(rt2x00dev
) || !hw_key
)
56 __set_bit(ENTRY_TXD_ENCRYPT
, &txdesc
->flags
);
58 txdesc
->cipher
= rt2x00crypto_key_to_cipher(hw_key
);
60 if (hw_key
->flags
& IEEE80211_KEY_FLAG_PAIRWISE
)
61 __set_bit(ENTRY_TXD_ENCRYPT_PAIRWISE
, &txdesc
->flags
);
63 txdesc
->key_idx
= hw_key
->hw_key_idx
;
64 txdesc
->iv_offset
= txdesc
->header_length
;
65 txdesc
->iv_len
= hw_key
->iv_len
;
67 if (!(hw_key
->flags
& IEEE80211_KEY_FLAG_GENERATE_IV
))
68 __set_bit(ENTRY_TXD_ENCRYPT_IV
, &txdesc
->flags
);
70 if (!(hw_key
->flags
& IEEE80211_KEY_FLAG_GENERATE_MMIC
))
71 __set_bit(ENTRY_TXD_ENCRYPT_MMIC
, &txdesc
->flags
);
74 unsigned int rt2x00crypto_tx_overhead(struct rt2x00_dev
*rt2x00dev
,
77 struct ieee80211_tx_info
*tx_info
= IEEE80211_SKB_CB(skb
);
78 struct ieee80211_key_conf
*key
= tx_info
->control
.hw_key
;
79 unsigned int overhead
= 0;
81 if (!rt2x00_has_cap_hw_crypto(rt2x00dev
) || !key
)
85 * Extend frame length to include IV/EIV/ICV/MMIC,
86 * note that these lengths should only be added when
87 * mac80211 does not generate it.
89 overhead
+= key
->icv_len
;
91 if (!(key
->flags
& IEEE80211_KEY_FLAG_GENERATE_IV
))
92 overhead
+= key
->iv_len
;
94 if (!(key
->flags
& IEEE80211_KEY_FLAG_GENERATE_MMIC
)) {
95 if (key
->cipher
== WLAN_CIPHER_SUITE_TKIP
)
102 void rt2x00crypto_tx_copy_iv(struct sk_buff
*skb
, struct txentry_desc
*txdesc
)
104 struct skb_frame_desc
*skbdesc
= get_skb_frame_desc(skb
);
106 if (unlikely(!txdesc
->iv_len
))
109 /* Copy IV/EIV data */
110 memcpy(skbdesc
->iv
, skb
->data
+ txdesc
->iv_offset
, txdesc
->iv_len
);
113 void rt2x00crypto_tx_remove_iv(struct sk_buff
*skb
, struct txentry_desc
*txdesc
)
115 struct skb_frame_desc
*skbdesc
= get_skb_frame_desc(skb
);
117 if (unlikely(!txdesc
->iv_len
))
120 /* Copy IV/EIV data */
121 memcpy(skbdesc
->iv
, skb
->data
+ txdesc
->iv_offset
, txdesc
->iv_len
);
123 /* Move ieee80211 header */
124 memmove(skb
->data
+ txdesc
->iv_len
, skb
->data
, txdesc
->iv_offset
);
126 /* Pull buffer to correct size */
127 skb_pull(skb
, txdesc
->iv_len
);
128 txdesc
->length
-= txdesc
->iv_len
;
130 /* IV/EIV data has officially been stripped */
131 skbdesc
->flags
|= SKBDESC_IV_STRIPPED
;
134 void rt2x00crypto_tx_insert_iv(struct sk_buff
*skb
, unsigned int header_length
)
136 struct skb_frame_desc
*skbdesc
= get_skb_frame_desc(skb
);
137 const unsigned int iv_len
=
138 ((!!(skbdesc
->iv
[0])) * 4) + ((!!(skbdesc
->iv
[1])) * 4);
140 if (!(skbdesc
->flags
& SKBDESC_IV_STRIPPED
))
143 skb_push(skb
, iv_len
);
145 /* Move ieee80211 header */
146 memmove(skb
->data
, skb
->data
+ iv_len
, header_length
);
148 /* Copy IV/EIV data */
149 memcpy(skb
->data
+ header_length
, skbdesc
->iv
, iv_len
);
151 /* IV/EIV data has returned into the frame */
152 skbdesc
->flags
&= ~SKBDESC_IV_STRIPPED
;
155 void rt2x00crypto_rx_insert_iv(struct sk_buff
*skb
,
156 unsigned int header_length
,
157 struct rxdone_entry_desc
*rxdesc
)
159 unsigned int payload_len
= rxdesc
->size
- header_length
;
160 unsigned int align
= ALIGN_SIZE(skb
, header_length
);
162 unsigned int icv_len
;
163 unsigned int transfer
= 0;
166 * WEP64/WEP128: Provides IV & ICV
167 * TKIP: Provides IV/EIV & ICV
168 * AES: Provies IV/EIV & ICV
170 switch (rxdesc
->cipher
) {
190 * Make room for new data. There are 2 possibilities
191 * either the alignment is already present between
192 * the 802.11 header and payload. In that case we
193 * we have to move the header less then the iv_len
194 * since we can use the already available l2pad bytes
196 * When the alignment must be added manually we must
197 * move the header more then iv_len since we must
198 * make room for the payload move as well.
200 if (rxdesc
->dev_flags
& RXDONE_L2PAD
) {
201 skb_push(skb
, iv_len
- align
);
202 skb_put(skb
, icv_len
);
204 /* Move ieee80211 header */
205 memmove(skb
->data
+ transfer
,
206 skb
->data
+ transfer
+ (iv_len
- align
),
208 transfer
+= header_length
;
210 skb_push(skb
, iv_len
+ align
);
212 skb_put(skb
, icv_len
- align
);
213 else if (align
> icv_len
)
214 skb_trim(skb
, rxdesc
->size
+ iv_len
+ icv_len
);
216 /* Move ieee80211 header */
217 memmove(skb
->data
+ transfer
,
218 skb
->data
+ transfer
+ iv_len
+ align
,
220 transfer
+= header_length
;
223 /* Copy IV/EIV data */
224 memcpy(skb
->data
+ transfer
, rxdesc
->iv
, iv_len
);
228 * Move payload for alignment purposes. Note that
229 * this is only needed when no l2 padding is present.
231 if (!(rxdesc
->dev_flags
& RXDONE_L2PAD
)) {
232 memmove(skb
->data
+ transfer
,
233 skb
->data
+ transfer
+ align
,
238 * NOTE: Always count the payload as transferred,
239 * even when alignment was set to zero. This is required
240 * for determining the correct offset for the ICV data.
242 transfer
+= payload_len
;
246 * AES appends 8 bytes, we can't fill the upper
247 * 4 bytes, but mac80211 doesn't care about what
248 * we provide here anyway and strips it immediately.
250 memcpy(skb
->data
+ transfer
, &rxdesc
->icv
, 4);
253 /* IV/EIV/ICV has been inserted into frame */
254 rxdesc
->size
= transfer
;
255 rxdesc
->flags
&= ~RX_FLAG_IV_STRIPPED
;