rt2x00crypto.c 6.7 KB
Newer Older
I
Ivo van Doorn 已提交
1
/*
2
	Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
I
Ivo van Doorn 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15
	<http://rt2x00.serialmonkey.com>

	This program is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation; either version 2 of the License, or
	(at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
	GNU General Public License for more details.

	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/>.
I
Ivo van Doorn 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
 */

/*
	Module: rt2x00lib
	Abstract: rt2x00 crypto specific routines.
 */

#include <linux/kernel.h>
#include <linux/module.h>

#include "rt2x00.h"
#include "rt2x00lib.h"

enum cipher rt2x00crypto_key_to_cipher(struct ieee80211_key_conf *key)
{
32 33 34 35 36 37
	switch (key->cipher) {
	case WLAN_CIPHER_SUITE_WEP40:
		return CIPHER_WEP64;
	case WLAN_CIPHER_SUITE_WEP104:
		return CIPHER_WEP128;
	case WLAN_CIPHER_SUITE_TKIP:
I
Ivo van Doorn 已提交
38
		return CIPHER_TKIP;
39
	case WLAN_CIPHER_SUITE_CCMP:
I
Ivo van Doorn 已提交
40 41 42 43 44 45
		return CIPHER_AES;
	default:
		return CIPHER_NONE;
	}
}

46 47
void rt2x00crypto_create_tx_descriptor(struct rt2x00_dev *rt2x00dev,
				       struct sk_buff *skb,
48 49
				       struct txentry_desc *txdesc)
{
50
	struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
51 52
	struct ieee80211_key_conf *hw_key = tx_info->control.hw_key;

53
	if (!rt2x00_has_cap_hw_crypto(rt2x00dev) || !hw_key)
54 55
		return;

56 57 58 59 60 61 62 63
	__set_bit(ENTRY_TXD_ENCRYPT, &txdesc->flags);

	txdesc->cipher = rt2x00crypto_key_to_cipher(hw_key);

	if (hw_key->flags & IEEE80211_KEY_FLAG_PAIRWISE)
		__set_bit(ENTRY_TXD_ENCRYPT_PAIRWISE, &txdesc->flags);

	txdesc->key_idx = hw_key->hw_key_idx;
64
	txdesc->iv_offset = txdesc->header_length;
65
	txdesc->iv_len = hw_key->iv_len;
66 67 68 69 70 71 72 73

	if (!(hw_key->flags & IEEE80211_KEY_FLAG_GENERATE_IV))
		__set_bit(ENTRY_TXD_ENCRYPT_IV, &txdesc->flags);

	if (!(hw_key->flags & IEEE80211_KEY_FLAG_GENERATE_MMIC))
		__set_bit(ENTRY_TXD_ENCRYPT_MMIC, &txdesc->flags);
}

74 75
unsigned int rt2x00crypto_tx_overhead(struct rt2x00_dev *rt2x00dev,
				      struct sk_buff *skb)
I
Ivo van Doorn 已提交
76
{
77
	struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
I
Ivo van Doorn 已提交
78 79 80
	struct ieee80211_key_conf *key = tx_info->control.hw_key;
	unsigned int overhead = 0;

81
	if (!rt2x00_has_cap_hw_crypto(rt2x00dev) || !key)
82 83
		return overhead;

I
Ivo van Doorn 已提交
84 85 86 87 88
	/*
	 * Extend frame length to include IV/EIV/ICV/MMIC,
	 * note that these lengths should only be added when
	 * mac80211 does not generate it.
	 */
89
	overhead += key->icv_len;
I
Ivo van Doorn 已提交
90 91

	if (!(key->flags & IEEE80211_KEY_FLAG_GENERATE_IV))
92
		overhead += key->iv_len;
I
Ivo van Doorn 已提交
93 94

	if (!(key->flags & IEEE80211_KEY_FLAG_GENERATE_MMIC)) {
95
		if (key->cipher == WLAN_CIPHER_SUITE_TKIP)
I
Ivo van Doorn 已提交
96 97 98 99 100 101
			overhead += 8;
	}

	return overhead;
}

102
void rt2x00crypto_tx_copy_iv(struct sk_buff *skb, struct txentry_desc *txdesc)
103 104 105
{
	struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb);

106
	if (unlikely(!txdesc->iv_len))
107 108 109
		return;

	/* Copy IV/EIV data */
110
	memcpy(skbdesc->iv, skb->data + txdesc->iv_offset, txdesc->iv_len);
111 112
}

113
void rt2x00crypto_tx_remove_iv(struct sk_buff *skb, struct txentry_desc *txdesc)
I
Ivo van Doorn 已提交
114 115 116
{
	struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb);

117
	if (unlikely(!txdesc->iv_len))
I
Ivo van Doorn 已提交
118 119 120
		return;

	/* Copy IV/EIV data */
121
	memcpy(skbdesc->iv, skb->data + txdesc->iv_offset, txdesc->iv_len);
I
Ivo van Doorn 已提交
122 123

	/* Move ieee80211 header */
124
	memmove(skb->data + txdesc->iv_len, skb->data, txdesc->iv_offset);
I
Ivo van Doorn 已提交
125 126

	/* Pull buffer to correct size */
127
	skb_pull(skb, txdesc->iv_len);
128
	txdesc->length -= txdesc->iv_len;
