Linux Wireless: About Mac80211
Linux Wireless: About Mac80211
About mac80211
mac80211 is a framework which driver developers can use to write drivers for SoftMAC wireless devices.
SoftMAC devices allow for a finer control of the hardware, allowing for 802.11 frame management to be done in software
for them, for both parsing and generation of 802.11 wireless frames. Most 802.11 devices today tend to be of this type.
mac80211 implements the cfg80211 callbacks for SoftMAC devices, mac80211 then depends on cfg80211 for both
registration to the networking subsystem and for configuration. Configuration is handled by cfg80211 both through nl80211
and wireless extensions.
In mac80211 the MLME is done in the kernel for station mode (STA) and in userspace for AP mode (hostapd).
If you have new userspace utilities which support nl80211 you do not need wireless-extensions to support a mac80211
device.
Supported features
Here is a quick review of the features supported in mac80211.
IEEE 802.11abgn
IEEE 802.11d
Integration of work for the emerging 802.11s standard
Roaming using wpa_supplicant (802.11r as well). See Roaming TODO section for more details
Different types of interfaces, see supported wireless modes for details.
Vendor specific rate support
QoS
all mac80211 drivers get monitor mode support
The API page lists notes about using the driver API.
The tracing page has notes on how to trace what mac80211 is asking the driver to do.
Sequence diagrams:
auth/assoc/deauth diagram
HW scan diagram
mac80211 drivers
mac80211 drivers are listed on the drivers table
mac80211 802.11d support
mac80211 supports 802.11d by processing country information element on beacons after association with an AP. You should
still be able to associate to the AP in your region as cfg80211 allows users to set the regulatory domain from userspace
before country information elements are parsed, this is expected to be set via wpa_supplicant upon initialization. We let
cfg80211 parse the country information element for us and deal with reviewing regulatory enforcement for us. To review
that please see cfg80211's regulatory support.
WLAN_CIPHER_SUITE_WEP40
WLAN_CIPHER_SUITE_TKIP
WLAN_CIPHER_SUITE_WEP104
then 802.11n will be disabled and the STA will fall back to legacy mode of operation: 802.11a/b/g.
other documentation
Johannes Berg's presentation