Merge "In isTetheringSupported, call isAdmin user from system."
am: 4a8953094f Change-Id: Ibefe655ed377c55322d871e02d87c0d001327da8
This commit is contained in:
@@ -3082,7 +3082,17 @@ public class ConnectivityService extends IConnectivityManager.Stub
|
||||
boolean tetherEnabledInSettings = (Settings.Global.getInt(mContext.getContentResolver(),
|
||||
Settings.Global.TETHER_SUPPORTED, defaultVal) != 0)
|
||||
&& !mUserManager.hasUserRestriction(UserManager.DISALLOW_CONFIG_TETHERING);
|
||||
return tetherEnabledInSettings && mUserManager.isAdminUser() &&
|
||||
|
||||
// Elevate to system UID to avoid caller requiring MANAGE_USERS permission.
|
||||
boolean adminUser = false;
|
||||
final long token = Binder.clearCallingIdentity();
|
||||
try {
|
||||
adminUser = mUserManager.isAdminUser();
|
||||
} finally {
|
||||
Binder.restoreCallingIdentity(token);
|
||||
}
|
||||
|
||||
return tetherEnabledInSettings && adminUser &&
|
||||
mTethering.hasTetherableConfiguration();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user