I
Ivo van Doorn 已提交
129

L
Luis Correia 已提交
130
	/* IV/EIV data has officially been stripped */
131
	skbdesc->flags |= SKBDESC_IV_STRIPPED;
I
Ivo van Doorn 已提交
132 133
}

134
void rt2x00crypto_tx_insert_iv(struct sk_buff *skb, unsigned int header_length)
I
Ivo van Doorn 已提交
135 136 137
{
	struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb);
	const unsigned int iv_len =
I
Ivo van Doorn 已提交
138
	    ((!!(skbdesc->iv[0])) * 4) + ((!!(skbdesc->iv[1])) * 4);
I
Ivo van Doorn 已提交
139

140
	if (!(skbdesc->flags & SKBDESC_IV_STRIPPED))
I
Ivo van Doorn 已提交
141 142 143 144 145 146 147 148
		return;

	skb_push(skb, iv_len);

	/* Move ieee80211 header */
	memmove(skb->data, skb->data + iv_len, header_length);

	/* Copy IV/EIV data */
I
Ivo van Doorn 已提交
149
	memcpy(skb->data + header_length, skbdesc->iv, iv_len);
I
Ivo van Doorn 已提交
150 151

	/* IV/EIV data has returned into the frame */
152
	skbdesc->flags &= ~SKBDESC_IV_STRIPPED;
I
Ivo van Doorn 已提交
153 154
}

155
void rt2x00crypto_rx_insert_iv(struct sk_buff *skb,
I
Ivo van Doorn 已提交
156 157 158 159
			       unsigned int header_length,
			       struct rxdone_entry_desc *rxdesc)
{
	unsigned int payload_len = rxdesc->size - header_length;
160
	unsigned int align = ALIGN_SIZE(skb, header_length);
I
Ivo van Doorn 已提交
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
	unsigned int iv_len;
	unsigned int icv_len;
	unsigned int transfer = 0;

	/*
	 * WEP64/WEP128: Provides IV & ICV
	 * TKIP: Provides IV/EIV & ICV
	 * AES: Provies IV/EIV & ICV
	 */
	switch (rxdesc->cipher) {
	case CIPHER_WEP64:
	case CIPHER_WEP128:
		iv_len = 4;
		icv_len = 4;
		break;
	case CIPHER_TKIP:
		iv_len = 8;
		icv_len = 4;
		break;
	case CIPHER_AES:
		iv_len = 8;
		icv_len = 8;
		break;
	default:
		/* Unsupport type */
		return;
	}

	/*
190 191 192 193 194 195 196 197 198
	 * Make room for new data. There are 2 possibilities
	 * either the alignment is already present between
	 * the 802.11 header and payload. In that case we
	 * we have to move the header less then the iv_len
	 * since we can use the already available l2pad bytes
	 * for the iv data.
	 * When the alignment must be added manually we must
	 * move the header more then iv_len since we must
	 * make room for the payload move as well.
I
Ivo van Doorn 已提交
199
	 */
200
	if (rxdesc->dev_flags & RXDONE_L2PAD) {
201 202
		skb_push(skb, iv_len - align);
		skb_put(skb, icv_len);
I
Ivo van Doorn 已提交
203

204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
		/* Move ieee80211 header */
		memmove(skb->data + transfer,
			skb->data + transfer + (iv_len - align),
			header_length);
		transfer += header_length;
	} else {
		skb_push(skb, iv_len + align);
		if (align < icv_len)
			skb_put(skb, icv_len - align);
		else if (align > icv_len)
			skb_trim(skb, rxdesc->size + iv_len + icv_len);

		/* Move ieee80211 header */
		memmove(skb->data + transfer,
			skb->data + transfer + iv_len + align,
			header_length);
		transfer += header_length;
	}
I
Ivo van Doorn 已提交
222

I
Ivo van Doorn 已提交
223 224 225
	/* Copy IV/EIV data */
	memcpy(skb->data + transfer, rxdesc->iv, iv_len);
	transfer += iv_len;
I
Ivo van Doorn 已提交
226

227 228 229 230
	/*
	 * Move payload for alignment purposes. Note that
	 * this is only needed when no l2 padding is present.
	 */
231
	if (!(rxdesc->dev_flags & RXDONE_L2PAD)) {
I
Ivo van Doorn 已提交
232 233 234 235 236 237
		memmove(skb->data + transfer,
			skb->data + transfer + align,
			payload_len);
	}

	/*
L
Lucas De Marchi 已提交
238
	 * NOTE: Always count the payload as transferred,
I
Ivo van Doorn 已提交
239 240 241 242 243
	 * even when alignment was set to zero. This is required
	 * for determining the correct offset for the ICV data.
	 */
	transfer += payload_len;

I
Ivo van Doorn 已提交
244 245 246 247 248 249 250 251
	/*
	 * Copy ICV data
	 * AES appends 8 bytes, we can't fill the upper
	 * 4 bytes, but mac80211 doesn't care about what
	 * we provide here anyway and strips it immediately.
	 */
	memcpy(skb->data + transfer, &rxdesc->icv, 4);
	transfer += icv_len;
I
Ivo van Doorn 已提交
252 253 254 255 256

	/* IV/EIV/ICV has been inserted into frame */
	rxdesc->size = transfer;
	rxdesc->flags &= ~RX_FLAG_IV_STRIPPED;
}