nl80211: add WPA3 definition for SAE authentication
authorChung-Hsien Hsu <stanley.hsu@cypress.com>
Thu, 9 May 2019 09:49:05 +0000 (09:49 +0000)
committerJohannes Berg <johannes.berg@intel.com>
Fri, 14 Jun 2019 12:07:34 +0000 (14:07 +0200)
Add definition of WPA version 3 for SAE authentication.

Signed-off-by: Chung-Hsien Hsu <stanley.hsu@cypress.com>
Signed-off-by: Chi-Hsien Lin <chi-hsien.lin@cypress.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
include/uapi/linux/nl80211.h
net/wireless/nl80211.c

index 6f09d15..e9bf3d6 100644 (file)
@@ -4406,6 +4406,7 @@ enum nl80211_mfp {
 enum nl80211_wpa_versions {
        NL80211_WPA_VERSION_1 = 1 << 0,
        NL80211_WPA_VERSION_2 = 1 << 1,
+       NL80211_WPA_VERSION_3 = 1 << 2,
 };
 
 /**
index 1c74ca3..8332a57 100644 (file)
@@ -8736,7 +8736,8 @@ static int nl80211_dump_survey(struct sk_buff *skb, struct netlink_callback *cb)
 static bool nl80211_valid_wpa_versions(u32 wpa_versions)
 {
        return !(wpa_versions & ~(NL80211_WPA_VERSION_1 |
-                                 NL80211_WPA_VERSION_2));
+                                 NL80211_WPA_VERSION_2 |
+                                 NL80211_WPA_VERSION_3));
 }
 
 static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info)