am f490d721: am e6848fac: Merge "Fix the adding of host routes." into honeycomb-LTE

* commit 'f490d72195d330e1232a9025ebe029158f68f5f6':
  Fix the adding of host routes.
This commit is contained in:
Robert Greenwalt
2011-05-11 13:07:38 -07:00
committed by Android Git Automerger
3 changed files with 132 additions and 28 deletions

View File

@@ -225,4 +225,50 @@ public class NetworkUtils {
} }
return addRoute(interfaceName, dstStr, prefixLength, gwStr) == 0; return addRoute(interfaceName, dstStr, prefixLength, gwStr) == 0;
} }
/**
* Get InetAddress masked with prefixLength. Will never return null.
* @param IP address which will be masked with specified prefixLength
* @param prefixLength the prefixLength used to mask the IP
*/
public static InetAddress getNetworkPart(InetAddress address, int prefixLength) {
if (address == null) {
throw new RuntimeException("getNetworkPart doesn't accept null address");
}
byte[] array = address.getAddress();
if (prefixLength < 0 || prefixLength > array.length * 8) {
throw new RuntimeException("getNetworkPart - bad prefixLength");
}
int offset = prefixLength / 8;
int reminder = prefixLength % 8;
byte mask = (byte)(0xFF << (8 - reminder));
if (offset < array.length) array[offset] = (byte)(array[offset] & mask);
offset++;
for (; offset < array.length; offset++) {
array[offset] = 0;
}
InetAddress netPart = null;
try {
netPart = InetAddress.getByAddress(array);
} catch (UnknownHostException e) {
throw new RuntimeException("getNetworkPart error - " + e.toString());
}
return netPart;
}
/**
* Check if IP address type is consistent between two InetAddress.
* @return true if both are the same type. False otherwise.
*/
public static boolean addressTypeMatches(InetAddress left, InetAddress right) {
return (((left instanceof Inet4Address) && (right instanceof Inet4Address)) ||
((left instanceof Inet6Address) && (right instanceof Inet6Address)));
}
} }

View File

@@ -23,6 +23,9 @@ import java.net.UnknownHostException;
import java.net.InetAddress; import java.net.InetAddress;
import java.net.Inet4Address; import java.net.Inet4Address;
import java.net.Inet6Address; import java.net.Inet6Address;
import java.util.Collection;
/** /**
* A simple container for route information. * A simple container for route information.
* *
@@ -44,39 +47,30 @@ public class RouteInfo implements Parcelable {
public RouteInfo(LinkAddress destination, InetAddress gateway) { public RouteInfo(LinkAddress destination, InetAddress gateway) {
if (destination == null) { if (destination == null) {
try { try {
if ((gateway != null) && (gateway instanceof Inet4Address)) { if ((gateway != null) || (gateway instanceof Inet4Address)) {
destination = new LinkAddress(InetAddress.getByName("0.0.0.0"), 32); destination = new LinkAddress(Inet4Address.ANY, 0);
} else { } else {
destination = new LinkAddress(InetAddress.getByName("::0"), 128); destination = new LinkAddress(Inet6Address.ANY, 0);
} }
} catch (Exception e) {} } catch (Exception e) {}
} }
mDestination = destination; mDestination = new LinkAddress(NetworkUtils.getNetworkPart(destination.getAddress(),
destination.getNetworkPrefixLength()), destination.getNetworkPrefixLength());
mGateway = gateway; mGateway = gateway;
mIsDefault = isDefault(); mIsDefault = isDefault();
} }
public RouteInfo(InetAddress gateway) { public RouteInfo(InetAddress gateway) {
LinkAddress destination = null; this(null, gateway);
try {
if ((gateway != null) && (gateway instanceof Inet4Address)) {
destination = new LinkAddress(InetAddress.getByName("0.0.0.0"), 32);
} else {
destination = new LinkAddress(InetAddress.getByName("::0"), 128);
}
} catch (Exception e) {}
mDestination = destination;
mGateway = gateway;
mIsDefault = isDefault();
} }
private boolean isDefault() { private boolean isDefault() {
boolean val = false; boolean val = false;
if (mGateway != null) { if (mGateway != null) {
if (mGateway instanceof Inet4Address) { if (mGateway instanceof Inet4Address) {
val = (mDestination == null || mDestination.getNetworkPrefixLength() == 32); val = (mDestination == null || mDestination.getNetworkPrefixLength() == 0);
} else { } else {
val = (mDestination == null || mDestination.getNetworkPrefixLength() == 128); val = (mDestination == null || mDestination.getNetworkPrefixLength() == 0);
} }
} }
return val; return val;
@@ -159,4 +153,43 @@ public class RouteInfo implements Parcelable {
return new RouteInfo[size]; return new RouteInfo[size];
} }
}; };
private boolean matches(InetAddress destination) {
if (destination == null) return false;
// if the destination is present and the route is default.
// return true
if (isDefault()) return true;
// match the route destination and destination with prefix length
InetAddress dstNet = NetworkUtils.getNetworkPart(destination,
mDestination.getNetworkPrefixLength());
return mDestination.getAddress().equals(dstNet);
}
/**
* Find the route from a Collection of routes that best matches a given address.
* May return null if no routes are applicable.
* @param routes a Collection of RouteInfos to chose from
* @param dest the InetAddress your trying to get to
* @return the RouteInfo from the Collection that best fits the given address
*/
public static RouteInfo selectBestRoute(Collection<RouteInfo> routes, InetAddress dest) {
if ((routes == null) || (dest == null)) return null;
RouteInfo bestRoute = null;
// pick a longest prefix match under same address type
for (RouteInfo route : routes) {
if (NetworkUtils.addressTypeMatches(route.mDestination.getAddress(), dest)) {
if ((bestRoute != null) &&
(bestRoute.mDestination.getNetworkPrefixLength() >=
route.mDestination.getNetworkPrefixLength())) {
continue;
}
if (route.matches(dest)) bestRoute = route;
}
}
return bestRoute;
}
} }

