diff options
author | Roshan Pius <rpius@google.com> | 2017-06-22 13:17:16 -0700 |
---|---|---|
committer | Roshan Pius <rpius@google.com> | 2017-06-22 15:52:39 -0700 |
commit | 327bd4253115abc757ebaf5f1bddd9f5ad2253e4 (patch) | |
tree | 0bc8aa5bfaa5272db708df40df2021bec1e5bd29 /service | |
parent | 23216ca333dc411e6ce0829f777ca29992388443 (diff) |
WifiConfigManager: Ignore masked EAP passwords
Whenever an app retrieves one of the saved network configuration using
the WifiManager API's, we mask out the |preSharedKey|, |wepKeys| and
|enterpriseConfig.getPassword()| fields. These apps may however pass the
same network configuration (with some changes) back to the
framework via WifiManager.updateNetwork() or WifiManager.connect() API's.
Since the current update API does not specify which field within the
WifiConfiguration is modified, framework tries to copy over all the
fields sent in thus overriding the real password with the masked value
sent by the app.
Ideally the apps should create a new WifiConfiguration with just the
fields that they want to modify and send it via
WifiManager.updateNetwork(). But, since this is a very common mistake
we have some protection against this in the framework for the
|preSharedKey| and |wepKeys|. But, we're missing this protection for the
|enterpriseConfig.getPassword()| fields.
Bug: 62893342
Test: Unit tests.
Test: Manual test to ensure that masked password sent from settings is
ignored.
Test: Regression tests.
Change-Id: I163c8c44b2717364aff88cb7ca1b2faa3aa6cce9
Diffstat (limited to 'service')
-rw-r--r-- | service/java/com/android/server/wifi/WifiConfigManager.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/service/java/com/android/server/wifi/WifiConfigManager.java b/service/java/com/android/server/wifi/WifiConfigManager.java index 4b2bb1c49..25a5a20ad 100644 --- a/service/java/com/android/server/wifi/WifiConfigManager.java +++ b/service/java/com/android/server/wifi/WifiConfigManager.java @@ -820,8 +820,8 @@ public class WifiConfigManager { // Copy over the |WifiEnterpriseConfig| parameters if set. if (externalConfig.enterpriseConfig != null) { - internalConfig.enterpriseConfig = - new WifiEnterpriseConfig(externalConfig.enterpriseConfig); + internalConfig.enterpriseConfig.copyFromExternal( + externalConfig.enterpriseConfig, PASSWORD_MASK); } } |