Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Oct 2005 04:29:09 +0000 (UTC)
From:      Tai-hwa Liang <avatar@FreeBSD.org>
To:        src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/sys/dev/wi if_wi.c if_wivar.h
Message-ID:  <200510020429.j924T9fd021085@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
avatar      2005-10-02 04:29:09 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/wi           if_wi.c if_wivar.h 
  Log:
  Fixing WEP bustage in hostap mode since 5.2-RELEASE.
  
  - WEP TX fix:
  
    The original code called software crypto, ieee80211_crypto_encap(),
  which never worked since IEEE80211_KEY_SWCRYPT was never flagged due to
  ieee80211_crypto_newkey() assumes that wi always supports hardware based
  crypto regardless of operational mode(by virtue of IEEE80211_C_WEP).
  This fix works around that issue by adding wi_key_alloc() to force
  the use of s/w crypto.  Also if anyone ever decides to cleanup ioctl
  handling where key changes wouldn't cause a call to wi_init() every time,
  we'll need wi_key_alloc() to DTRT.
  
    In addition to that, this fix also adds code to wi_write_wep() to force
  existing keys to be switched between h/w and s/w crypto such that an
  operation mode change(sta <-> hostap) will flag IEEE80211_KEY_SWCRYPT
  properly.
  
  - WEP RX fix:
  
    Clear IEEE80211_F_DROPUNENC even in hostap mode.  Quote from Sam:
  
          "This is really gross but I don't see an easy way around it.
          By doing it we lose the ability to independently drop unencode
          frames (and support mixed wep/!wep use).  We should really be
          setting the EXCLUDE_UNENCRYPTED flag written in wi_write_wep
          based on IEEE80211_F_DROPUNENC but with our clearing it we can't
          depend on it being set properly."
  
  Reported by:    Holm Tiffe <holm at freibergnet dot de>
  Submitted by:   sam
  MFC after:      3 days
  
  Revision  Changes    Path
  1.193     +55 -15    src/sys/dev/wi/if_wi.c
  1.27      +4 -0      src/sys/dev/wi/if_wivar.h



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200510020429.j924T9fd021085>