View File

@@ -81,6 +81,10 @@ public class ConnectivityService extends IConnectivityManager.Stub {
private static final String NETWORK_RESTORE_DELAY_PROP_NAME = private static final String NETWORK_RESTORE_DELAY_PROP_NAME =
"android.telephony.apn-restore"; "android.telephony.apn-restore";
// used in recursive route setting to add gateways for the host for which
// a host route was requested.
private static final int MAX_HOSTROUTE_CYCLE_COUNT = 10;
private Tethering mTethering; private Tethering mTethering;
private boolean mTetheringConfigValid = false; private boolean mTetheringConfigValid = false;
@@ -911,7 +915,7 @@ public class ConnectivityService extends IConnectivityManager.Stub {
} }
try { try {
InetAddress addr = InetAddress.getByAddress(hostAddress); InetAddress addr = InetAddress.getByAddress(hostAddress);
return addHostRoute(tracker, addr); return addHostRoute(tracker, addr, 0);
} catch (UnknownHostException e) {} } catch (UnknownHostException e) {}
return false; return false;
} }
@@ -924,24 +928,45 @@ public class ConnectivityService extends IConnectivityManager.Stub {
* TODO - deprecate * TODO - deprecate
* @return {@code true} on success, {@code false} on failure * @return {@code true} on success, {@code false} on failure
*/ */
private boolean addHostRoute(NetworkStateTracker nt, InetAddress hostAddress) { private boolean addHostRoute(NetworkStateTracker nt, InetAddress hostAddress, int cycleCount) {
if (nt.getNetworkInfo().getType() == ConnectivityManager.TYPE_WIFI) { if (nt.getNetworkInfo().getType() == ConnectivityManager.TYPE_WIFI) {
return false; return false;
} }
LinkProperties p = nt.getLinkProperties(); LinkProperties lp = nt.getLinkProperties();
if (p == null) return false; if ((lp == null) || (hostAddress == null)) return false;
String interfaceName = p.getInterfaceName();
String interfaceName = lp.getInterfaceName();
if (DBG) { if (DBG) {
log("Requested host route to " + hostAddress + "(" + interfaceName + ")"); log("Requested host route to " + hostAddress + "(" + interfaceName + "), cycleCount=" +
cycleCount);
} }
if (interfaceName != null) { if (interfaceName == null) {
return NetworkUtils.addHostRoute(interfaceName, hostAddress, null);
} else {
if (DBG) loge("addHostRoute failed due to null interface name"); if (DBG) loge("addHostRoute failed due to null interface name");
return false; return false;
} }
RouteInfo bestRoute = RouteInfo.selectBestRoute(lp.getRoutes(), hostAddress);
InetAddress gateway = null;
if (bestRoute != null) {
gateway = bestRoute.getGateway();
// if the best route is ourself, don't relf-reference, just add the host route
if (hostAddress.equals(gateway)) gateway = null;
}
if (gateway != null) {
if (cycleCount > MAX_HOSTROUTE_CYCLE_COUNT) {
loge("Error adding hostroute - too much recursion");
return false;
}
if (!addHostRoute(nt, gateway, cycleCount+1)) return false;
}
return NetworkUtils.addHostRoute(interfaceName, hostAddress, gateway);
}
// TODO support the removal of single host routes. Keep a ref count of them so we
// aren't over-zealous
private boolean removeHostRoute(NetworkStateTracker nt, InetAddress hostAddress) {
return false;
} }
/** /**
@@ -1393,7 +1418,7 @@ public class ConnectivityService extends IConnectivityManager.Stub {
Collection<InetAddress> dnsList = p.getDnses(); Collection<InetAddress> dnsList = p.getDnses();
for (InetAddress dns : dnsList) { for (InetAddress dns : dnsList) {
if (DBG) log(" adding " + dns); if (DBG) log(" adding " + dns);
NetworkUtils.addHostRoute(interfaceName, dns, null); addHostRoute(nt, dns, 0);
} }
nt.privateDnsRouteSet(true); nt.privateDnsRouteSet(true);
} }
@@ -1427,7 +1452,7 @@ public class ConnectivityService extends IConnectivityManager.Stub {
//TODO - handle non-default routes //TODO - handle non-default routes
if (route.isDefaultRoute()) { if (route.isDefaultRoute()) {
InetAddress gateway = route.getGateway(); InetAddress gateway = route.getGateway();
if (NetworkUtils.addHostRoute(interfaceName, gateway, null) && if (addHostRoute(nt, gateway, 0) &&
NetworkUtils.addDefaultRoute(interfaceName, gateway)) { NetworkUtils.addDefaultRoute(interfaceName, gateway)) {
if (DBG) { if (DBG) {
NetworkInfo networkInfo = nt.getNetworkInfo(); NetworkInfo networkInfo = nt.getNetworkInfo();