]> git.itanic.dy.fi Git - linux-stable/commitdiff
[PATCH] hostap: Fix EAPOL frame encryption
authorJouni Malinen <jkmaline@cc.hut.fi>
Sat, 25 Mar 2006 05:24:55 +0000 (21:24 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 7 Apr 2006 16:44:30 +0000 (09:44 -0700)
Fixed encrypted of EAPOL frames from wlan#ap interface (hostapd). This
was broken when moving to use new frame control field defines in
net/ieee80211.h. hostapd uses Protected flag, not protocol version
(which was cleared in this function anyway). This fixes WPA group key
handshake and re-authentication.
http://hostap.epitest.fi/bugz/show_bug.cgi?id=126

Signed-off-by: Jouni Malinen <jkmaline@cc.hut.fi>
drivers/net/wireless/hostap/hostap_80211_tx.c

index 4a85e63906f1554b9302c452faea74cb86f4a557..5f398bd8344d4ebe94400f1e3a4b21d259a5157f 100644 (file)
@@ -469,7 +469,7 @@ int hostap_master_start_xmit(struct sk_buff *skb, struct net_device *dev)
        }
 
        if (local->ieee_802_1x && meta->ethertype == ETH_P_PAE && tx.crypt &&
-           !(fc & IEEE80211_FCTL_VERS)) {
+           !(fc & IEEE80211_FCTL_PROTECTED)) {
                no_encrypt = 1;
                PDEBUG(DEBUG_EXTRA2, "%s: TX: IEEE 802.1X - passing "
                       "unencrypted EAPOL frame\n", dev->name);