diff options
author | Peter Qiu <zqiu@google.com> | 2017-03-20 10:02:12 -0700 |
---|---|---|
committer | Peter Qiu <zqiu@google.com> | 2017-03-22 11:51:38 -0700 |
commit | 3a86cc60b6cd3a5eb7b4982ba98f7e71ad45915e (patch) | |
tree | afde76f775f4bd8e79f2b9ef00709b1048622005 /service | |
parent | 50bc1e851d073d4a986f5b32072f94bbaba86a95 (diff) |
hotspot2: allow Process.WIFI_UID to modify Passpoint networks
Passpoint networks are generated by PasspointManager, and can be
added to WifiConfigManager via either PasspointNetworkEvaluator
(for auto connection) or Settings app (for manual connection).
In either case, the network will need to be removed from
WifiConfigManager once the connection is completed.
Since the Passpoint networks are managed/owned by us, bypass
the permission check for any Passpoint network modifications
made by us (with UID Process.WIFI_UID).
Bug: 36357280
Test: frameworks/opt/net/wifi/tests/wifitests/runtests.sh
Test: manual test
Change-Id: I5b1bcf3cb882a9d63a1643d8db779788c22b8036
Diffstat (limited to 'service')
-rw-r--r-- | service/java/com/android/server/wifi/WifiConfigManager.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/service/java/com/android/server/wifi/WifiConfigManager.java b/service/java/com/android/server/wifi/WifiConfigManager.java index 48dfc2fd1..eaa6a107a 100644 --- a/service/java/com/android/server/wifi/WifiConfigManager.java +++ b/service/java/com/android/server/wifi/WifiConfigManager.java @@ -34,6 +34,7 @@ import android.net.wifi.WifiEnterpriseConfig; import android.net.wifi.WifiInfo; import android.net.wifi.WifiManager; import android.net.wifi.WifiScanner; +import android.os.Process; import android.os.UserHandle; import android.os.UserManager; import android.provider.Settings; @@ -613,6 +614,14 @@ public class WifiConfigManager { * @param ignoreLockdown Ignore the configuration lockdown checks for connection attempts. */ private boolean canModifyNetwork(WifiConfiguration config, int uid, boolean ignoreLockdown) { + // Passpoint configurations are generated and managed by PasspointManager. They can be + // added by either PasspointNetworkEvaluator (for auto connection) or Settings app + // (for manual connection), and need to be removed once the connection is completed. + // Since it is "owned" by us, so always allow us to modify them. + if (config.isPasspoint() && uid == Process.WIFI_UID) { + return true; + } + final DevicePolicyManagerInternal dpmi = LocalServices.getService( DevicePolicyManagerInternal.class); |