ConnectivityManager: improve argument validation

Using Preconditions and dedicated static methods for checking arguments
to improve error stack traces without error messages.

Test: covered by previously added unit test
Bug: 36701874
Change-Id: Id872b2c887a4bca43a8c3644622add1c2ee57c6d
This commit is contained in:
Hugo Benichi
2017-05-09 15:19:01 +09:00
parent 37c09c96b9
commit bc1104b465

View File

@@ -1466,9 +1466,7 @@ public class ConnectivityManager {
// Map from type to transports. // Map from type to transports.
final int NOT_FOUND = -1; final int NOT_FOUND = -1;
final int transport = sLegacyTypeToTransport.get(type, NOT_FOUND); final int transport = sLegacyTypeToTransport.get(type, NOT_FOUND);
if (transport == NOT_FOUND) { Preconditions.checkArgument(transport != NOT_FOUND, "unknown legacy type: " + type);
throw new IllegalArgumentException("unknown legacy type: " + type);
}
nc.addTransportType(transport); nc.addTransportType(transport);
// Map from type to capabilities. // Map from type to capabilities.
@@ -1814,9 +1812,7 @@ public class ConnectivityManager {
*/ */
public void removeDefaultNetworkActiveListener(OnNetworkActiveListener l) { public void removeDefaultNetworkActiveListener(OnNetworkActiveListener l) {
INetworkActivityListener rl = mNetworkActivityListeners.get(l); INetworkActivityListener rl = mNetworkActivityListeners.get(l);
if (rl == null) { Preconditions.checkArgument(rl != null, "Listener was not registered.");
throw new IllegalArgumentException("Listener not registered: " + l);
}
try { try {
getNetworkManagementService().unregisterNetworkActivityListener(rl); getNetworkManagementService().unregisterNetworkActivityListener(rl);
} catch (RemoteException e) { } catch (RemoteException e) {
@@ -1873,9 +1869,8 @@ public class ConnectivityManager {
/** {@hide} */ /** {@hide} */
public static final void enforceTetherChangePermission(Context context, String callingPkg) { public static final void enforceTetherChangePermission(Context context, String callingPkg) {
if (null == context || null == callingPkg) { Preconditions.checkNotNull(context, "Context cannot be null");
throw new IllegalArgumentException("arguments should not be null"); Preconditions.checkNotNull(callingPkg, "callingPkg cannot be null");
}
if (context.getResources().getStringArray( if (context.getResources().getStringArray(
com.android.internal.R.array.config_mobile_hotspot_provision_app).length == 2) { com.android.internal.R.array.config_mobile_hotspot_provision_app).length == 2) {
@@ -2773,7 +2768,7 @@ public class ConnectivityManager {
} }
CallbackHandler(Handler handler) { CallbackHandler(Handler handler) {
this(handler.getLooper()); this(Preconditions.checkNotNull(handler, "Handler cannot be null.").getLooper());
} }
@Override @Override
@@ -2890,7 +2885,7 @@ public class ConnectivityManager {
private NetworkRequest sendRequestForNetwork(NetworkCapabilities need, NetworkCallback callback, private NetworkRequest sendRequestForNetwork(NetworkCapabilities need, NetworkCallback callback,
int timeoutMs, int action, int legacyType, CallbackHandler handler) { int timeoutMs, int action, int legacyType, CallbackHandler handler) {
Preconditions.checkArgument(callback != null, "null NetworkCallback"); checkCallbackNotNull(callback);
Preconditions.checkArgument(action == REQUEST || need != null, "null NetworkCapabilities"); Preconditions.checkArgument(action == REQUEST || need != null, "null NetworkCapabilities");
final NetworkRequest request; final NetworkRequest request;
try { try {
@@ -3042,14 +3037,11 @@ public class ConnectivityManager {
*/ */
public void requestNetwork(NetworkRequest request, NetworkCallback networkCallback, public void requestNetwork(NetworkRequest request, NetworkCallback networkCallback,
int timeoutMs) { int timeoutMs) {
if (timeoutMs <= 0) { checkTimeout(timeoutMs);
throw new IllegalArgumentException("Non-positive timeoutMs: " + timeoutMs);
}
int legacyType = inferLegacyTypeForNetworkCapabilities(request.networkCapabilities); int legacyType = inferLegacyTypeForNetworkCapabilities(request.networkCapabilities);
requestNetwork(request, networkCallback, timeoutMs, legacyType, getDefaultHandler()); requestNetwork(request, networkCallback, timeoutMs, legacyType, getDefaultHandler());
} }
/** /**
* Request a network to satisfy a set of {@link android.net.NetworkCapabilities}, limited * Request a network to satisfy a set of {@link android.net.NetworkCapabilities}, limited
* by a timeout. * by a timeout.
@@ -3079,9 +3071,7 @@ public class ConnectivityManager {
*/ */
public void requestNetwork(NetworkRequest request, NetworkCallback networkCallback, public void requestNetwork(NetworkRequest request, NetworkCallback networkCallback,
Handler handler, int timeoutMs) { Handler handler, int timeoutMs) {
if (timeoutMs <= 0) { checkTimeout(timeoutMs);
throw new IllegalArgumentException("Non-positive timeoutMs");
}
int legacyType = inferLegacyTypeForNetworkCapabilities(request.networkCapabilities); int legacyType = inferLegacyTypeForNetworkCapabilities(request.networkCapabilities);
CallbackHandler cbHandler = new CallbackHandler(handler); CallbackHandler cbHandler = new CallbackHandler(handler);
requestNetwork(request, networkCallback, timeoutMs, legacyType, cbHandler); requestNetwork(request, networkCallback, timeoutMs, legacyType, cbHandler);
@@ -3153,7 +3143,7 @@ public class ConnectivityManager {
* {@link NetworkCapabilities#NET_CAPABILITY_CAPTIVE_PORTAL}. * {@link NetworkCapabilities#NET_CAPABILITY_CAPTIVE_PORTAL}.
*/ */
public void requestNetwork(NetworkRequest request, PendingIntent operation) { public void requestNetwork(NetworkRequest request, PendingIntent operation) {
checkPendingIntent(operation); checkPendingIntentNotNull(operation);
try { try {
mService.pendingRequestForNetwork(request.networkCapabilities, operation); mService.pendingRequestForNetwork(request.networkCapabilities, operation);
} catch (RemoteException e) { } catch (RemoteException e) {
@@ -3176,7 +3166,7 @@ public class ConnectivityManager {
* corresponding NetworkRequest you'd like to remove. Cannot be null. * corresponding NetworkRequest you'd like to remove. Cannot be null.
*/ */
public void releaseNetworkRequest(PendingIntent operation) { public void releaseNetworkRequest(PendingIntent operation) {
checkPendingIntent(operation); checkPendingIntentNotNull(operation);
try { try {
mService.releasePendingNetworkRequest(operation); mService.releasePendingNetworkRequest(operation);
} catch (RemoteException e) { } catch (RemoteException e) {
@@ -3184,10 +3174,16 @@ public class ConnectivityManager {
} }
} }
private void checkPendingIntent(PendingIntent intent) { private static void checkPendingIntentNotNull(PendingIntent intent) {
if (intent == null) { Preconditions.checkNotNull(intent, "PendingIntent cannot be null.");
throw new IllegalArgumentException("PendingIntent cannot be null.");
} }
private static void checkCallbackNotNull(NetworkCallback callback) {
Preconditions.checkNotNull(callback, "null NetworkCallback");
}
private static void checkTimeout(int timeoutMs) {
Preconditions.checkArgumentPositive(timeoutMs, "timeoutMs must be strictly positive.");
} }
/** /**
@@ -3257,7 +3253,7 @@ public class ConnectivityManager {
* comes from {@link PendingIntent#getBroadcast}. Cannot be null. * comes from {@link PendingIntent#getBroadcast}. Cannot be null.
*/ */
public void registerNetworkCallback(NetworkRequest request, PendingIntent operation) { public void registerNetworkCallback(NetworkRequest request, PendingIntent operation) {
checkPendingIntent(operation); checkPendingIntentNotNull(operation);
try { try {
mService.pendingListenForNetwork(request.networkCapabilities, operation); mService.pendingListenForNetwork(request.networkCapabilities, operation);
} catch (RemoteException e) { } catch (RemoteException e) {
@@ -3301,8 +3297,9 @@ public class ConnectivityManager {
// capabilities, this request is guaranteed, at all times, to be // capabilities, this request is guaranteed, at all times, to be
// satisfied by the same network, if any, that satisfies the default // satisfied by the same network, if any, that satisfies the default
// request, i.e., the system default network. // request, i.e., the system default network.
NetworkCapabilities nullCapabilities = null;
CallbackHandler cbHandler = new CallbackHandler(handler); CallbackHandler cbHandler = new CallbackHandler(handler);
sendRequestForNetwork(null, networkCallback, 0, REQUEST, TYPE_NONE, cbHandler); sendRequestForNetwork(nullCapabilities, networkCallback, 0, REQUEST, TYPE_NONE, cbHandler);
} }
/** /**
@@ -3339,7 +3336,7 @@ public class ConnectivityManager {
* @param networkCallback The {@link NetworkCallback} used when making the request. * @param networkCallback The {@link NetworkCallback} used when making the request.
*/ */
public void unregisterNetworkCallback(NetworkCallback networkCallback) { public void unregisterNetworkCallback(NetworkCallback networkCallback) {
Preconditions.checkArgument(networkCallback != null, "null NetworkCallback"); checkCallbackNotNull(networkCallback);
final List<NetworkRequest> reqs = new ArrayList<>(); final List<NetworkRequest> reqs = new ArrayList<>();
// Find all requests associated to this callback and stop callback triggers immediately. // Find all requests associated to this callback and stop callback triggers immediately.
// Callback is reusable immediately. http://b/20701525, http://b/35921499. // Callback is reusable immediately. http://b/20701525, http://b/35921499.
@@ -3375,6 +3372,7 @@ public class ConnectivityManager {
* Cannot be null. * Cannot be null.
*/ */
public void unregisterNetworkCallback(PendingIntent operation) { public void unregisterNetworkCallback(PendingIntent operation) {
checkPendingIntentNotNull(operation);
releaseNetworkRequest(operation); releaseNetworkRequest(operation);
} }