/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package java.net; import dalvik.system.BlockGuard; import java.io.FileDescriptor; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.ObjectStreamException; import java.io.ObjectStreamField; import java.io.Serializable; import java.nio.ByteOrder; import java.util.Arrays; import java.util.Collections; import java.util.Comparator; import java.util.Enumeration; import java.util.List; import org.apache.harmony.luni.platform.OSMemory; import org.apache.harmony.luni.platform.Platform; /** * 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}. * *

An {@code InetAddress} may have a hostname (accessible via {@code getHostName}), but may not, * depending on how the {@code InetAddress} was created. * *

IPv4 numeric address formats

*

The {@code getAllByName} method accepts IPv4 addresses in the following forms: *

*

In the first three cases, each number is treated as an 8-bit value between 0 and 255. * In the fourth case, the single number is treated as a 32-bit value representing the entire * address. *

Note that each numeric part can be expressed in decimal (as above) or hex. For example, * {@code "0x01020304"} is equivalent to 1.2.3.4 and {@code "0xa.0xb.0xc.0xd"} is equivalent * to 10.11.12.13. * *

Typically, only the four-dot decimal form ({@code "1.2.3.4"}) is ever used. Any method that * returns a textual numeric address will use four-dot decimal form. * *

IPv6 numeric address formats

*

The {@code getAllByName} method accepts IPv6 addresses in the following forms (this text * comes from RFC 2373, which you should consult * for full details of IPv6 addressing): *

*

Scopes are given using a trailing {@code %} followed by the scope id, as in * {@code 1080::8:800:200C:417A%2} or {@code 1080::8:800:200C:417A%en0}. * See RFC 4007 for more on IPv6's scoped * address architecture. * *

Additionally, for backwards compatibility, IPv6 addresses may be surrounded by square * brackets. * *

DNS caching

*

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". * *

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 { /** Our Java-side DNS cache. */ private static final AddressCache addressCache = new AddressCache(); private static final String ERRMSG_CONNECTION_REFUSED = "Connection refused"; 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; byte[] ipaddress; /** * Constructs an {@code InetAddress}. * * 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() {} /** * 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) { if (!(obj instanceof InetAddress)) { return false; } return Arrays.equals(this.ipaddress, ((InetAddress) obj).ipaddress); } /** * 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(); } static final Comparator SHORTEST_FIRST = new Comparator() { 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) throws UnknownHostException { // If we prefer IPv4, ignore the RFC3484 ordering we get from getaddrinfo(3) // and always put IPv4 addresses first. Arrays.sort() is stable, so the // internal ordering will not be changed. if (!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++) { returnedAddresses[i] = makeInetAddress(rawAddresses[i], hostName); } return returnedAddresses; } /** * 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 { return getAllByNameImpl(host).clone(); } /** * Returns the InetAddresses for {@code host}. The returned array is shared * and must be cloned before it is returned to application code. */ static InetAddress[] getAllByNameImpl(String host) throws UnknownHostException { if (host == null || host.isEmpty()) { return loopbackAddresses(); } // Special-case "0" for legacy IPv4 applications. if (host.equals("0")) { return new InetAddress[] { Inet4Address.ANY }; } // Is it a numeric address? byte[] bytes = ipStringToByteArray(host); if (bytes != null) { return new InetAddress[] { makeInetAddress(bytes, null) }; } return lookupHostByName(host); } private static InetAddress makeInetAddress(byte[] bytes, String hostName) throws UnknownHostException { if (bytes.length == 4) { return new Inet4Address(bytes, hostName); } else if (bytes.length == 16) { return new Inet6Address(bytes, hostName, 0); } else { throw badAddressLength(bytes); } } private static native String byteArrayToIpString(byte[] address); static native byte[] ipStringToByteArray(String address); static boolean preferIPv6Addresses() { String propertyValue = System.getProperty("java.net.preferIPv6Addresses"); return Boolean.parseBoolean(propertyValue); } /** * 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)[0]; } /** * Gets the textual representation of this IP address. * * @return the textual representation of host's IP address. */ public String getHostAddress() { return byteArrayToIpString(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 = OSMemory.peekInt(ipaddress, 0, ByteOrder.BIG_ENDIAN); if (address == 0) { return hostName = byteArrayToIpString(ipaddress); } } hostName = getHostByAddrImpl(ipaddress).hostName; if (hostName.equals("localhost") && ipaddress.length == 4 && address != 0x7f000001) { return hostName = byteArrayToIpString(ipaddress); } } } catch (UnknownHostException e) { return hostName = byteArrayToIpString(ipaddress); } return hostName; } /** * Returns the fully qualified domain name for the host associated with this IP * address. */ public String getCanonicalHostName() { String canonicalName; try { int address = 0; if (ipaddress.length == 4) { address = OSMemory.peekInt(ipaddress, 0, ByteOrder.BIG_ENDIAN); if (address == 0) { return byteArrayToIpString(ipaddress); } } canonicalName = getHostByAddrImpl(ipaddress).hostName; } catch (UnknownHostException e) { return byteArrayToIpString(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. * *

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. * *

There are two main ways to get a more specific answer: *

* *

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(); 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() { return Arrays.hashCode(ipaddress); } /* * 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; } /** * Resolves a hostname to its IP addresses using a cache. * * @param host the hostname to resolve. * @return the IP addresses of the host. */ private static InetAddress[] lookupHostByName(String host) throws UnknownHostException { BlockGuard.getThreadPolicy().onNetwork(); // Do we have a result cached? Object cachedResult = addressCache.get(host); if (cachedResult != null) { if (cachedResult instanceof InetAddress[]) { // A cached positive result. return (InetAddress[]) cachedResult; } else { // A cached negative result. throw new UnknownHostException((String) cachedResult); } } try { InetAddress[] addresses = bytesToInetAddresses(getaddrinfo(host), host); addressCache.put(host, addresses); return addresses; } catch (UnknownHostException e) { String detailMessage = e.getMessage(); addressCache.putUnknownHost(host, detailMessage); throw new UnknownHostException(detailMessage); } } private static native byte[][] getaddrinfo(String name) throws UnknownHostException; /** * Removes all entries from the VM's DNS cache. This does not affect the C library's DNS * cache, nor any caching DNS servers between you and the canonical server. * @hide */ public static void clearDnsCache() { addressCache.clear(); } /** * 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. */ static InetAddress getHostByAddrImpl(byte[] addr) throws UnknownHostException { BlockGuard.getThreadPolicy().onNetwork(); return makeInetAddress(addr, getnameinfo(addr)); } /** * Resolves an IP address to a hostname. Thread safe. */ private static native String getnameinfo(byte[] addr); static String getHostNameInternal(String host) throws UnknownHostException { if (host == null || host.isEmpty()) { return Inet4Address.LOOPBACK.getHostAddress(); } if (!isNumeric(host)) { 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(); } /** * Returns true if the string is a valid numeric IPv4 or IPv6 address (such as "192.168.0.1"). * This copes with all forms of address that Java supports, detailed in the {@link InetAddress} * class documentation. * * @hide used by frameworks/base to ensure that a getAllByName won't cause a DNS lookup. */ public static boolean isNumeric(String address) { return ipStringToByteArray(address) != null; } /** * Returns an InetAddress corresponding to the given numeric address (such * as {@code "192.168.0.1"} or {@code "2001:4860:800d::68"}). * This method will never do a DNS lookup. Non-numeric addresses are errors. * * @hide used by frameworks/base's NetworkUtils.numericToInetAddress * @throws IllegalArgumentException if {@code numericAddress} is not a numeric address */ public static InetAddress parseNumericAddress(String numericAddress) { if (numericAddress == null || numericAddress.isEmpty()) { return loopbackAddresses()[0]; } byte[] bytes = ipStringToByteArray(numericAddress); if (bytes == null) { throw new IllegalArgumentException("Not a numeric address: " + numericAddress); } try { return makeInetAddress(bytes, null); } catch (UnknownHostException ex) { // UnknownHostException can't be thrown if you pass null to makeInetAddress. throw new AssertionError(ex); } } private static InetAddress[] loopbackAddresses() { if (preferIPv6Addresses()) { return new InetAddress[] { Inet6Address.LOOPBACK, Inet4Address.LOOPBACK }; } else { return new InetAddress[] { Inet4Address.LOOPBACK, Inet6Address.LOOPBACK }; } } /** * Returns the IPv6 loopback address {@code ::1} or the IPv4 loopback address {@code 127.0.0.1}. * @since 1.7 * @hide 1.7 */ public static InetAddress getLoopbackAddress() { return loopbackAddresses()[0]; } /** * 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}. *

* Valid IPv6 link-local addresses are FE80::0 through to * FEBF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF. *

* 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}. *

* Valid IPv6 site-local addresses are FEC0::0 through to * FEFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF. *

* 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}. *

