summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHai Shalom <haishalom@google.com>2019-05-14 16:45:05 -0700
committerHai Shalom <haishalom@google.com>2019-05-14 16:48:58 -0700
commit9d8bc7f0dfb352e3369c26c1e6e5a697b75dfa31 (patch)
treea70d5f00c7a717ce99f908f822d0c1cc8c37ddf0
parentb788af3376c4b676795f04c0092d139780c664a9 (diff)
downloadandroid_frameworks_opt_net_wifi-9d8bc7f0dfb352e3369c26c1e6e5a697b75dfa31.tar.gz
android_frameworks_opt_net_wifi-9d8bc7f0dfb352e3369c26c1e6e5a697b75dfa31.tar.bz2
android_frameworks_opt_net_wifi-9d8bc7f0dfb352e3369c26c1e6e5a697b75dfa31.zip
[PSK/EAP] Do not add SHA256 Key mgmt for SupplicantHal < 1.2
Following on GSI Q on P failure: Do not add SHA256 Key management where Supplicant HAL version is lower than 1.2, where it is not supported. Bug: 132656148 Test: atest SupplicantStaNetworkHalTest Change-Id: Idf6f85fa409082b3b88dd36b624f8878be695709
-rw-r--r--service/java/com/android/server/wifi/SupplicantStaNetworkHal.java8
-rw-r--r--tests/wifitests/src/com/android/server/wifi/SupplicantStaNetworkHalTest.java30
2 files changed, 38 insertions, 0 deletions
diff --git a/service/java/com/android/server/wifi/SupplicantStaNetworkHal.java b/service/java/com/android/server/wifi/SupplicantStaNetworkHal.java
index 059ea797c..9255fc231 100644
--- a/service/java/com/android/server/wifi/SupplicantStaNetworkHal.java
+++ b/service/java/com/android/server/wifi/SupplicantStaNetworkHal.java
@@ -3012,6 +3012,14 @@ public class SupplicantStaNetworkHal {
private BitSet addSha256KeyMgmtFlags(BitSet keyManagementFlags) {
synchronized (mLock) {
BitSet modifiedFlags = (BitSet) keyManagementFlags.clone();
+ android.hardware.wifi.supplicant.V1_2.ISupplicantStaNetwork
+ iSupplicantStaNetworkV12;
+ iSupplicantStaNetworkV12 = getV1_2StaNetwork();
+ if (iSupplicantStaNetworkV12 == null) {
+ // SHA256 key management requires HALv1.2 or higher
+ return modifiedFlags;
+ }
+
if (keyManagementFlags.get(WifiConfiguration.KeyMgmt.WPA_PSK)) {
modifiedFlags.set(WifiConfiguration.KeyMgmt.WPA_PSK_SHA256);
}
diff --git a/tests/wifitests/src/com/android/server/wifi/SupplicantStaNetworkHalTest.java b/tests/wifitests/src/com/android/server/wifi/SupplicantStaNetworkHalTest.java
index f8896f44c..796dce1df 100644
--- a/tests/wifitests/src/com/android/server/wifi/SupplicantStaNetworkHalTest.java
+++ b/tests/wifitests/src/com/android/server/wifi/SupplicantStaNetworkHalTest.java
@@ -842,6 +842,36 @@ public class SupplicantStaNetworkHalTest {
}
/**
+ * Tests the addition of SHA256 flags (WPA_PSK_SHA256) is ignored on HAL v1.1 or lower
+ */
+ @Test
+ public void testAddPskSha256FlagsHal1_1OrLower() throws Exception {
+ WifiConfiguration config = WifiConfigurationTestUtil.createPskNetwork();
+ assertTrue(mSupplicantNetwork.saveWifiConfiguration(config));
+
+ // Check the supplicant variables to ensure that we have NOT added the SHA256 flags.
+ assertFalse((mSupplicantVariables.keyMgmtMask
+ & android.hardware.wifi.supplicant.V1_2.ISupplicantStaNetwork.KeyMgmtMask
+ .WPA_PSK_SHA256) == android.hardware.wifi.supplicant.V1_2.ISupplicantStaNetwork
+ .KeyMgmtMask.WPA_PSK_SHA256);
+ }
+
+ /**
+ * Tests the addition of SHA256 flags (WPA_EAP_SHA256) is ignored on HAL v1.1 or lower
+ */
+ @Test
+ public void testAddEapSha256FlagsHal1_1OrLower() throws Exception {
+ WifiConfiguration config = WifiConfigurationTestUtil.createEapNetwork();
+ assertTrue(mSupplicantNetwork.saveWifiConfiguration(config));
+
+ // Check the supplicant variables to ensure that we have NOT added the SHA256 flags.
+ assertFalse((mSupplicantVariables.keyMgmtMask
+ & android.hardware.wifi.supplicant.V1_2.ISupplicantStaNetwork.KeyMgmtMask
+ .WPA_EAP_SHA256) == android.hardware.wifi.supplicant.V1_2.ISupplicantStaNetwork
+ .KeyMgmtMask.WPA_EAP_SHA256);
+ }
+
+ /**
* Tests the retrieval of WPS NFC token.
*/
@Test