Merge "Stop supporting legacy ConnectivityManager routing methods in M." into mnc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
4024ad1198
@@ -22,6 +22,7 @@ import android.annotation.SdkConstant.SdkConstantType;
|
|||||||
import android.app.PendingIntent;
|
import android.app.PendingIntent;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
|
import android.content.pm.PackageManager;
|
||||||
import android.net.NetworkUtils;
|
import android.net.NetworkUtils;
|
||||||
import android.os.Binder;
|
import android.os.Binder;
|
||||||
import android.os.Build.VERSION_CODES;
|
import android.os.Build.VERSION_CODES;
|
||||||
@@ -33,6 +34,7 @@ import android.os.INetworkManagementService;
|
|||||||
import android.os.Looper;
|
import android.os.Looper;
|
||||||
import android.os.Message;
|
import android.os.Message;
|
||||||
import android.os.Messenger;
|
import android.os.Messenger;
|
||||||
|
import android.os.Process;
|
||||||
import android.os.RemoteException;
|
import android.os.RemoteException;
|
||||||
import android.os.ServiceManager;
|
import android.os.ServiceManager;
|
||||||
import android.provider.Settings;
|
import android.provider.Settings;
|
||||||
@@ -490,6 +492,8 @@ public class ConnectivityManager {
|
|||||||
*/
|
*/
|
||||||
private static ConnectivityManager sInstance;
|
private static ConnectivityManager sInstance;
|
||||||
|
|
||||||
|
private final Context mContext;
|
||||||
|
|
||||||
private INetworkManagementService mNMService;
|
private INetworkManagementService mNMService;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -892,8 +896,11 @@ public class ConnectivityManager {
|
|||||||
*
|
*
|
||||||
* @deprecated Deprecated in favor of the cleaner
|
* @deprecated Deprecated in favor of the cleaner
|
||||||
* {@link #requestNetwork(NetworkRequest, NetworkCallback)} API.
|
* {@link #requestNetwork(NetworkRequest, NetworkCallback)} API.
|
||||||
|
* In {@link VERSION_CODES#MNC}, and above, this method is unsupported and will
|
||||||
|
* throw {@code UnsupportedOperationException} if called.
|
||||||
*/
|
*/
|
||||||
public int startUsingNetworkFeature(int networkType, String feature) {
|
public int startUsingNetworkFeature(int networkType, String feature) {
|
||||||
|
checkLegacyRoutingApiAccess();
|
||||||
NetworkCapabilities netCap = networkCapabilitiesForFeature(networkType, feature);
|
NetworkCapabilities netCap = networkCapabilitiesForFeature(networkType, feature);
|
||||||
if (netCap == null) {
|
if (netCap == null) {
|
||||||
Log.d(TAG, "Can't satisfy startUsingNetworkFeature for " + networkType + ", " +
|
Log.d(TAG, "Can't satisfy startUsingNetworkFeature for " + networkType + ", " +
|
||||||
@@ -939,8 +946,11 @@ public class ConnectivityManager {
|
|||||||
* always indicates failure.
|
* always indicates failure.
|
||||||
*
|
*
|
||||||
* @deprecated Deprecated in favor of the cleaner {@link #unregisterNetworkCallback} API.
|
* @deprecated Deprecated in favor of the cleaner {@link #unregisterNetworkCallback} API.
|
||||||
|
* In {@link VERSION_CODES#MNC}, and above, this method is unsupported and will
|
||||||
|
* throw {@code UnsupportedOperationException} if called.
|
||||||
*/
|
*/
|
||||||
public int stopUsingNetworkFeature(int networkType, String feature) {
|
public int stopUsingNetworkFeature(int networkType, String feature) {
|
||||||
|
checkLegacyRoutingApiAccess();
|
||||||
NetworkCapabilities netCap = networkCapabilitiesForFeature(networkType, feature);
|
NetworkCapabilities netCap = networkCapabilitiesForFeature(networkType, feature);
|
||||||
if (netCap == null) {
|
if (netCap == null) {
|
||||||
Log.d(TAG, "Can't satisfy stopUsingNetworkFeature for " + networkType + ", " +
|
Log.d(TAG, "Can't satisfy stopUsingNetworkFeature for " + networkType + ", " +
|
||||||
@@ -1218,6 +1228,8 @@ public class ConnectivityManager {
|
|||||||
* @deprecated Deprecated in favor of the
|
* @deprecated Deprecated in favor of the
|
||||||
* {@link #requestNetwork(NetworkRequest, NetworkCallback)},
|
* {@link #requestNetwork(NetworkRequest, NetworkCallback)},
|
||||||
* {@link #bindProcessToNetwork} and {@link Network#getSocketFactory} API.
|
* {@link #bindProcessToNetwork} and {@link Network#getSocketFactory} API.
|
||||||
|
* In {@link VERSION_CODES#MNC}, and above, this method is unsupported and will
|
||||||
|
* throw {@code UnsupportedOperationException} if called.
|
||||||
*/
|
*/
|
||||||
public boolean requestRouteToHost(int networkType, int hostAddress) {
|
public boolean requestRouteToHost(int networkType, int hostAddress) {
|
||||||
return requestRouteToHostAddress(networkType, NetworkUtils.intToInetAddress(hostAddress));
|
return requestRouteToHostAddress(networkType, NetworkUtils.intToInetAddress(hostAddress));
|
||||||
@@ -1238,6 +1250,7 @@ public class ConnectivityManager {
|
|||||||
* {@link #bindProcessToNetwork} API.
|
* {@link #bindProcessToNetwork} API.
|
||||||
*/
|
*/
|
||||||
public boolean requestRouteToHostAddress(int networkType, InetAddress hostAddress) {
|
public boolean requestRouteToHostAddress(int networkType, InetAddress hostAddress) {
|
||||||
|
checkLegacyRoutingApiAccess();
|
||||||
try {
|
try {
|
||||||
return mService.requestRouteToHostAddress(networkType, hostAddress.getAddress());
|
return mService.requestRouteToHostAddress(networkType, hostAddress.getAddress());
|
||||||
} catch (RemoteException e) {
|
} catch (RemoteException e) {
|
||||||
@@ -1416,7 +1429,8 @@ public class ConnectivityManager {
|
|||||||
/**
|
/**
|
||||||
* {@hide}
|
* {@hide}
|
||||||
*/
|
*/
|
||||||
public ConnectivityManager(IConnectivityManager service) {
|
public ConnectivityManager(Context context, IConnectivityManager service) {
|
||||||
|
mContext = checkNotNull(context, "missing context");
|
||||||
mService = checkNotNull(service, "missing IConnectivityManager");
|
mService = checkNotNull(service, "missing IConnectivityManager");
|
||||||
sInstance = this;
|
sInstance = this;
|
||||||
}
|
}
|
||||||
@@ -2703,6 +2717,34 @@ public class ConnectivityManager {
|
|||||||
return new Network(netId);
|
return new Network(netId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void unsupportedStartingFrom(int version) {
|
||||||
|
if (Process.myUid() == Process.SYSTEM_UID) {
|
||||||
|
// The getApplicationInfo() call we make below is not supported in system context, and
|
||||||
|
// we want to allow the system to use these APIs anyway.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mContext.getApplicationInfo().targetSdkVersion >= version) {
|
||||||
|
throw new UnsupportedOperationException(
|
||||||
|
"This method is not supported in target SDK version " + version + " and above");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Checks whether the calling app can use the legacy routing API (startUsingNetworkFeature,
|
||||||
|
// stopUsingNetworkFeature, requestRouteToHost), and if not throw UnsupportedOperationException.
|
||||||
|
// TODO: convert the existing system users (Tethering, GpsLocationProvider) to the new APIs and
|
||||||
|
// remove these exemptions. Note that this check is not secure, and apps can still access these
|
||||||
|
// functions by accessing ConnectivityService directly. However, it should be clear that doing
|
||||||
|
// so is unsupported and may break in the future. http://b/22728205
|
||||||
|
private void checkLegacyRoutingApiAccess() {
|
||||||
|
if (mContext.checkCallingOrSelfPermission("com.android.permission.INJECT_OMADM_SETTINGS")
|
||||||
|
== PackageManager.PERMISSION_GRANTED) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
unsupportedStartingFrom(VERSION_CODES.MNC);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Binds host resolutions performed by this process to {@code network}.
|
* Binds host resolutions performed by this process to {@code network}.
|
||||||
* {@link #bindProcessToNetwork} takes precedence over this setting.
|
* {@link #bindProcessToNetwork} takes precedence over this setting.
|
||||||
|
|||||||
@@ -463,7 +463,7 @@ public class ConnectivityServiceTest extends AndroidTestCase {
|
|||||||
mService = new WrappedConnectivityService(
|
mService = new WrappedConnectivityService(
|
||||||
mServiceContext, mNetManager, mStatsService, mPolicyService);
|
mServiceContext, mNetManager, mStatsService, mPolicyService);
|
||||||
mService.systemReady();
|
mService.systemReady();
|
||||||
mCm = new ConnectivityManager(mService);
|
mCm = new ConnectivityManager(getContext(), mService);
|
||||||
}
|
}
|
||||||
|
|
||||||
private int transportToLegacyType(int transport) {
|
private int transportToLegacyType(int transport) {
|
||||||
|
|||||||
Reference in New Issue
Block a user