dect
/
linux-2.6
Archived
13
0
Fork 0

mac80211: tkip.c fold ieee80211_gen_rc4key into its one caller

Also change the arguments of the phase1, 2 key mixing to take
a pointer to the encrytion key and the tkip_ctx in the same
order.

Do the dereference of the encryption key in the callers.

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Harvey Harrison 2008-06-11 14:22:00 -07:00 committed by John W. Linville
parent c801242c38
commit 7c70537f97
1 changed files with 17 additions and 21 deletions

View File

@ -72,7 +72,6 @@ static u8 *write_tkip_iv(u8 *pos, u16 iv16)
return pos; return pos;
} }
/* /*
* P1K := Phase1(TA, TK, TSC) * P1K := Phase1(TA, TK, TSC)
* TA = transmitter address (48 bits) * TA = transmitter address (48 bits)
@ -80,11 +79,10 @@ static u8 *write_tkip_iv(u8 *pos, u16 iv16)
* TSC = TKIP sequence counter (48 bits, only 32 msb bits used) * TSC = TKIP sequence counter (48 bits, only 32 msb bits used)
* P1K: 80 bits * P1K: 80 bits
*/ */
static void tkip_mixing_phase1(struct ieee80211_key *key, const u8 *ta, static void tkip_mixing_phase1(const u8 *tk, struct tkip_ctx *ctx,
struct tkip_ctx *ctx, u32 tsc_IV32) const u8 *ta, u32 tsc_IV32)
{ {
int i, j; int i, j;
const u8 *tk = &key->conf.key[ALG_TKIP_TEMP_ENCR_KEY];
u16 *p1k = ctx->p1k; u16 *p1k = ctx->p1k;
p1k[0] = tsc_IV32 & 0xFFFF; p1k[0] = tsc_IV32 & 0xFFFF;
@ -104,12 +102,11 @@ static void tkip_mixing_phase1(struct ieee80211_key *key, const u8 *ta,
ctx->initialized = 1; ctx->initialized = 1;
} }
static void tkip_mixing_phase2(struct ieee80211_key *key, struct tkip_ctx *ctx, static void tkip_mixing_phase2(const u8 *tk, struct tkip_ctx *ctx,
u16 tsc_IV16, u8 *rc4key) u16 tsc_IV16, u8 *rc4key)
{ {
u16 ppk[6]; u16 ppk[6];
const u16 *p1k = ctx->p1k; const u16 *p1k = ctx->p1k;
const u8 *tk = &key->conf.key[ALG_TKIP_TEMP_ENCR_KEY];
int i; int i;
ppk[0] = p1k[0]; ppk[0] = p1k[0];
@ -150,16 +147,6 @@ u8 *ieee80211_tkip_add_iv(u8 *pos, struct ieee80211_key *key, u16 iv16)
return pos + 4; return pos + 4;
} }
static void ieee80211_tkip_gen_rc4key(struct ieee80211_key *key, u8 *ta,
u8 *rc4key)
{
/* Calculate per-packet key */
if (key->u.tkip.tx.iv16 == 0 || !key->u.tkip.tx.initialized)
tkip_mixing_phase1(key, ta, &key->u.tkip.tx, key->u.tkip.tx.iv32);
tkip_mixing_phase2(key, &key->u.tkip.tx, key->u.tkip.tx.iv16, rc4key);
}
void ieee80211_get_tkip_key(struct ieee80211_key_conf *keyconf, void ieee80211_get_tkip_key(struct ieee80211_key_conf *keyconf,
struct sk_buff *skb, enum ieee80211_tkip_key_type type, struct sk_buff *skb, enum ieee80211_tkip_key_type type,
u8 *outkey) u8 *outkey)
@ -170,6 +157,7 @@ void ieee80211_get_tkip_key(struct ieee80211_key_conf *keyconf,
u8 *data = (u8 *) hdr; u8 *data = (u8 *) hdr;
u16 fc = le16_to_cpu(hdr->frame_control); u16 fc = le16_to_cpu(hdr->frame_control);
int hdr_len = ieee80211_get_hdrlen(fc); int hdr_len = ieee80211_get_hdrlen(fc);
u8 *tk = &key->conf.key[ALG_TKIP_TEMP_ENCR_KEY];
u8 *ta = hdr->addr2; u8 *ta = hdr->addr2;
u16 iv16; u16 iv16;
u32 iv32; u32 iv32;
@ -193,14 +181,14 @@ void ieee80211_get_tkip_key(struct ieee80211_key_conf *keyconf,
* might occur after the wrap around of iv16 in the key in case of * might occur after the wrap around of iv16 in the key in case of
* fragmented packets. */ * fragmented packets. */
if (iv16 == 0 || !key->u.tkip.tx.initialized) if (iv16 == 0 || !key->u.tkip.tx.initialized)
tkip_mixing_phase1(key, ta, &key->u.tkip.tx, iv32); tkip_mixing_phase1(tk, &key->u.tkip.tx, ta, iv32);
if (type == IEEE80211_TKIP_P1_KEY) { if (type == IEEE80211_TKIP_P1_KEY) {
memcpy(outkey, key->u.tkip.tx.p1k, sizeof(u16) * 5); memcpy(outkey, key->u.tkip.tx.p1k, sizeof(u16) * 5);
return; return;
} }
tkip_mixing_phase2(key, &key->u.tkip.tx, iv16, outkey); tkip_mixing_phase2(tk, &key->u.tkip.tx, iv16, outkey);
} }
EXPORT_SYMBOL(ieee80211_get_tkip_key); EXPORT_SYMBOL(ieee80211_get_tkip_key);
@ -214,8 +202,15 @@ void ieee80211_tkip_encrypt_data(struct crypto_blkcipher *tfm,
u8 *pos, size_t payload_len, u8 *ta) u8 *pos, size_t payload_len, u8 *ta)
{ {
u8 rc4key[16]; u8 rc4key[16];
struct tkip_ctx *ctx = &key->u.tkip.tx;
const u8 *tk = &key->conf.key[ALG_TKIP_TEMP_ENCR_KEY];
/* Calculate per-packet key */
if (ctx->iv16 == 0 || !ctx->initialized)
tkip_mixing_phase1(tk, ctx, ta, ctx->iv32);
tkip_mixing_phase2(tk, ctx, ctx->iv16, rc4key);
ieee80211_tkip_gen_rc4key(key, ta, rc4key);
pos = ieee80211_tkip_add_iv(pos, key, key->u.tkip.tx.iv16); pos = ieee80211_tkip_add_iv(pos, key, key->u.tkip.tx.iv16);
ieee80211_wep_encrypt_data(tfm, rc4key, 16, pos, payload_len); ieee80211_wep_encrypt_data(tfm, rc4key, 16, pos, payload_len);
} }
@ -234,6 +229,7 @@ int ieee80211_tkip_decrypt_data(struct crypto_blkcipher *tfm,
u32 iv16; u32 iv16;
u8 rc4key[16], keyid, *pos = payload; u8 rc4key[16], keyid, *pos = payload;
int res; int res;
const u8 *tk = &key->conf.key[ALG_TKIP_TEMP_ENCR_KEY];
if (payload_len < 12) if (payload_len < 12)
return -1; return -1;
@ -284,7 +280,7 @@ int ieee80211_tkip_decrypt_data(struct crypto_blkcipher *tfm,
if (!key->u.tkip.rx[queue].initialized || if (!key->u.tkip.rx[queue].initialized ||
key->u.tkip.rx[queue].iv32 != iv32) { key->u.tkip.rx[queue].iv32 != iv32) {
/* IV16 wrapped around - perform TKIP phase 1 */ /* IV16 wrapped around - perform TKIP phase 1 */
tkip_mixing_phase1(key, ta, &key->u.tkip.rx[queue], iv32); tkip_mixing_phase1(tk, &key->u.tkip.rx[queue], ta, iv32);
#ifdef CONFIG_TKIP_DEBUG #ifdef CONFIG_TKIP_DEBUG
{ {
int i; int i;
@ -317,7 +313,7 @@ int ieee80211_tkip_decrypt_data(struct crypto_blkcipher *tfm,
} }
} }
tkip_mixing_phase2(key, &key->u.tkip.rx[queue], iv16, rc4key); tkip_mixing_phase2(tk, &key->u.tkip.rx[queue], iv16, rc4key);
#ifdef CONFIG_TKIP_DEBUG #ifdef CONFIG_TKIP_DEBUG
{ {
int i; int i;