private int selectInternal(long timeout) throws IOException { closeCheck(); synchronized (this) { synchronized (keys) { synchronized (selectedKeys) { doCancel(); int[] readyChannels = null; boolean isBlock = (SELECT_NOW != timeout); // BEGIN android-removed // copied from newer version of harmony // if (keys.size() == 0) { // return 0; // } // END android-removed prepareChannels(); try { if (isBlock) { begin(); } readyChannels = Platform.getNetworkSystem().select(readable, writable, timeout); } finally { // clear results for next select readableFDs.clear(); writableFDs.clear(); if (isBlock) { end(); } } return processSelectResult(readyChannels); } } } }
/** * An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in * practice you'll have an instance of either {@code Inet4Address} or {@code Inet6Address} (this * class cannot be instantiated directly). Most code does not need to distinguish between the two * families, and should use {@code InetAddress}. * * <p>An {@code InetAddress} may have a hostname (accessible via {@code getHostName}), but may not, * depending on how the {@code InetAddress} was created. * * <p>On Android, addresses are cached for 600 seconds (10 minutes) by default. Failed lookups are * cached for 10 seconds. The underlying C library or OS may cache for longer, but you can control * the Java-level caching with the usual {@code "networkaddress.cache.ttl"} and {@code * "networkaddress.cache.negative.ttl"} system properties. These are parsed as integer numbers of * seconds, where the special value 0 means "don't cache" and -1 means "cache forever". * * <p>Note also that on Android – unlike the RI – the cache is not unbounded. The * current implementation caches around 512 entries, removed on a least-recently-used basis. * (Obviously, you should not rely on these details.) * * @see Inet4Address * @see Inet6Address */ public class InetAddress implements Serializable { // BEGIN android-added: better DNS caching. // Our Java-side DNS cache. private static final AddressCache addressCache = new AddressCache(); // END android-added private static final INetworkSystem NETIMPL = Platform.getNetworkSystem(); private static final String ERRMSG_CONNECTION_REFUSED = "Connection refused"; // $NON-NLS-1$ private static final long serialVersionUID = 3286316764910316507L; String hostName; private static class WaitReachable {} private transient Object waitReachable = new WaitReachable(); private boolean reached; private int addrCount; int family = 0; static final int AF_INET = 2; static final int AF_INET6 = 10; byte[] ipaddress; // BEGIN android-removed // // Fill in the JNI id caches // private static native void oneTimeInitialization(boolean supportsIPv6); // // static { // oneTimeInitialization(true); // } // END android-removed /** * Constructs an {@code InetAddress}. * * <p>Note: this constructor should not be used. Creating an InetAddress without specifying * whether it's an IPv4 or IPv6 address does not make sense, because subsequent code cannot know * which of of the subclasses' methods need to be called to implement a given InetAddress method. * The proper way to create an InetAddress is to call new Inet4Address or Inet6Address or to use * one of the static methods that return InetAddresses (e.g., getByAddress). That is why the API * does not have public constructors for any of these classes. */ InetAddress() { super(); } // BEGIN android-removed /** * Constructs an {@code InetAddress}, representing the {@code address} and {@code hostName}. * * @param address the network address. */ // InetAddress(byte[] address) { // super(); // this.ipaddress = address; // } // END android-removed // BEGIN android-removed /** * Constructs an {@code InetAddress}, representing the {@code address} and {@code hostName}. * * @param address the network address. */ // InetAddress(byte[] address, String hostName) { // super(); // this.ipaddress = address; // this.hostName = hostName; // } // END android-removed // BEGIN android-removed // CacheElement cacheElement() { // return new CacheElement(); // } // END android-removed /** * Compares this {@code InetAddress} instance against the specified address in {@code obj}. Two * addresses are equal if their address byte arrays have the same length and if the bytes in the * arrays are equal. * * @param obj the object to be tested for equality. * @return {@code true} if both objects are equal, {@code false} otherwise. */ @Override public boolean equals(Object obj) { // BEGIN android-changed if (!(obj instanceof InetAddress)) { return false; } return Arrays.equals(this.ipaddress, ((InetAddress) obj).ipaddress); // END android-changed } /** * Returns the IP address represented by this {@code InetAddress} instance as a byte array. The * elements are in network order (the highest order address byte is in the zeroth element). * * @return the address in form of a byte array. */ public byte[] getAddress() { return ipaddress.clone(); } // BEGIN android-added static final Comparator<byte[]> SHORTEST_FIRST = new Comparator<byte[]>() { public int compare(byte[] a1, byte[] a2) { return a1.length - a2.length; } }; /** * Converts an array of byte arrays representing raw IP addresses of a host to an array of * InetAddress objects, sorting to respect the value of the system property {@code * "java.net.preferIPv6Addresses"}. * * @param rawAddresses the raw addresses to convert. * @param hostName the hostname corresponding to the IP address. * @return the corresponding InetAddresses, appropriately sorted. */ static InetAddress[] bytesToInetAddresses(byte[][] rawAddresses, String hostName) { // If we prefer IPv4, ignore the RFC3484 ordering we get from getaddrinfo // and always put IPv4 addresses first. Arrays.sort() is stable, so the // internal ordering will not be changed. if (!NetUtil.preferIPv6Addresses()) { Arrays.sort(rawAddresses, SHORTEST_FIRST); } // Convert the byte arrays to InetAddresses. InetAddress[] returnedAddresses = new InetAddress[rawAddresses.length]; for (int i = 0; i < rawAddresses.length; i++) { byte[] rawAddress = rawAddresses[i]; if (rawAddress.length == 16) { returnedAddresses[i] = new Inet6Address(rawAddress, hostName); } else if (rawAddress.length == 4) { returnedAddresses[i] = new Inet4Address(rawAddress, hostName); } else { // Cannot happen, because the underlying code only returns // addresses that are 4 or 16 bytes long. throw new AssertionError("Impossible address length " + rawAddress.length); } } return returnedAddresses; } // END android-added /** * Gets all IP addresses associated with the given {@code host} identified by name or literal IP * address. The IP address is resolved by the configured name service. If the host name is empty * or {@code null} an {@code UnknownHostException} is thrown. If the host name is a literal IP * address string an array with the corresponding single {@code InetAddress} is returned. * * @param host the hostname or literal IP string to be resolved. * @return the array of addresses associated with the specified host. * @throws UnknownHostException if the address lookup fails. */ public static InetAddress[] getAllByName(String host) throws UnknownHostException { // BEGIN android-changed return getAllByNameImpl(host, true); // END android-changed } // BEGIN android-added /** * Implementation of getAllByName. * * @param host the hostname or literal IP string to be resolved. * @param returnUnshared requests a result that is modifiable by the caller. * @return the array of addresses associated with the specified host. * @throws UnknownHostException if the address lookup fails. */ static InetAddress[] getAllByNameImpl(String host, boolean returnUnshared) throws UnknownHostException { if (host == null || 0 == host.length()) { if (NetUtil.preferIPv6Addresses()) { return new InetAddress[] {Inet6Address.LOOPBACK, Inet4Address.LOOPBACK}; } else { return new InetAddress[] {Inet4Address.LOOPBACK, Inet6Address.LOOPBACK}; } } // Special-case "0" for legacy IPv4 applications. if (host.equals("0")) { // $NON-NLS-1$ return new InetAddress[] {Inet4Address.ANY}; } if (isHostName(host)) { SecurityManager security = System.getSecurityManager(); if (security != null) { security.checkConnect(host, -1); } if (returnUnshared) { return lookupHostByName(host).clone(); } else { return lookupHostByName(host); } } byte[] hBytes = NETIMPL.ipStringToByteArray(host); if (hBytes.length == 4) { return (new InetAddress[] {new Inet4Address(hBytes)}); } else if (hBytes.length == 16) { return (new InetAddress[] {new Inet6Address(hBytes)}); } else { throw new UnknownHostException(Msg.getString("K0339")); // $NON-NLS-1$ } } // END android-added /** * Returns the address of a host according to the given host string name {@code host}. The host * string may be either a machine name or a dotted string IP address. If the latter, the {@code * hostName} field is determined upon demand. {@code host} can be {@code null} which means that an * address of the loopback interface is returned. * * @param host the hostName to be resolved to an address or {@code null}. * @return the {@code InetAddress} instance representing the host. * @throws UnknownHostException if the address lookup fails. */ public static InetAddress getByName(String host) throws UnknownHostException { return getAllByNameImpl(host, false)[0]; } // BEGIN android-added /** * Returns the numeric string form of the given IP address. * * @param ipAddress the byte array to convert; length 4 for IPv4, 16 for IPv6. * @throws IllegalArgumentException if ipAddress is of length other than 4 or 16. */ private static String ipAddressToString(byte[] ipAddress) { try { return NETIMPL.byteArrayToIpString(ipAddress); } catch (IOException ex) { throw new IllegalArgumentException("byte[] neither 4 nor 16 bytes", ex); } } // END android-added /** * Gets the textual representation of this IP address. * * @return the textual representation of host's IP address. */ public String getHostAddress() { return ipAddressToString(ipaddress); } /** * Gets the host name of this IP address. If the IP address could not be resolved, the textual * representation in a dotted-quad-notation is returned. * * @return the corresponding string name of this IP address. */ public String getHostName() { try { if (hostName == null) { int address = 0; if (ipaddress.length == 4) { address = bytesToInt(ipaddress, 0); if (address == 0) { return hostName = ipAddressToString(ipaddress); } } hostName = getHostByAddrImpl(ipaddress).hostName; if (hostName.equals("localhost") && ipaddress.length == 4 // $NON-NLS-1$ && address != 0x7f000001) { return hostName = ipAddressToString(ipaddress); } } } catch (UnknownHostException e) { return hostName = ipAddressToString(ipaddress); } SecurityManager security = System.getSecurityManager(); try { // Only check host names, not addresses if (security != null && isHostName(hostName)) { security.checkConnect(hostName, -1); } } catch (SecurityException e) { return ipAddressToString(ipaddress); } return hostName; } /** * Gets the fully qualified domain name for the host associated with this IP address. If a * security manager is set, it is checked if the method caller is allowed to get the hostname. * Otherwise, the textual representation in a dotted-quad-notation is returned. * * @return the fully qualified domain name of this IP address. */ public String getCanonicalHostName() { String canonicalName; try { int address = 0; if (ipaddress.length == 4) { address = bytesToInt(ipaddress, 0); if (address == 0) { return ipAddressToString(ipaddress); } } canonicalName = getHostByAddrImpl(ipaddress).hostName; } catch (UnknownHostException e) { return ipAddressToString(ipaddress); } SecurityManager security = System.getSecurityManager(); try { // Only check host names, not addresses if (security != null && isHostName(canonicalName)) { security.checkConnect(canonicalName, -1); } } catch (SecurityException e) { return ipAddressToString(ipaddress); } return canonicalName; } /** * Returns an {@code InetAddress} for the local host if possible, or the loopback address * otherwise. This method works by getting the hostname, performing a DNS lookup, and then taking * the first returned address. For devices with multiple network interfaces and/or multiple * addresses per interface, this does not necessarily return the {@code InetAddress} you want. * * <p>Multiple interface/address configurations were relatively rare when this API was designed, * but multiple interfaces are the default for modern mobile devices (with separate wifi and radio * interfaces), and the need to support both IPv4 and IPv6 has made multiple addresses * commonplace. New code should thus avoid this method except where it's basically being used to * get a loopback address or equivalent. * * <p>There are two main ways to get a more specific answer: * * <ul> * <li>If you have a connected socket, you should probably use {@link Socket#getLocalAddress} * instead: that will give you the address that's actually in use for that connection. (It's * not possible to ask the question "what local address would a connection to a given remote * address use?"; you have to actually make the connection and see.) * <li>For other use cases, see {@link NetworkInterface}, which lets you enumerate all available * network interfaces and their addresses. * </ul> * * <p>Note that if the host doesn't have a hostname set – as Android devices typically * don't – this method will effectively return the loopback address, albeit by getting * the name {@code localhost} and then doing a lookup to translate that to {@code 127.0.0.1}. * * @return an {@code InetAddress} representing the local host, or the loopback address. * @throws UnknownHostException if the address lookup fails. */ public static InetAddress getLocalHost() throws UnknownHostException { String host = gethostname(); SecurityManager security = System.getSecurityManager(); try { if (security != null) { security.checkConnect(host, -1); } } catch (SecurityException e) { return Inet4Address.LOOPBACK; } return lookupHostByName(host)[0]; } private static native String gethostname(); /** * Gets the hashcode of the represented IP address. * * @return the appropriate hashcode value. */ @Override public int hashCode() { // BEGIN android-changed return Arrays.hashCode(ipaddress); // END android-changed } // BEGIN android-changed /* * Returns whether this address is an IP multicast address or not. This * implementation returns always {@code false}. * * @return {@code true} if this address is in the multicast group, {@code * false} otherwise. */ public boolean isMulticastAddress() { return false; } // END android-changed /** * Resolves a hostname to its IP addresses using a cache. * * @param host the hostname to resolve. * @return the IP addresses of the host. */ // BEGIN android-changed private static InetAddress[] lookupHostByName(String host) throws UnknownHostException { // Do we have a result cached? InetAddress[] cachedResult = addressCache.get(host); if (cachedResult != null) { if (cachedResult.length > 0) { // A cached positive result. return cachedResult; } else { // A cached negative result. throw new UnknownHostException(host); } } try { InetAddress[] addresses = bytesToInetAddresses(getaddrinfo(host), host); addressCache.put(host, addresses); return addresses; } catch (UnknownHostException e) { addressCache.putUnknownHost(host); throw new UnknownHostException(host); } } private static native byte[][] getaddrinfo(String name) throws UnknownHostException; // END android-changed // BEGIN android-deleted // static native InetAddress[] getAliasesByNameImpl(String name) // throws UnknownHostException; // END android-deleted /** * Query the IP stack for the host address. The host is in address form. * * @param addr the host address to lookup. * @throws UnknownHostException if an error occurs during lookup. */ // BEGIN android-changed // static native InetAddress getHostByAddrImpl(byte[] addr) // throws UnknownHostException; static InetAddress getHostByAddrImpl(byte[] addr) throws UnknownHostException { if (addr.length == 4) { return new Inet4Address(addr, getnameinfo(addr)); } else if (addr.length == 16) { return new Inet6Address(addr, getnameinfo(addr)); } else { throw new UnknownHostException(Msg.getString("K0339")); // $NON-NLS-1$ } } /** Resolves an IP address to a hostname. Thread safe. */ private static native String getnameinfo(byte[] addr); // END android-changed // BEGIN android-removed // static int inetAddr(String host) throws UnknownHostException // END android-removed // BEGIN android-removed // static native int inetAddrImpl(String host) throws UnknownHostException; // END android-removed // BEGIN android-removed // static native String inetNtoaImpl(int hipAddr); // END android-removed // BEGIN android-removed // static native InetAddress getHostByNameImpl(String name) throws UnknownHostException; // END android-removed static String getHostNameInternal(String host, boolean isCheck) throws UnknownHostException { if (host == null || 0 == host.length()) { return Inet4Address.LOOPBACK.getHostAddress(); } if (isHostName(host)) { if (isCheck) { SecurityManager sm = System.getSecurityManager(); if (sm != null) { sm.checkConnect(host, -1); } } return lookupHostByName(host)[0].getHostAddress(); } return host; } /** * Returns a string containing a concise, human-readable description of this IP address. * * @return the description, as host/address. */ @Override public String toString() { return (hostName == null ? "" : hostName) + "/" + getHostAddress(); // $NON-NLS-1$ //$NON-NLS-2$ } /** Returns true if the string is a host name, false if it is an IP Address. */ private static boolean isHostName(String value) { try { NETIMPL.ipStringToByteArray(value); return false; } catch (UnknownHostException e) { return true; } } /** * Returns whether this address is a loopback address or not. This implementation returns always * {@code false}. Valid IPv4 loopback addresses are 127.d.d.d The only valid IPv6 loopback address * is ::1. * * @return {@code true} if this instance represents a loopback address, {@code false} otherwise. */ public boolean isLoopbackAddress() { return false; } /** * Returns whether this address is a link-local address or not. This implementation returns always * {@code false}. * * <p>Valid IPv6 link-local addresses are FE80::0 through to * FEBF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF. * * <p>There are no valid IPv4 link-local addresses. * * @return {@code true} if this instance represents a link-local address, {@code false} otherwise. */ public boolean isLinkLocalAddress() { return false; } /** * Returns whether this address is a site-local address or not. This implementation returns always * {@code false}. * * <p>Valid IPv6 site-local addresses are FEC0::0 through to * FEFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF. * * <p>There are no valid IPv4 site-local addresses. * * @return {@code true} if this instance represents a site-local address, {@code false} otherwise. */ public boolean isSiteLocalAddress() { return false; } /** * Returns whether this address is a global multicast address or not. This implementation returns * always {@code false}. * * <p>Valid IPv6 link-global multicast addresses are FFxE:/112 where x is a set of flags, and the * additional 112 bits make up the global multicast address space. * * <p>Valid IPv4 global multicast addresses are between: 224.0.1.0 to 238.255.255.255. * * @return {@code true} if this instance represents a global multicast address, {@code false} * otherwise. */ public boolean isMCGlobal() { return false; } /** * Returns whether this address is a node-local multicast address or not. This implementation * returns always {@code false}. * * <p>Valid IPv6 node-local multicast addresses are FFx1:/112 where x is a set of flags, and the * additional 112 bits make up the node-local multicast address space. * * <p>There are no valid IPv4 node-local multicast addresses. * * @return {@code true} if this instance represents a node-local multicast address, {@code false} * otherwise. */ public boolean isMCNodeLocal() { return false; } /** * Returns whether this address is a link-local multicast address or not. This implementation * returns always {@code false}. * * <p>Valid IPv6 link-local multicast addresses are FFx2:/112 where x is a set of flags, and the * additional 112 bits make up the link-local multicast address space. * * <p>Valid IPv4 link-local addresses are between: 224.0.0.0 to 224.0.0.255 * * @return {@code true} if this instance represents a link-local multicast address, {@code false} * otherwise. */ public boolean isMCLinkLocal() { return false; } /** * Returns whether this address is a site-local multicast address or not. This implementation * returns always {@code false}. * * <p>Valid IPv6 site-local multicast addresses are FFx5:/112 where x is a set of flags, and the * additional 112 bits make up the site-local multicast address space. * * <p>Valid IPv4 site-local addresses are between: 239.252.0.0 to 239.255.255.255 * * @return {@code true} if this instance represents a site-local multicast address, {@code false} * otherwise. */ public boolean isMCSiteLocal() { return false; } /** * Returns whether this address is a organization-local multicast address or not. This * implementation returns always {@code false}. * * <p>Valid IPv6 organization-local multicast addresses are FFx8:/112 where x is a set of flags, * and the additional 112 bits make up the organization-local multicast address space. * * <p>Valid IPv4 organization-local addresses are between: 239.192.0.0 to 239.251.255.255 * * @return {@code true} if this instance represents a organization-local multicast address, {@code * false} otherwise. */ public boolean isMCOrgLocal() { return false; } /** * Returns whether this is a wildcard address or not. This implementation returns always {@code * false}. * * @return {@code true} if this instance represents a wildcard address, {@code false} otherwise. */ public boolean isAnyLocalAddress() { return false; } /** * Tries to reach this {@code InetAddress}. This method first tries to use ICMP <i>(ICMP ECHO * REQUEST)</i>. When first step fails, a TCP connection on port 7 (Echo) of the remote host is * established. * * @param timeout timeout in milliseconds before the test fails if no connection could be * established. * @return {@code true} if this address is reachable, {@code false} otherwise. * @throws IOException if an error occurs during an I/O operation. * @throws IllegalArgumentException if timeout is less than zero. */ public boolean isReachable(int timeout) throws IOException { return isReachable(null, 0, timeout); } /** * Tries to reach this {@code InetAddress}. This method first tries to use ICMP <i>(ICMP ECHO * REQUEST)</i>. When first step fails, a TCP connection on port 7 (Echo) of the remote host is * established. * * @param netif the network interface on which to connection should be established. * @param ttl the maximum count of hops (time-to-live). * @param timeout timeout in milliseconds before the test fails if no connection could be * established. * @return {@code true} if this address is reachable, {@code false} otherwise. * @throws IOException if an error occurs during an I/O operation. * @throws IllegalArgumentException if ttl or timeout is less than zero. */ public boolean isReachable(NetworkInterface netif, final int ttl, final int timeout) throws IOException { if (0 > ttl || 0 > timeout) { throw new IllegalArgumentException(Msg.getString("K0051")); // $NON-NLS-1$ } boolean reachable = false; if (null == netif) { // network interface is null, binds to no address // BEGIN android-changed // reachable = NETIMPL.isReachableByICMP(this, null, ttl, timeout); // if (!reachable) { reachable = isReachableByTCP(this, null, timeout); // } // END android-changed } else { // Not Bind to any address if (null == netif.addresses) { return false; } // binds to all address on this NetworkInterface, tries ICMP ping // first // BEGIN android-changed // reachable = isReachableByICMPUseMultiThread(netif, ttl, timeout); // if (!reachable) { // tries TCP echo if ICMP ping fails reachable = isReachableByMultiThread(netif, ttl, timeout); // } // END adnroid-changed } return reachable; } /* * Uses multi-Thread to try if isReachable, returns true if any of threads * returns in time */ // BEGIN android-changed private boolean isReachableByMultiThread(NetworkInterface netif, final int ttl, final int timeout) // END android-changed throws IOException { if (null == netif.addresses) { return false; } Enumeration<InetAddress> addresses = netif.getInetAddresses(); reached = false; addrCount = netif.addresses.length; boolean needWait = false; while (addresses.hasMoreElements()) { final InetAddress addr = addresses.nextElement(); // loopback interface can only reach to local addresses if (addr.isLoopbackAddress()) { Enumeration<NetworkInterface> NetworkInterfaces = NetworkInterface.getNetworkInterfaces(); while (NetworkInterfaces.hasMoreElements()) { NetworkInterface networkInterface = NetworkInterfaces.nextElement(); Enumeration<InetAddress> localAddresses = networkInterface.getInetAddresses(); while (localAddresses.hasMoreElements()) { if (InetAddress.this.equals(localAddresses.nextElement())) { return true; } } } synchronized (waitReachable) { addrCount--; if (addrCount == 0) { // if count equals zero, all thread // expired,notifies main thread waitReachable.notifyAll(); } } continue; } needWait = true; new Thread() { @Override public void run() { boolean threadReached = false; // BEGIN android-changed // if isICMP, tries ICMP ping, else TCP echo // if (isICMP) { // threadReached = NETIMPL.isReachableByICMP( // InetAddress.this, addr, ttl, timeout); // } else { try { threadReached = isReachableByTCP(addr, InetAddress.this, timeout); } catch (IOException e) { // do nothing } // } // END android-changed synchronized (waitReachable) { if (threadReached) { // if thread reached this address, sets reached to // true and notifies main thread reached = true; waitReachable.notifyAll(); } else { addrCount--; if (0 == addrCount) { // if count equals zero, all thread // expired,notifies main thread waitReachable.notifyAll(); } } } } }.start(); } if (needWait) { synchronized (waitReachable) { try { while (!reached && (addrCount != 0)) { // wait for notification waitReachable.wait(1000); } } catch (InterruptedException e) { // do nothing } return reached; } } return false; } // BEGIN android-removed // private boolean isReachableByICMPUseMultiThread(NetworkInterface netif, // int ttl, int timeout) throws IOException { // return isReachableByMultiThread(netif, ttl, timeout, true); // } // // private boolean isReachableByTCPUseMultiThread(NetworkInterface netif, // int ttl, int timeout) throws IOException { // return isReachableByMultiThread(netif, ttl, timeout, false); // } // END android-removed private boolean isReachableByTCP(InetAddress dest, InetAddress source, int timeout) throws IOException { FileDescriptor fd = new FileDescriptor(); // define traffic only for parameter int traffic = 0; boolean reached = false; NETIMPL.createStreamSocket(fd, NetUtil.preferIPv4Stack()); try { if (null != source) { NETIMPL.bind(fd, source, 0); } NETIMPL.connectStreamWithTimeoutSocket(fd, 7, timeout, traffic, dest); reached = true; } catch (IOException e) { if (ERRMSG_CONNECTION_REFUSED.equals(e.getMessage())) { // Connection refused means the IP is reachable reached = true; } } NETIMPL.socketClose(fd); return reached; } /** * Returns the {@code InetAddress} corresponding to the array of bytes. In the case of an IPv4 * address there must be exactly 4 bytes and for IPv6 exactly 16 bytes. If not, an {@code * UnknownHostException} is thrown. * * <p>The IP address is not validated by a name service. * * <p>The high order byte is {@code ipAddress[0]}. * * @param ipAddress is either a 4 (IPv4) or 16 (IPv6) byte long array. * @return an {@code InetAddress} instance representing the given IP address {@code ipAddress}. * @throws UnknownHostException if the given byte array has no valid length. */ public static InetAddress getByAddress(byte[] ipAddress) throws UnknownHostException { // simply call the method by the same name specifying the default scope // id of 0 return getByAddressInternal(null, ipAddress, 0); } /** * Returns the {@code InetAddress} corresponding to the array of bytes. In the case of an IPv4 * address there must be exactly 4 bytes and for IPv6 exactly 16 bytes. If not, an {@code * UnknownHostException} is thrown. The IP address is not validated by a name service. The high * order byte is {@code ipAddress[0]}. * * @param ipAddress either a 4 (IPv4) or 16 (IPv6) byte array. * @param scope_id the scope id for an IPV6 scoped address. If not a scoped address just pass in * 0. * @return the InetAddress * @throws UnknownHostException */ static InetAddress getByAddress(byte[] ipAddress, int scope_id) throws UnknownHostException { return getByAddressInternal(null, ipAddress, scope_id); } private static boolean isIPv4MappedAddress(byte ipAddress[]) { // Check if the address matches ::FFFF:d.d.d.d // The first 10 bytes are 0. The next to are -1 (FF). // The last 4 bytes are varied. if (ipAddress == null || ipAddress.length != 16) { return false; } for (int i = 0; i < 10; i++) { if (ipAddress[i] != 0) { return false; } } if (ipAddress[10] != -1 || ipAddress[11] != -1) { return false; } return true; } private static byte[] ipv4MappedToIPv4(byte[] mappedAddress) { byte[] ipv4Address = new byte[4]; for (int i = 0; i < 4; i++) { ipv4Address[i] = mappedAddress[12 + i]; } return ipv4Address; } /** * Returns the {@code InetAddress} corresponding to the array of bytes, and the given hostname. In * the case of an IPv4 address there must be exactly 4 bytes and for IPv6 exactly 16 bytes. If * not, an {@code UnknownHostException} will be thrown. * * <p>The host name and IP address are not validated. * * <p>The hostname either be a machine alias or a valid IPv6 or IPv4 address format. * * <p>The high order byte is {@code ipAddress[0]}. * * @param hostName the string representation of hostname or IP address. * @param ipAddress either a 4 (IPv4) or 16 (IPv6) byte long array. * @return an {@code InetAddress} instance representing the given IP address and hostname. * @throws UnknownHostException if the given byte array has no valid length. */ public static InetAddress getByAddress(String hostName, byte[] ipAddress) throws UnknownHostException { // just call the method by the same name passing in a default scope id // of 0 return getByAddressInternal(hostName, ipAddress, 0); } /** * Returns the {@code InetAddress} corresponding to the array of bytes, and the given hostname. In * the case of an IPv4 address there must be exactly 4 bytes and for IPv6 exactly 16 bytes. If * not, an {@code UnknownHostException} is thrown. The host name and IP address are not validated. * The hostname either be a machine alias or a valid IPv6 or IPv4 address format. The high order * byte is {@code ipAddress[0]}. * * @param hostName string representation of hostname or IP address. * @param ipAddress either a 4 (IPv4) or 16 (IPv6) byte array. * @param scope_id the scope id for a scoped address. If not a scoped address just pass in 0. * @return the InetAddress * @throws UnknownHostException */ static InetAddress getByAddressInternal(String hostName, byte[] ipAddress, int scope_id) throws UnknownHostException { if (ipAddress == null) { // We don't throw NullPointerException here for RI compatibility, // but we do say "address is null" (K0331), instead of "addr is of // illegal length". throw new UnknownHostException(Msg.getString("K0331", hostName)); // $NON-NLS-1$ } switch (ipAddress.length) { case 4: return new Inet4Address(ipAddress.clone()); case 16: // First check to see if the address is an IPv6-mapped // IPv4 address. If it is, then we can make it a IPv4 // address, otherwise, we'll create an IPv6 address. if (isIPv4MappedAddress(ipAddress)) { return new Inet4Address(ipv4MappedToIPv4(ipAddress)); } else { return new Inet6Address(ipAddress.clone(), scope_id); } default: if (hostName != null) { // "Invalid IP Address is neither 4 or 16 bytes: <hostName>" throw new UnknownHostException(Msg.getString("K0332", hostName)); // $NON-NLS-1$ } else { // "Invalid IP Address is neither 4 or 16 bytes" throw new UnknownHostException(Msg.getString("K0339")); // $NON-NLS-1$ } } } /** * Takes the integer and chops it into 4 bytes, putting it into the byte array starting with the * high order byte at the index start. This method makes no checks on the validity of the * parameters. */ static void intToBytes(int value, byte bytes[], int start) { // Shift the int so the current byte is right-most // Use a byte mask of 255 to single out the last byte. bytes[start] = (byte) ((value >> 24) & 255); bytes[start + 1] = (byte) ((value >> 16) & 255); bytes[start + 2] = (byte) ((value >> 8) & 255); bytes[start + 3] = (byte) (value & 255); } /** * Takes the byte array and creates an integer out of four bytes starting at start as the * high-order byte. This method makes no checks on the validity of the parameters. */ static int bytesToInt(byte bytes[], int start) { // First mask the byte with 255, as when a negative // signed byte converts to an integer, it has bits // on in the first 3 bytes, we are only concerned // about the right-most 8 bits. // Then shift the rightmost byte to align with its // position in the integer. int value = ((bytes[start + 3] & 255)) | ((bytes[start + 2] & 255) << 8) | ((bytes[start + 1] & 255) << 16) | ((bytes[start] & 255) << 24); return value; } private static final ObjectStreamField[] serialPersistentFields = { new ObjectStreamField("address", Integer.TYPE), // $NON-NLS-1$ new ObjectStreamField("family", Integer.TYPE), // $NON-NLS-1$ new ObjectStreamField("hostName", String.class) }; //$NON-NLS-1$ private void writeObject(ObjectOutputStream stream) throws IOException { ObjectOutputStream.PutField fields = stream.putFields(); if (ipaddress == null) { fields.put("address", 0); // $NON-NLS-1$ } else { fields.put("address", bytesToInt(ipaddress, 0)); // $NON-NLS-1$ } fields.put("family", family); // $NON-NLS-1$ fields.put("hostName", hostName); // $NON-NLS-1$ stream.writeFields(); } private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { ObjectInputStream.GetField fields = stream.readFields(); int addr = fields.get("address", 0); // $NON-NLS-1$ ipaddress = new byte[4]; intToBytes(addr, ipaddress, 0); hostName = (String) fields.get("hostName", null); // $NON-NLS-1$ family = fields.get("family", 2); // $NON-NLS-1$ } /* * The spec requires that if we encounter a generic InetAddress in * serialized form then we should interpret it as an Inet4 address. */ private Object readResolve() throws ObjectStreamException { return new Inet4Address(ipaddress, hostName); } }
/** A concrete connected-socket implementation. */ public class PlainSocketImpl extends SocketImpl { // Const copy from socket static final int MULTICAST_IF = 1; static final int MULTICAST_TTL = 2; static final int TCP_NODELAY = 4; static final int FLAG_SHUTDOWN = 8; // For SOCKS support. A SOCKS bind() uses the last // host connected to in its request. private static InetAddress lastConnectedAddress; private static int lastConnectedPort; private static Field fdField; private static Field localportField; private boolean tcpNoDelay = true; /** * used to store the trafficClass value which is simply returned as the value that was set. We * also need it to pass it to methods that specify an address packets are going to be sent to */ private int trafficClass; protected INetworkSystem netImpl = Platform.getNetworkSystem(); public int receiveTimeout = 0; public boolean streaming = true; public boolean shutdownInput; Proxy proxy; public PlainSocketImpl() { super(); fd = new FileDescriptor(); } public PlainSocketImpl(FileDescriptor fd) { super(); this.fd = fd; } /** creates an instance with specified proxy. */ public PlainSocketImpl(Proxy proxy) { this(); this.proxy = proxy; } public PlainSocketImpl(FileDescriptor fd, int localport, InetAddress addr, int port) { super(); this.fd = fd; this.localport = localport; this.address = addr; this.port = port; } @Override protected void accept(SocketImpl newImpl) throws IOException { if (NetUtil.usingSocks(proxy)) { ((PlainSocketImpl) newImpl).socksBind(); ((PlainSocketImpl) newImpl).socksAccept(); return; } try { if (newImpl instanceof PlainSocketImpl) { PlainSocketImpl newPlainSocketImpl = (PlainSocketImpl) newImpl; // BEGIN android-changed // call accept instead of acceptStreamImpl (native impl is identical) netImpl.accept(fd, newImpl, newPlainSocketImpl.getFileDescriptor(), receiveTimeout); // END android-changed newPlainSocketImpl.setLocalport(getLocalPort()); } else { // if newImpl is not an instance of PlainSocketImpl, use // reflection to get/set protected fields. if (null == fdField) { fdField = getSocketImplField("fd"); // $NON-NLS-1$ } FileDescriptor newFd = (FileDescriptor) fdField.get(newImpl); // BEGIN android-changed // call accept instead of acceptStreamImpl (native impl is identical) netImpl.accept(fd, newImpl, newFd, receiveTimeout); // END android-cahnged if (null == localportField) { localportField = getSocketImplField("localport"); // $NON-NLS-1$ } localportField.setInt(newImpl, getLocalPort()); } } catch (InterruptedIOException e) { throw new SocketTimeoutException(e.getMessage()); } catch (IllegalAccessException e) { // empty } } /** gets SocketImpl field by reflection. */ private Field getSocketImplField(final String fieldName) { return AccessController.doPrivileged( new PrivilegedAction<Field>() { public Field run() { Field field = null; try { field = SocketImpl.class.getDeclaredField(fieldName); field.setAccessible(true); } catch (NoSuchFieldException e) { throw new Error(e); } return field; } }); } @Override protected synchronized int available() throws IOException { // we need to check if the input has been shutdown. If so // we should return that there is no data to be read if (shutdownInput == true) { return 0; } return netImpl.availableStream(fd); } @Override protected void bind(InetAddress anAddr, int aPort) throws IOException { netImpl.bind(fd, anAddr, aPort); // PlainSocketImpl2.socketBindImpl2(fd, aPort, anAddr); address = anAddr; if (0 != aPort) { localport = aPort; } else { localport = netImpl.getSocketLocalPort(fd, NetUtil.preferIPv6Addresses()); } } @Override protected void close() throws IOException { synchronized (fd) { if (fd.valid()) { if ((netImpl.getSocketFlags() & FLAG_SHUTDOWN) != 0) { try { shutdownOutput(); } catch (Exception e) { } } netImpl.socketClose(fd); fd = new FileDescriptor(); } } } @Override protected void connect(String aHost, int aPort) throws IOException { InetAddress anAddr = netImpl.getHostByName(aHost, NetUtil.preferIPv6Addresses()); connect(anAddr, aPort); } @Override protected void connect(InetAddress anAddr, int aPort) throws IOException { connect(anAddr, aPort, 0); } /** * Connects this socket to the specified remote host address/port. * * @param anAddr the remote host address to connect to * @param aPort the remote port to connect to * @param timeout a timeout where supported. 0 means no timeout * @throws IOException if an error occurs while connecting */ private void connect(InetAddress anAddr, int aPort, int timeout) throws IOException { InetAddress normalAddr = anAddr.isAnyLocalAddress() ? InetAddress.getLocalHost() : anAddr; try { if (streaming) { if (NetUtil.usingSocks(proxy)) { socksConnect(anAddr, aPort, 0); } else { if (timeout == 0) { netImpl.connect(fd, trafficClass, normalAddr, aPort); } else { netImpl.connectStreamWithTimeoutSocket(fd, aPort, timeout, trafficClass, normalAddr); } } } else { netImpl.connectDatagram(fd, aPort, trafficClass, normalAddr); } } catch (ConnectException e) { throw new ConnectException(anAddr + ":" + aPort + " - " + e.getMessage()); } super.address = normalAddr; super.port = aPort; } @Override protected void create(boolean streaming) throws IOException { this.streaming = streaming; if (streaming) { netImpl.createStreamSocket(fd, NetUtil.preferIPv4Stack()); } else { netImpl.createDatagramSocket(fd, NetUtil.preferIPv4Stack()); } } @Override protected void finalize() throws IOException { close(); } @Override protected synchronized InputStream getInputStream() throws IOException { if (!fd.valid()) { throw new SocketException(Msg.getString("K003d")); } return new SocketInputStream(this); } @Override public Object getOption(int optID) throws SocketException { if (optID == SocketOptions.SO_TIMEOUT) { return Integer.valueOf(receiveTimeout); } else if (optID == SocketOptions.IP_TOS) { return Integer.valueOf(trafficClass); } else { // Call the native first so there will be // an exception if the socket if closed. Object result = netImpl.getSocketOption(fd, optID); if (optID == SocketOptions.TCP_NODELAY && (netImpl.getSocketFlags() & TCP_NODELAY) != 0) { return Boolean.valueOf(tcpNoDelay); } return result; } } @Override protected synchronized OutputStream getOutputStream() throws IOException { if (!fd.valid()) { throw new SocketException(Msg.getString("K003d")); // $NON-NLS-1$ } return new SocketOutputStream(this); } @Override protected void listen(int backlog) throws IOException { if (NetUtil.usingSocks(proxy)) { // Do nothing for a SOCKS connection. The listen occurs on the // server during the bind. return; } netImpl.listenStreamSocket(fd, backlog); } @Override public void setOption(int optID, Object val) throws SocketException { if (optID == SocketOptions.SO_TIMEOUT) { receiveTimeout = ((Integer) val).intValue(); } else { try { netImpl.setSocketOption(fd, optID, val); if (optID == SocketOptions.TCP_NODELAY && (netImpl.getSocketFlags() & TCP_NODELAY) != 0) { tcpNoDelay = ((Boolean) val).booleanValue(); } } catch (SocketException e) { // we don't throw an exception for IP_TOS even if the platform // won't let us set the requested value if (optID != SocketOptions.IP_TOS) { throw e; } } /* * save this value as it is actually used differently for IPv4 and * IPv6 so we cannot get the value using the getOption. The option * is actually only set for IPv4 and a masked version of the value * will be set as only a subset of the values are allowed on the * socket. Therefore we need to retain it to return the value that * was set. We also need the value to be passed into a number of * natives so that it can be used properly with IPv6 */ if (optID == SocketOptions.IP_TOS) { trafficClass = ((Integer) val).intValue(); } } } /** Gets the SOCKS proxy server port. */ private int socksGetServerPort() { // get socks server port from proxy. It is unnecessary to check // "socksProxyPort" property, since proxy setting should only be // determined by ProxySelector. InetSocketAddress addr = (InetSocketAddress) proxy.address(); return addr.getPort(); } /** Gets the InetAddress of the SOCKS proxy server. */ private InetAddress socksGetServerAddress() throws UnknownHostException { String proxyName; // get socks server address from proxy. It is unnecessary to check // "socksProxyHost" property, since all proxy setting should be // determined by ProxySelector. InetSocketAddress addr = (InetSocketAddress) proxy.address(); proxyName = addr.getHostName(); if (null == proxyName) { proxyName = addr.getAddress().getHostAddress(); } InetAddress anAddr = netImpl.getHostByName(proxyName, NetUtil.preferIPv6Addresses()); return anAddr; } /** Connect using a SOCKS server. */ private void socksConnect( InetAddress applicationServerAddress, int applicationServerPort, int timeout) throws IOException { try { if (timeout == 0) { netImpl.connect(fd, trafficClass, socksGetServerAddress(), socksGetServerPort()); } else { netImpl.connectStreamWithTimeoutSocket( fd, socksGetServerPort(), timeout, trafficClass, socksGetServerAddress()); } } catch (Exception e) { throw new SocketException(Msg.getString("K003e", e)); // $NON-NLS-1$ } socksRequestConnection(applicationServerAddress, applicationServerPort); lastConnectedAddress = applicationServerAddress; lastConnectedPort = applicationServerPort; } /** * Request a SOCKS connection to the application server given. If the request fails to complete * successfully, an exception is thrown. */ private void socksRequestConnection( InetAddress applicationServerAddress, int applicationServerPort) throws IOException { socksSendRequest( Socks4Message.COMMAND_CONNECT, applicationServerAddress, applicationServerPort); Socks4Message reply = socksReadReply(); if (reply.getCommandOrResult() != Socks4Message.RETURN_SUCCESS) { throw new IOException(reply.getErrorString(reply.getCommandOrResult())); } } /** Perform an accept for a SOCKS bind. */ public void socksAccept() throws IOException { Socks4Message reply = socksReadReply(); if (reply.getCommandOrResult() != Socks4Message.RETURN_SUCCESS) { throw new IOException(reply.getErrorString(reply.getCommandOrResult())); } } /** Shutdown the input portion of the socket. */ @Override protected void shutdownInput() throws IOException { shutdownInput = true; netImpl.shutdownInput(fd); } /** Shutdown the output portion of the socket. */ @Override protected void shutdownOutput() throws IOException { netImpl.shutdownOutput(fd); } /** Bind using a SOCKS server. */ private void socksBind() throws IOException { try { netImpl.connect(fd, trafficClass, socksGetServerAddress(), socksGetServerPort()); } catch (Exception e) { throw new IOException(Msg.getString("K003f", e)); // $NON-NLS-1$ } // There must be a connection to an application host for the bind to // work. if (lastConnectedAddress == null) { throw new SocketException(Msg.getString("K0040")); // $NON-NLS-1$ } // Use the last connected address and port in the bind request. socksSendRequest(Socks4Message.COMMAND_BIND, lastConnectedAddress, lastConnectedPort); Socks4Message reply = socksReadReply(); if (reply.getCommandOrResult() != Socks4Message.RETURN_SUCCESS) { throw new IOException(reply.getErrorString(reply.getCommandOrResult())); } // A peculiarity of socks 4 - if the address returned is 0, use the // original socks server address. if (reply.getIP() == 0) { address = socksGetServerAddress(); } else { // IPv6 support not yet required as // currently the Socks4Message.getIP() only returns int, // so only works with IPv4 4byte addresses byte[] replyBytes = new byte[4]; NetUtil.intToBytes(reply.getIP(), replyBytes, 0); address = InetAddress.getByAddress(replyBytes); } localport = reply.getPort(); } /** Send a SOCKS V4 request. */ private void socksSendRequest(int command, InetAddress address, int port) throws IOException { Socks4Message request = new Socks4Message(); request.setCommandOrResult(command); request.setPort(port); request.setIP(address.getAddress()); request.setUserId("default"); // $NON-NLS-1$ getOutputStream().write(request.getBytes(), 0, request.getLength()); } /** Read a SOCKS V4 reply. */ private Socks4Message socksReadReply() throws IOException { Socks4Message reply = new Socks4Message(); int bytesRead = 0; while (bytesRead < Socks4Message.REPLY_LENGTH) { int count = getInputStream() .read(reply.getBytes(), bytesRead, Socks4Message.REPLY_LENGTH - bytesRead); if (-1 == count) { break; } bytesRead += count; } if (Socks4Message.REPLY_LENGTH != bytesRead) { throw new SocketException(Msg.getString("KA011")); // $NON-NLS-1$ } return reply; } @Override protected void connect(SocketAddress remoteAddr, int timeout) throws IOException { InetSocketAddress inetAddr = (InetSocketAddress) remoteAddr; connect(inetAddr.getAddress(), inetAddr.getPort(), timeout); } /** Answer if the socket supports urgent data. */ @Override protected boolean supportsUrgentData() { return !streaming || netImpl.supportsUrgentData(fd); } @Override protected void sendUrgentData(int value) throws IOException { netImpl.sendUrgentData(fd, (byte) value); } FileDescriptor getFD() { return fd; } private void setLocalport(int localport) { this.localport = localport; } int read(byte[] buffer, int offset, int count) throws IOException { if (shutdownInput) { return -1; } // BEGIN android-changed // call receiveStream() instead of read() int read = netImpl.receiveStream(fd, buffer, offset, count, receiveTimeout); // END android-changed // Return of zero bytes for a blocking socket means a timeout occurred if (read == 0) { throw new SocketTimeoutException(); } // Return of -1 indicates the peer was closed if (read == -1) { shutdownInput = true; } return read; } int write(byte[] buffer, int offset, int count) throws IOException { if (!streaming) { return netImpl.sendDatagram2(fd, buffer, offset, count, port, address); } // BEGIN android-changed // call sendStream() instead of write() return netImpl.sendStream(fd, buffer, offset, count); // END android-changed } }