diff options
author | Zhu Yi <yi.zhu@intel.com> | 2006-08-20 23:33:09 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2006-08-29 17:06:30 -0400 |
commit | b4328d87ec5711543b818fea2e1cf64f09d326f1 (patch) | |
tree | c458073bed1b554b0f1a64fc5cd27b16181e6c90 /net/ieee80211/ieee80211_crypt_tkip.c | |
parent | 051562f7e980b53f7bc6529f2e55b68e20f5d0e6 (diff) |
[PATCH] ieee80211: TKIP and CCMP replay check rework
Signed-off-by: Hong Liu <hong.liu@intel.com>
Signed-off-by: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/ieee80211/ieee80211_crypt_tkip.c')
-rw-r--r-- | net/ieee80211/ieee80211_crypt_tkip.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/net/ieee80211/ieee80211_crypt_tkip.c b/net/ieee80211/ieee80211_crypt_tkip.c index a61b09ef70f2..02abf2985b84 100644 --- a/net/ieee80211/ieee80211_crypt_tkip.c +++ b/net/ieee80211/ieee80211_crypt_tkip.c | |||
@@ -360,6 +360,19 @@ static int ieee80211_tkip_encrypt(struct sk_buff *skb, int hdr_len, void *priv) | |||
360 | return 0; | 360 | return 0; |
361 | } | 361 | } |
362 | 362 | ||
363 | /* | ||
364 | * deal with seq counter wrapping correctly. | ||
365 | * refer to timer_after() for jiffies wrapping handling | ||
366 | */ | ||
367 | static inline int tkip_replay_check(u32 iv32_n, u16 iv16_n, | ||
368 | u32 iv32_o, u16 iv16_o) | ||
369 | { | ||
370 | if ((s32)iv32_n - (s32)iv32_o < 0 || | ||
371 | (iv32_n == iv32_o && iv16_n <= iv16_o)) | ||
372 | return 1; | ||
373 | return 0; | ||
374 | } | ||
375 | |||
363 | static int ieee80211_tkip_decrypt(struct sk_buff *skb, int hdr_len, void *priv) | 376 | static int ieee80211_tkip_decrypt(struct sk_buff *skb, int hdr_len, void *priv) |
364 | { | 377 | { |
365 | struct ieee80211_tkip_data *tkey = priv; | 378 | struct ieee80211_tkip_data *tkey = priv; |
@@ -414,8 +427,7 @@ static int ieee80211_tkip_decrypt(struct sk_buff *skb, int hdr_len, void *priv) | |||
414 | iv32 = pos[4] | (pos[5] << 8) | (pos[6] << 16) | (pos[7] << 24); | 427 | iv32 = pos[4] | (pos[5] << 8) | (pos[6] << 16) | (pos[7] << 24); |
415 | pos += 8; | 428 | pos += 8; |
416 | 429 | ||
417 | if (iv32 < tkey->rx_iv32 || | 430 | if (tkip_replay_check(iv32, iv16, tkey->rx_iv32, tkey->rx_iv16)) { |
418 | (iv32 == tkey->rx_iv32 && iv16 <= tkey->rx_iv16)) { | ||
419 | if (net_ratelimit()) { | 431 | if (net_ratelimit()) { |
420 | printk(KERN_DEBUG "TKIP: replay detected: STA=" MAC_FMT | 432 | printk(KERN_DEBUG "TKIP: replay detected: STA=" MAC_FMT |
421 | " previous TSC %08x%04x received TSC " | 433 | " previous TSC %08x%04x received TSC " |