wpa_supplicant: enable WPA3 (SAE), PMF, and OWE#17786
Open
sindhu-karri wants to merge 1 commit into
Open
Conversation
Enable CONFIG_SAE, CONFIG_IEEE80211W, and CONFIG_OWE so that wpa_supplicant can negotiate WPA3-Personal, Protected Management Frames, and Opportunistic Wireless Encryption. This unblocks netplan-generated configurations that specify key-mgmt=sae and aligns Azure Linux with Fedora/Debian/Ubuntu defaults. Remove the obsolete CONFIG_PEERKEY symbol, which was removed from upstream wpa_supplicant in 2.10. No new BuildRequires or Requires; all new features use the already-linked OpenSSL. Source0 unchanged, signatures.json untouched. ADO #62728349
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Enables WPA3-Personal (SAE), Protected Management Frames (PMF / IEEE 802.11w), and Opportunistic Wireless Encryption (OWE) in the
wpa_supplicantbuild config. Removes the obsoleteCONFIG_PEERKEYsymbol (removed from upstream in 2.10).Motivation
key-mgmt=saeper the modern WPA3 standard, but the current Azure Linuxwpa_supplicantpackage rejects them because SAE is not compiled in. Users have to hand-edit generated configs to downgrade to WPA2.Changes
CONFIG_SAE=y— WPA3-Personal (SAE / Dragonfly handshake).CONFIG_IEEE80211W=y— Protected Management Frames (prerequisite for WPA3; also independently mitigates deauth/disassoc spoofing on WPA2).CONFIG_OWE=y— Opportunistic Wireless Encryption for open networks (RFC 8110).CONFIG_PEERKEY=y— symbol no longer exists in upstream wpa_supplicant 2.10.Compatibility / Safety
Source0andsignatures.jsonunchanged.CONFIG_PEERKEYremoval is a no-op (upstream already deleted the symbol).Validation
Linked issue
ADO #62728349