Add the calling package name to requestRouteToHost
The calling package name will be used to check if an application is a system application when deciding if a route should be exempt from VPN routing rules. Bug: 12937545 Change-Id: I2c09c875fe9bb9685871a0a801ddcbb32fc17405
This commit is contained in:
@@ -1537,14 +1537,14 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
* desired
|
||||
* @return {@code true} on success, {@code false} on failure
|
||||
*/
|
||||
public boolean requestRouteToHost(int networkType, int hostAddress) {
|
||||
public boolean requestRouteToHost(int networkType, int hostAddress, String packageName) {
|
||||
InetAddress inetAddress = NetworkUtils.intToInetAddress(hostAddress);
|
||||
|
||||
if (inetAddress == null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return requestRouteToHostAddress(networkType, inetAddress.getAddress());
|
||||
return requestRouteToHostAddress(networkType, inetAddress.getAddress(), packageName);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -1556,7 +1556,8 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
* desired
|
||||
* @return {@code true} on success, {@code false} on failure
|
||||
*/
|
||||
public boolean requestRouteToHostAddress(int networkType, byte[] hostAddress) {
|
||||
public boolean requestRouteToHostAddress(int networkType, byte[] hostAddress,
|
||||
String packageName) {
|
||||
enforceChangePermission();
|
||||
if (mProtectedNetworks.contains(networkType)) {
|
||||
enforceConnectivityInternalPermission();
|
||||
@@ -4351,7 +4352,7 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
|
||||
// Make a route to host so we check the specific interface.
|
||||
if (mCs.requestRouteToHostAddress(ConnectivityManager.TYPE_MOBILE_HIPRI,
|
||||
hostAddr.getAddress())) {
|
||||
hostAddr.getAddress(), null)) {
|
||||
// Wait a short time to be sure the route is established ??
|
||||
log("isMobileOk:"
|
||||
+ " wait to establish route to hostAddr=" + hostAddr);
|
||||
|
||||
Reference in New Issue
Block a user