* 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. *

* 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}. *

* 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. *

* 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}. *

* 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. *

* 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}. *

* 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. *

* 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}. *

* 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. *

* 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 (ICMP ECHO REQUEST). 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 (ICMP ECHO REQUEST). When first step fails, a TCP connection * on port 7 (Echo) of the remote host is established. * * @param networkInterface * 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 networkInterface, final int ttl, final int timeout) throws IOException { if (ttl < 0 || timeout < 0) { throw new IllegalArgumentException("ttl < 0 || timeout < 0"); } if (networkInterface == null) { return isReachableByTCP(this, null, timeout); } else { return isReachableByMultiThread(networkInterface, ttl, timeout); } } /* * Uses multi-Thread to try if isReachable, returns true if any of threads * returns in time */ private boolean isReachableByMultiThread(NetworkInterface netif, final int ttl, final int timeout) throws IOException { List addresses = Collections.list(netif.getInetAddresses()); if (addresses.isEmpty()) { return false; } reached = false; addrCount = addresses.size(); boolean needWait = false; for (final InetAddress addr : addresses) { // loopback interface can only reach to local addresses if (addr.isLoopbackAddress()) { Enumeration NetworkInterfaces = NetworkInterface .getNetworkInterfaces(); while (NetworkInterfaces.hasMoreElements()) { NetworkInterface networkInterface = NetworkInterfaces .nextElement(); Enumeration 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() { /* * Spec violation! This implementation doesn't attempt an * ICMP; it skips right to TCP echo. */ boolean threadReached = false; try { threadReached = isReachableByTCP(addr, InetAddress.this, timeout); } catch (IOException e) { } synchronized (waitReachable) { if (threadReached) { // if thread reached this address, sets reached to // true and notifies main thread reached = true; waitReachable.notifyAll(); } else { addrCount--; if (addrCount == 0) { // 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; } private boolean isReachableByTCP(InetAddress destination, InetAddress source, int timeout) throws IOException { FileDescriptor fd = new FileDescriptor(); boolean reached = false; Platform.NETWORK.socket(fd, true); try { if (source != null) { Platform.NETWORK.bind(fd, source, 0); } Platform.NETWORK.connect(fd, destination, 7, timeout); reached = true; } catch (IOException e) { if (ERRMSG_CONNECTION_REFUSED.equals(e.getMessage())) { // Connection refused means the IP is reachable reached = true; } } Platform.NETWORK.close(fd); return reached; } /** * Equivalent to {@code getByAddress(null, ipAddress, 0)}. Handy for IPv4 addresses with * no associated hostname. * *

(Note that numeric addresses such as {@code "127.0.0.1"} are names for the * purposes of this API. Most callers probably want {@link #getAllByName} instead.) */ public static InetAddress getByAddress(byte[] ipAddress) throws UnknownHostException { return getByAddressInternal(null, ipAddress, 0); } /** * Equivalent to {@code getByAddress(null, ipAddress, scopeId)}. Handy for IPv6 addresses * with no associated hostname. * *

(Note that numeric addresses such as {@code "127.0.0.1"} are names for the * purposes of this API. Most callers probably want {@link #getAllByName} instead.) */ static InetAddress getByAddress(byte[] ipAddress, int scopeId) throws UnknownHostException { return getByAddressInternal(null, ipAddress, scopeId); } /** * Equivalent to {@code getByAddress(hostName, ipAddress, 0)}. Handy for IPv4 addresses * with an associated hostname. * *

(Note that numeric addresses such as {@code "127.0.0.1"} are names for the * purposes of this API. Most callers probably want {@link #getAllByName} instead.) */ public static InetAddress getByAddress(String hostName, byte[] ipAddress) throws UnknownHostException { return getByAddressInternal(hostName, ipAddress, 0); } /** * Returns an {@code InetAddress} corresponding to the given network-order * bytes {@code ipAddress} and {@code scopeId}. * *

For an IPv4 address, the byte array must be of length 4, and the scopeId is ignored. * For IPv6, the byte array must be of length 16. Any other length will cause an {@code * UnknownHostException}. * *

No reverse lookup is performed. The given {@code hostName} (which may be null) is * associated with the new {@code InetAddress} with no validation done. * *

(Note that numeric addresses such as {@code "127.0.0.1"} are names for the * purposes of this API. Most callers probably want {@link #getAllByName} instead.) * * @throws UnknownHostException if {@code ipAddress} is null or the wrong length. */ static InetAddress getByAddressInternal(String hostName, byte[] ipAddress, int scopeId) throws UnknownHostException { if (ipAddress == null) { throw new UnknownHostException("ipAddress == null"); } if (ipAddress.length == 4) { return new Inet4Address(ipAddress.clone(), hostName); } else if (ipAddress.length == 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), hostName); } else { return new Inet6Address(ipAddress.clone(), hostName, scopeId); } } else { throw badAddressLength(ipAddress); } } private static UnknownHostException badAddressLength(byte[] bytes) throws UnknownHostException { throw new UnknownHostException("Address is neither 4 or 16 bytes: " + Arrays.toString(bytes)); } 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; } private static final ObjectStreamField[] serialPersistentFields = { new ObjectStreamField("address", int.class), new ObjectStreamField("family", int.class), new ObjectStreamField("hostName", String.class), }; private void writeObject(ObjectOutputStream stream) throws IOException { ObjectOutputStream.PutField fields = stream.putFields(); if (ipaddress == null) { fields.put("address", 0); } else { fields.put("address", OSMemory.peekInt(ipaddress, 0, ByteOrder.BIG_ENDIAN)); } fields.put("family", family); fields.put("hostName", hostName); stream.writeFields(); } private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { ObjectInputStream.GetField fields = stream.readFields(); int addr = fields.get("address", 0); ipaddress = new byte[4]; OSMemory.pokeInt(ipaddress, 0, addr, ByteOrder.BIG_ENDIAN); hostName = (String) fields.get("hostName", null); family = fields.get("family", 2); } /* * 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); } }