jdk/src/java.base/share/classes/java/net/InetAddress.java
author darcy
Thu, 23 Apr 2015 09:32:35 -0700
changeset 29986 97167d851fc4
parent 26199 f30d82a2c06f
child 31687 d6eb4f028c60
permissions -rw-r--r--
8078467: Update core libraries to use diamond with anonymous classes Reviewed-by: mchung, alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
     2
 * Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5180
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5180
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5180
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5180
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5180
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.net;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
    28
import java.util.NavigableSet;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.Iterator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.List;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.ArrayList;
11119
6ff03c1202ce 7116722: Miscellaneous warnings sun.misc ( and related classes )
chegar
parents: 10882
diff changeset
    32
import java.util.ServiceLoader;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.security.AccessController;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.io.ObjectStreamException;
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
    35
import java.io.ObjectStreamField;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.io.IOException;
5180
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 2
diff changeset
    37
import java.io.ObjectInputStream;
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
    38
import java.io.ObjectInputStream.GetField;
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
    39
import java.io.ObjectOutputStream;
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
    40
import java.io.ObjectOutputStream.PutField;
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
    41
import java.util.concurrent.ConcurrentHashMap;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
    42
import java.util.concurrent.ConcurrentMap;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
    43
import java.util.concurrent.ConcurrentSkipListSet;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
    44
import java.util.concurrent.atomic.AtomicLong;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
    45
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import sun.security.action.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import sun.net.InetAddressCachePolicy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import sun.net.util.IPAddressUtil;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import sun.net.spi.nameservice.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * This class represents an Internet Protocol (IP) address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <p> An IP address is either a 32-bit or 128-bit unsigned number
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * used by IP, a lower-level protocol on which protocols like UDP and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * TCP are built. The IP address architecture is defined by <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * href="http://www.ietf.org/rfc/rfc790.txt"><i>RFC&nbsp;790:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * Assigned Numbers</i></a>, <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * href="http://www.ietf.org/rfc/rfc1918.txt"> <i>RFC&nbsp;1918:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * Address Allocation for Private Internets</i></a>, <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * href="http://www.ietf.org/rfc/rfc2365.txt"><i>RFC&nbsp;2365:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * Administratively Scoped IP Multicast</i></a>, and <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * href="http://www.ietf.org/rfc/rfc2373.txt"><i>RFC&nbsp;2373: IP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * Version 6 Addressing Architecture</i></a>. An instance of an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * InetAddress consists of an IP address and possibly its
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * corresponding host name (depending on whether it is constructed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * with a host name or whether it has already done reverse host name
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * resolution).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *
18800
e7fa560afcfb 8020318: Fix doclint issues in java.net
juh
parents: 16870
diff changeset
    70
 * <h3> Address types </h3>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * <blockquote><table cellspacing=2 summary="Description of unicast and multicast address types">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 *   <tr><th valign=top><i>unicast</i></th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *       <td>An identifier for a single interface. A packet sent to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *         a unicast address is delivered to the interface identified by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 *         that address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 *         <p> The Unspecified Address -- Also called anylocal or wildcard
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 *         address. It must never be assigned to any node. It indicates the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *         absence of an address. One example of its use is as the target of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 *         bind, which allows a server to accept a client connection on any
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 *         interface, in case the server host has multiple interfaces.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 *         <p> The <i>unspecified</i> address must not be used as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *         the destination address of an IP packet.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 *         <p> The <i>Loopback</i> Addresses -- This is the address
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 *         assigned to the loopback interface. Anything sent to this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 *         IP address loops around and becomes IP input on the local
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 *         host. This address is often used when testing a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 *         client.</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 *   <tr><th valign=top><i>multicast</i></th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 *       <td>An identifier for a set of interfaces (typically belonging
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 *         to different nodes). A packet sent to a multicast address is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 *         delivered to all interfaces identified by that address.</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * </table></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * <h4> IP address scope </h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * <p> <i>Link-local</i> addresses are designed to be used for addressing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * on a single link for purposes such as auto-address configuration,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * neighbor discovery, or when no routers are present.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * <p> <i>Site-local</i> addresses are designed to be used for addressing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * inside of a site without the need for a global prefix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 * <p> <i>Global</i> addresses are unique across the internet.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 * <h4> Textual representation of IP addresses </h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 * The textual representation of an IP address is address family specific.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * For IPv4 address format, please refer to <A
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 * HREF="Inet4Address.html#format">Inet4Address#format</A>; For IPv6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * address format, please refer to <A
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 * HREF="Inet6Address.html#format">Inet6Address#format</A>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 * <P>There is a <a href="doc-files/net-properties.html#Ipv4IPv6">couple of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 * System Properties</a> affecting how IPv4 and IPv6 addresses are used.</P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 * <h4> Host Name Resolution </h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 * Host name-to-IP address <i>resolution</i> is accomplished through
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * the use of a combination of local machine configuration information
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 * and network naming services such as the Domain Name System (DNS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 * and Network Information Service(NIS). The particular naming
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 * services(s) being used is by default the local machine configured
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 * one. For any host name, its corresponding IP address is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 * <p> <i>Reverse name resolution</i> means that for any IP address,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 * the host associated with the IP address is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 * <p> The InetAddress class provides methods to resolve host names to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
 * their IP addresses and vice versa.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
 * <h4> InetAddress Caching </h4>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 * The InetAddress class has a cache to store successful as well as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
 * unsuccessful host name resolutions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
 * <p> By default, when a security manager is installed, in order to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
 * protect against DNS spoofing attacks,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
 * the result of positive host name resolutions are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
 * cached forever. When a security manager is not installed, the default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
 * behavior is to cache entries for a finite (implementation dependent)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
 * period of time. The result of unsuccessful host
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
 * name resolution is cached for a very short period of time (10
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
 * seconds) to improve performance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
 * <p> If the default behavior is not desired, then a Java security property
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
 * can be set to a different Time-to-live (TTL) value for positive
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
 * caching. Likewise, a system admin can configure a different
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
 * negative caching TTL value when needed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
 * <p> Two Java security properties control the TTL values used for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
 *  positive and negative host name resolution caching:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
 * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
 * <dl>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
 * <dt><b>networkaddress.cache.ttl</b></dt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
 * <dd>Indicates the caching policy for successful name lookups from
23927
225d01ae6469 8038821: Fix typos in java.net
chegar
parents: 21635
diff changeset
   164
 * the name service. The value is specified as an integer to indicate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
 * the number of seconds to cache the successful lookup. The default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
 * setting is to cache for an implementation specific period of time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
 * A value of -1 indicates "cache forever".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
 * </dd>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
 * <dt><b>networkaddress.cache.negative.ttl</b> (default: 10)</dt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
 * <dd>Indicates the caching policy for un-successful name lookups
23927
225d01ae6469 8038821: Fix typos in java.net
chegar
parents: 21635
diff changeset
   172
 * from the name service. The value is specified as an integer to
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
 * indicate the number of seconds to cache the failure for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
 * un-successful lookups.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
 * A value of 0 indicates "never cache".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
 * A value of -1 indicates "cache forever".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
 * </dd>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
 * </dl>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
 * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
 * @author  Chris Warth
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
 * @see     java.net.InetAddress#getByAddress(byte[])
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
 * @see     java.net.InetAddress#getByAddress(java.lang.String, byte[])
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
 * @see     java.net.InetAddress#getAllByName(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
 * @see     java.net.InetAddress#getByName(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
 * @see     java.net.InetAddress#getLocalHost()
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
   188
 * @since 1.0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
public
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
class InetAddress implements java.io.Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * Specify the address family: Internet Protocol, Version 4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    static final int IPv4 = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * Specify the address family: Internet Protocol, Version 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    static final int IPv6 = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    /* Specify address family preference */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    static transient boolean preferIPv6Address = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   207
    static class InetAddressHolder {
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   208
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   209
        InetAddressHolder() {}
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   210
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   211
        InetAddressHolder(String hostName, int address, int family) {
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   212
            this.hostName = hostName;
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   213
            this.address = address;
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   214
            this.family = family;
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   215
        }
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   216
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 16870
diff changeset
   217
        void init(String hostName, int family) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 16870
diff changeset
   218
            this.hostName = hostName;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 16870
diff changeset
   219
            if (family != -1) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 16870
diff changeset
   220
                this.family = family;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 16870
diff changeset
   221
            }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 16870
diff changeset
   222
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 16870
diff changeset
   223
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   224
        String hostName;
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   225
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   226
        String getHostName() {
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   227
            return hostName;
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   228
        }
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   229
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   230
        /**
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   231
         * Holds a 32-bit IPv4 address.
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   232
         */
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   233
        int address;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   235
        int getAddress() {
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   236
            return address;
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   237
        }
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   238
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   239
        /**
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   240
         * Specifies the address family type, for instance, '1' for IPv4
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   241
         * addresses, and '2' for IPv6 addresses.
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   242
         */
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   243
        int family;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   245
        int getFamily() {
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   246
            return family;
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   247
        }
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   248
    }
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   249
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   250
    /* Used to store the serializable fields of InetAddress */
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 16870
diff changeset
   251
    final transient InetAddressHolder holder;
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   252
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   253
    InetAddressHolder holder() {
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   254
        return holder;
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   255
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    /* Used to store the name service provider */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    private static List<NameService> nameServices = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    /* Used to store the best available hostname */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    private transient String canonicalHostName = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    /** use serialVersionUID from JDK 1.0.2 for interoperability */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    private static final long serialVersionUID = 3286316764910316507L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * Load net library into runtime, and perform initializations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        preferIPv6Address = java.security.AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
            new GetBooleanAction("java.net.preferIPv6Addresses")).booleanValue();
12559
9456ceada8b1 7164376: Replace use of sun.security.action.LoadLibraryAction with System.loadLibrary
mchung
parents: 11119
diff changeset
   272
        AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 26199
diff changeset
   273
            new java.security.PrivilegedAction<>() {
12559
9456ceada8b1 7164376: Replace use of sun.security.action.LoadLibraryAction with System.loadLibrary
mchung
parents: 11119
diff changeset
   274
                public Void run() {
9456ceada8b1 7164376: Replace use of sun.security.action.LoadLibraryAction with System.loadLibrary
mchung
parents: 11119
diff changeset
   275
                    System.loadLibrary("net");
9456ceada8b1 7164376: Replace use of sun.security.action.LoadLibraryAction with System.loadLibrary
mchung
parents: 11119
diff changeset
   276
                    return null;
9456ceada8b1 7164376: Replace use of sun.security.action.LoadLibraryAction with System.loadLibrary
mchung
parents: 11119
diff changeset
   277
                }
9456ceada8b1 7164376: Replace use of sun.security.action.LoadLibraryAction with System.loadLibrary
mchung
parents: 11119
diff changeset
   278
            });
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        init();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * Constructor for the Socket.accept() method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * This creates an empty InetAddress, which is filled in by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * the accept() method.  This InetAddress, however, is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * put in the address cache, since it is not created by name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
    InetAddress() {
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   289
        holder = new InetAddressHolder();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * Replaces the de-serialized object with an Inet4Address object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     * @return the alternate object to the de-serialized object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     * @throws ObjectStreamException if a new object replacing this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     * object could not be created
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
    private Object readResolve() throws ObjectStreamException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        // will replace the deserialized 'this' object
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   302
        return new Inet4Address(holder().getHostName(), holder().getAddress());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * Utility routine to check if the InetAddress is an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * IP multicast address.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   308
     * @return a {@code boolean} indicating if the InetAddress is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * an IP multicast address
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
   310
     * @since   1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    public boolean isMulticastAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * Utility routine to check if the InetAddress in a wildcard address.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   318
     * @return a {@code boolean} indicating if the Inetaddress is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     *         a wildcard address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    public boolean isAnyLocalAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * Utility routine to check if the InetAddress is a loopback address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   329
     * @return a {@code boolean} indicating if the InetAddress is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * a loopback address; or false otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    public boolean isLoopbackAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * Utility routine to check if the InetAddress is an link local address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   340
     * @return a {@code boolean} indicating if the InetAddress is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * a link local address; or false if address is not a link local unicast address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    public boolean isLinkLocalAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * Utility routine to check if the InetAddress is a site local address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   351
     * @return a {@code boolean} indicating if the InetAddress is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * a site local address; or false if address is not a site local unicast address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
    public boolean isSiteLocalAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * Utility routine to check if the multicast address has global scope.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   362
     * @return a {@code boolean} indicating if the address has
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     *         is a multicast address of global scope, false if it is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     *         of global scope or it is not a multicast address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
    public boolean isMCGlobal() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * Utility routine to check if the multicast address has node scope.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   374
     * @return a {@code boolean} indicating if the address has
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     *         is a multicast address of node-local scope, false if it is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     *         of node-local scope or it is not a multicast address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
    public boolean isMCNodeLocal() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     * Utility routine to check if the multicast address has link scope.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   386
     * @return a {@code boolean} indicating if the address has
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     *         is a multicast address of link-local scope, false if it is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     *         of link-local scope or it is not a multicast address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    public boolean isMCLinkLocal() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * Utility routine to check if the multicast address has site scope.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   398
     * @return a {@code boolean} indicating if the address has
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     *         is a multicast address of site-local scope, false if it is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     *         of site-local scope or it is not a multicast address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
    public boolean isMCSiteLocal() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * Utility routine to check if the multicast address has organization scope.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   410
     * @return a {@code boolean} indicating if the address has
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     *         is a multicast address of organization-local scope,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     *         false if it is not of organization-local scope
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     *         or it is not a multicast address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
    public boolean isMCOrgLocal() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     * Test whether that address is reachable. Best effort is made by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * implementation to try to reach the host, but firewalls and server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     * configuration may block requests resulting in a unreachable status
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * while some specific ports may be accessible.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * A typical implementation will use ICMP ECHO REQUESTs if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * privilege can be obtained, otherwise it will try to establish
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * a TCP connection on port 7 (Echo) of the destination host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * The timeout value, in milliseconds, indicates the maximum amount of time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * the try should take. If the operation times out before getting an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * answer, the host is deemed unreachable. A negative value will result
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * in an IllegalArgumentException being thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * @param   timeout the time, in milliseconds, before the call aborts
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   436
     * @return a {@code boolean} indicating if the address is reachable.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * @throws IOException if a network error occurs
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   438
     * @throws  IllegalArgumentException if {@code timeout} is negative.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
    public boolean isReachable(int timeout) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
        return isReachable(null, 0 , timeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * Test whether that address is reachable. Best effort is made by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * implementation to try to reach the host, but firewalls and server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * configuration may block requests resulting in a unreachable status
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     * while some specific ports may be accessible.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * A typical implementation will use ICMP ECHO REQUESTs if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     * privilege can be obtained, otherwise it will try to establish
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     * a TCP connection on port 7 (Echo) of the destination host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     * <p>
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   454
     * The {@code network interface} and {@code ttl} parameters
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     * let the caller specify which network interface the test will go through
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * and the maximum number of hops the packets should go through.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   457
     * A negative value for the {@code ttl} will result in an
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     * IllegalArgumentException being thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     * The timeout value, in milliseconds, indicates the maximum amount of time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     * the try should take. If the operation times out before getting an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     * answer, the host is deemed unreachable. A negative value will result
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     * in an IllegalArgumentException being thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     * @param   netif   the NetworkInterface through which the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     *                    test will be done, or null for any interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     * @param   ttl     the maximum numbers of hops to try or 0 for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     *                  default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     * @param   timeout the time, in milliseconds, before the call aborts
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   470
     * @throws  IllegalArgumentException if either {@code timeout}
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   471
     *                          or {@code ttl} are negative.
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   472
     * @return a {@code boolean}indicating if the address is reachable.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     * @throws IOException if a network error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    public boolean isReachable(NetworkInterface netif, int ttl,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
                               int timeout) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
        if (ttl < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
            throw new IllegalArgumentException("ttl can't be negative");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        if (timeout < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
            throw new IllegalArgumentException("timeout can't be negative");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        return impl.isReachable(this, timeout, netif, ttl);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * Gets the host name for this IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * <p>If this InetAddress was created with a host name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * this host name will be remembered and returned;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     * otherwise, a reverse name lookup will be performed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     * and the result will be returned based on the system
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     * configured name lookup service. If a lookup of the name service
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     * is required, call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * {@link #getCanonicalHostName() getCanonicalHostName}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     * <p>If there is a security manager, its
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   498
     * {@code checkConnect} method is first called
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   499
     * with the hostname and {@code -1}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * as its arguments to see if the operation is allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * If the operation is not allowed, it will return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     * the textual representation of the IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     * @return  the host name for this IP address, or if the operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     *    is not allowed by the security check, the textual
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     *    representation of the IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * @see InetAddress#getCanonicalHostName
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     * @see SecurityManager#checkConnect
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
    public String getHostName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
        return getHostName(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     * Returns the hostname for this address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     * If the host is equal to null, then this address refers to any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * of the local machine's available network addresses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * this is package private so SocketPermission can make calls into
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * here without a security check.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * <p>If there is a security manager, this method first
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   523
     * calls its {@code checkConnect} method
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   524
     * with the hostname and {@code -1}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     * as its arguments to see if the calling code is allowed to know
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     * the hostname for this IP address, i.e., to connect to the host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     * If the operation is not allowed, it will return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     * the textual representation of the IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     * @return  the host name for this IP address, or if the operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     *    is not allowed by the security check, the textual
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     *    representation of the IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * @param check make security check if true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     * @see SecurityManager#checkConnect
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
    String getHostName(boolean check) {
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   539
        if (holder().getHostName() == null) {
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   540
            holder().hostName = InetAddress.getHostFromNameService(this, check);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        }
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   542
        return holder().getHostName();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * Gets the fully qualified domain name for this IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     * Best effort method, meaning we may not be able to return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * the FQDN depending on the underlying system configuration.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     * <p>If there is a security manager, this method first
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   551
     * calls its {@code checkConnect} method
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   552
     * with the hostname and {@code -1}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     * as its arguments to see if the calling code is allowed to know
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     * the hostname for this IP address, i.e., to connect to the host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     * If the operation is not allowed, it will return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     * the textual representation of the IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     * @return  the fully qualified domain name for this IP address,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     *    or if the operation is not allowed by the security check,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     *    the textual representation of the IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     * @see SecurityManager#checkConnect
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
    public String getCanonicalHostName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
        if (canonicalHostName == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
            canonicalHostName =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
                InetAddress.getHostFromNameService(this, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
        return canonicalHostName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * Returns the hostname for this address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * <p>If there is a security manager, this method first
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   578
     * calls its {@code checkConnect} method
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   579
     * with the hostname and {@code -1}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     * as its arguments to see if the calling code is allowed to know
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     * the hostname for this IP address, i.e., to connect to the host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     * If the operation is not allowed, it will return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * the textual representation of the IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     * @return  the host name for this IP address, or if the operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     *    is not allowed by the security check, the textual
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     *    representation of the IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * @param check make security check if true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     * @see SecurityManager#checkConnect
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
    private static String getHostFromNameService(InetAddress addr, boolean check) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
        String host = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
        for (NameService nameService : nameServices) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
                // first lookup the hostname
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
                host = nameService.getHostByAddr(addr.getAddress());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
                /* check to see if calling code is allowed to know
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
                 * the hostname for this IP address, ie, connect to the host
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
                if (check) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
                    SecurityManager sec = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
                    if (sec != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
                        sec.checkConnect(host, -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
                /* now get all the IP addresses for this hostname,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
                 * and make sure one of them matches the original IP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
                 * address. We do this to try and prevent spoofing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
                InetAddress[] arr = InetAddress.getAllByName0(host, check);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
                boolean ok = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
                if(arr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
                    for(int i = 0; !ok && i < arr.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
                        ok = addr.equals(arr[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
                //XXX: if it looks a spoof just return the address?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
                if (!ok) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
                    host = addr.getHostAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
                    return host;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
            } catch (SecurityException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
                host = addr.getHostAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
            } catch (UnknownHostException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
                host = addr.getHostAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
                // let next provider resolve the hostname
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
        return host;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   645
     * Returns the raw IP address of this {@code InetAddress}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     * object. The result is in network byte order: the highest order
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   647
     * byte of the address is in {@code getAddress()[0]}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
     * @return  the raw IP address of this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
    public byte[] getAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     * Returns the IP address string in textual presentation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
     * @return  the raw IP address in a string format.
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
   659
     * @since   1.0.2
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
    public String getHostAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     * Returns a hashcode for this IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     * @return  a hash code value for this IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     * Compares this object against the specified object.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   676
     * The result is {@code true} if and only if the argument is
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   677
     * not {@code null} and it represents the same IP address as
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     * this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     * <p>
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   680
     * Two instances of {@code InetAddress} represent the same IP
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     * address if the length of the byte arrays returned by
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   682
     * {@code getAddress} is the same for both, and each of the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     * array components is the same for the byte arrays.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * @param   obj   the object to compare against.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   686
     * @return  {@code true} if the objects are the same;
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   687
     *          {@code false} otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * @see     java.net.InetAddress#getAddress()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
    public boolean equals(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   695
     * Converts this IP address to a {@code String}. The
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * string returned is of the form: hostname / literal IP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     * address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     * If the host name is unresolved, no reverse name service lookup
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     * is performed. The hostname part will be represented by an empty string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     * @return  a string representation of this IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
    public String toString() {
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
   705
        String hostName = holder().getHostName();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
        return ((hostName != null) ? hostName : "")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
            + "/" + getHostAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   710
    // mapping from host name to Addresses - either NameServiceAddresses (while
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   711
    // still being looked-up by NameService(s)) or CachedAddresses when cached
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   712
    private static final ConcurrentMap<String, Addresses> cache =
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   713
        new ConcurrentHashMap<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   715
    // CachedAddresses that have to expire are kept ordered in this NavigableSet
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   716
    // which is scanned on each access
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   717
    private static final NavigableSet<CachedAddresses> expirySet =
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   718
        new ConcurrentSkipListSet<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   720
    // common interface
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   721
    private interface Addresses {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   722
        InetAddress[] get() throws UnknownHostException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   725
    // a holder for cached addresses with required metadata
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   726
    private static final class CachedAddresses  implements Addresses, Comparable<CachedAddresses> {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   727
        private static final AtomicLong seq = new AtomicLong();
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   728
        final String host;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   729
        final InetAddress[] inetAddresses;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   730
        final long expiryTime; // time of expiry (in terms of System.nanoTime())
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   731
        final long id = seq.incrementAndGet(); // each instance is unique
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   733
        CachedAddresses(String host, InetAddress[] inetAddresses, long expiryTime) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   734
            this.host = host;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   735
            this.inetAddresses = inetAddresses;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   736
            this.expiryTime = expiryTime;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   739
        @Override
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   740
        public InetAddress[] get() throws UnknownHostException {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   741
            if (inetAddresses == null) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   742
                throw new UnknownHostException(host);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
            }
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   744
            return inetAddresses;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   747
        @Override
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   748
        public int compareTo(CachedAddresses other) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   749
            // natural order is expiry time -
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   750
            // compare difference of expiry times rather than
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   751
            // expiry times directly, to avoid possible overflow.
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   752
            // (see System.nanoTime() recommendations...)
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   753
            long diff = this.expiryTime - other.expiryTime;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   754
            if (diff < 0L) return -1;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   755
            if (diff > 0L) return 1;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   756
            // ties are broken using unique id
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   757
            return Long.compare(this.id, other.id);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   761
    // a name service lookup based Addresses implementation which replaces itself
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   762
    // in cache when the result is obtained
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   763
    private static final class NameServiceAddresses implements Addresses {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   764
        private final String host;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   765
        private final InetAddress reqAddr;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   766
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   767
        NameServiceAddresses(String host, InetAddress reqAddr) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   768
            this.host = host;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   769
            this.reqAddr = reqAddr;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   772
        @Override
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   773
        public InetAddress[] get() throws UnknownHostException {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   774
            Addresses addresses;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   775
            // only one thread is doing lookup to name service
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   776
            // for particular host at any time.
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   777
            synchronized (this) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   778
                // re-check that we are still us + re-install us if slot empty
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   779
                addresses = cache.putIfAbsent(host, this);
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   780
                if (addresses == null) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   781
                    // this can happen when we were replaced by CachedAddresses in
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   782
                    // some other thread, then CachedAddresses expired and were
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   783
                    // removed from cache while we were waiting for lock...
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   784
                    addresses = this;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   785
                }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   786
                // still us ?
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   787
                if (addresses == this) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   788
                    // lookup name services
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   789
                    InetAddress[] inetAddresses;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   790
                    UnknownHostException ex;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   791
                    int cachePolicy;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   792
                    try {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   793
                        inetAddresses = getAddressesFromNameService(host, reqAddr);
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   794
                        ex = null;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   795
                        cachePolicy = InetAddressCachePolicy.get();
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   796
                    } catch (UnknownHostException uhe) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   797
                        inetAddresses = null;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   798
                        ex = uhe;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   799
                        cachePolicy = InetAddressCachePolicy.getNegative();
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   800
                    }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   801
                    // remove or replace us with cached addresses according to cachePolicy
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   802
                    if (cachePolicy == InetAddressCachePolicy.NEVER) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   803
                        cache.remove(host, this);
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   804
                    } else {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   805
                        CachedAddresses cachedAddresses = new CachedAddresses(
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   806
                            host,
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   807
                            inetAddresses,
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   808
                            cachePolicy == InetAddressCachePolicy.FOREVER
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   809
                            ? 0L
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   810
                            // cachePolicy is in [s] - we need [ns]
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   811
                            : System.nanoTime() + 1000_000_000L * cachePolicy
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   812
                        );
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   813
                        if (cache.replace(host, this, cachedAddresses) &&
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   814
                            cachePolicy != InetAddressCachePolicy.FOREVER) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   815
                            // schedule expiry
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   816
                            expirySet.add(cachedAddresses);
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   817
                        }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   818
                    }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   819
                    if (inetAddresses == null) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   820
                        throw ex == null ? new UnknownHostException(host) : ex;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   821
                    }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   822
                    return inetAddresses;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   823
                }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   824
                // else addresses != this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
            }
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   826
            // delegate to different addresses when we are already replaced
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   827
            // but outside of synchronized block to avoid any chance of dead-locking
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   828
            return addresses.get();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   832
    static InetAddressImpl  impl;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
    private static NameService createNSProvider(String provider) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
        if (provider == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
        NameService nameService = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
        if (provider.equals("default")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
            // initialize the default name service
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
            nameService = new NameService() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
                public InetAddress[] lookupAllHostAddr(String host)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
                    throws UnknownHostException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
                    return impl.lookupAllHostAddr(host);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
                public String getHostByAddr(byte[] addr)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
                    throws UnknownHostException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
                    return impl.getHostByAddr(addr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
            };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
            final String providerName = provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
                nameService = java.security.AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 26199
diff changeset
   855
                    new java.security.PrivilegedExceptionAction<>() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
                        public NameService run() {
10882
7ddadf2b8b4c 7104650: rawtype warnings in several net, nio and security source files
chegar
parents: 9775
diff changeset
   857
                            Iterator<NameServiceDescriptor> itr =
11119
6ff03c1202ce 7116722: Miscellaneous warnings sun.misc ( and related classes )
chegar
parents: 10882
diff changeset
   858
                                ServiceLoader.load(NameServiceDescriptor.class)
6ff03c1202ce 7116722: Miscellaneous warnings sun.misc ( and related classes )
chegar
parents: 10882
diff changeset
   859
                                    .iterator();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
                            while (itr.hasNext()) {
10882
7ddadf2b8b4c 7104650: rawtype warnings in several net, nio and security source files
chegar
parents: 9775
diff changeset
   861
                                NameServiceDescriptor nsd = itr.next();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
                                if (providerName.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
                                    equalsIgnoreCase(nsd.getType()+","
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
                                        +nsd.getProviderName())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
                                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
                                        return nsd.createNameService();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
                                    } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
                                        e.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
                                        System.err.println(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
                                            "Cannot create name service:"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
                                             +providerName+": " + e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
                                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
                            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
                );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
            } catch (java.security.PrivilegedActionException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
        return nameService;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
        // create the impl
6670
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   889
        impl = InetAddressImplFactory.create();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
        // get name service if provided and requested
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
        String provider = null;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
        String propPrefix = "sun.net.spi.nameservice.provider.";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
        int n = 1;
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 26199
diff changeset
   895
        nameServices = new ArrayList<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
        provider = AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
                new GetPropertyAction(propPrefix + n));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
        while (provider != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
            NameService ns = createNSProvider(provider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
            if (ns != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
                nameServices.add(ns);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
            n++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
            provider = AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
                    new GetPropertyAction(propPrefix + n));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
        // if not designate any name services provider,
6670
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   909
        // create a default one
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
        if (nameServices.size() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
            NameService ns = createNSProvider("default");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
            nameServices.add(ns);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
    /**
6670
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   917
     * Creates an InetAddress based on the provided host name and IP address.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
     * No name service is checked for the validity of the address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
     * <p> The host name can either be a machine name, such as
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   921
     * "{@code java.sun.com}", or a textual representation of its IP
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
     * address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
     * <p> No validity checking is done on the host name either.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
     * <p> If addr specifies an IPv4 address an instance of Inet4Address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
     * will be returned; otherwise, an instance of Inet6Address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
     * will be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
     * <p> IPv4 address byte array must be 4 bytes long and IPv6 byte array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
     * must be 16 bytes long
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
     * @param host the specified host
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
     * @param addr the raw IP address in network byte order
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
     * @return  an InetAddress object created from the raw IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
     * @exception  UnknownHostException  if IP address is of illegal length
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
    public static InetAddress getByAddress(String host, byte[] addr)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
        throws UnknownHostException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
        if (host != null && host.length() > 0 && host.charAt(0) == '[') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
            if (host.charAt(host.length()-1) == ']') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
                host = host.substring(1, host.length() -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
        if (addr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
            if (addr.length == Inet4Address.INADDRSZ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
                return new Inet4Address(host, addr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
            } else if (addr.length == Inet6Address.INADDRSZ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
                byte[] newAddr
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
                    = IPAddressUtil.convertFromIPv4MappedAddress(addr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
                if (newAddr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
                    return new Inet4Address(host, newAddr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
                    return new Inet6Address(host, addr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
        throw new UnknownHostException("addr is of illegal length");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
     * Determines the IP address of a host, given the host's name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
     * <p> The host name can either be a machine name, such as
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   966
     * "{@code java.sun.com}", or a textual representation of its
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
     * IP address. If a literal IP address is supplied, only the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
     * validity of the address format is checked.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   970
     * <p> For {@code host} specified in literal IPv6 address,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
     * either the form defined in RFC 2732 or the literal IPv6 address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
     * format defined in RFC 2373 is accepted. IPv6 scoped addresses are also
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
     * supported. See <a href="Inet6Address.html#scoped">here</a> for a description of IPv6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
     * scoped addresses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   976
     * <p> If the host is {@code null} then an {@code InetAddress}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
     * representing an address of the loopback interface is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
     * See <a href="http://www.ietf.org/rfc/rfc3330.txt">RFC&nbsp;3330</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
     * section&nbsp;2 and <a href="http://www.ietf.org/rfc/rfc2373.txt">RFC&nbsp;2373</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
     * section&nbsp;2.5.3. </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   982
     * @param      host   the specified host, or {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
     * @return     an IP address for the given host name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
     * @exception  UnknownHostException  if no IP address for the
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   985
     *               {@code host} could be found, or if a scope_id was specified
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
     *               for a global IPv6 address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
     * @exception  SecurityException if a security manager exists
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
     *             and its checkConnect method doesn't allow the operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
    public static InetAddress getByName(String host)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
        throws UnknownHostException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
        return InetAddress.getAllByName(host)[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
9775
1b128726e887 7042550: Reintegrate 6569621
michaelm
parents: 9550
diff changeset
   995
    // called from deployment cache manager
1b128726e887 7042550: Reintegrate 6569621
michaelm
parents: 9550
diff changeset
   996
    private static InetAddress getByName(String host, InetAddress reqAddr)
1b128726e887 7042550: Reintegrate 6569621
michaelm
parents: 9550
diff changeset
   997
        throws UnknownHostException {
1b128726e887 7042550: Reintegrate 6569621
michaelm
parents: 9550
diff changeset
   998
        return InetAddress.getAllByName(host, reqAddr)[0];
1b128726e887 7042550: Reintegrate 6569621
michaelm
parents: 9550
diff changeset
   999
    }
1b128726e887 7042550: Reintegrate 6569621
michaelm
parents: 9550
diff changeset
  1000
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
     * Given the name of a host, returns an array of its IP addresses,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
     * based on the configured name service on the system.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
     * <p> The host name can either be a machine name, such as
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
  1006
     * "{@code java.sun.com}", or a textual representation of its IP
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
     * address. If a literal IP address is supplied, only the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
     * validity of the address format is checked.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
  1010
     * <p> For {@code host} specified in <i>literal IPv6 address</i>,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
     * either the form defined in RFC 2732 or the literal IPv6 address
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
     * format defined in RFC 2373 is accepted. A literal IPv6 address may
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
     * also be qualified by appending a scoped zone identifier or scope_id.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
     * The syntax and usage of scope_ids is described
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
     * <a href="Inet6Address.html#scoped">here</a>.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
  1016
     * <p> If the host is {@code null} then an {@code InetAddress}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
     * representing an address of the loopback interface is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
     * See <a href="http://www.ietf.org/rfc/rfc3330.txt">RFC&nbsp;3330</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
     * section&nbsp;2 and <a href="http://www.ietf.org/rfc/rfc2373.txt">RFC&nbsp;2373</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
     * section&nbsp;2.5.3. </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
  1022
     * <p> If there is a security manager and {@code host} is not
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
  1023
     * null and {@code host.length() } is not equal to zero, the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
     * security manager's
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
  1025
     * {@code checkConnect} method is called
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
  1026
     * with the hostname and {@code -1}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
     * as its arguments to see if the operation is allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
  1029
     * @param      host   the name of the host, or {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
     * @return     an array of all the IP addresses for a given host name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
     * @exception  UnknownHostException  if no IP address for the
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
  1033
     *               {@code host} could be found, or if a scope_id was specified
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
     *               for a global IPv6 address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
     * @exception  SecurityException  if a security manager exists and its
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
  1036
     *               {@code checkConnect} method doesn't allow the operation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
     * @see SecurityManager#checkConnect
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
    public static InetAddress[] getAllByName(String host)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
        throws UnknownHostException {
9775
1b128726e887 7042550: Reintegrate 6569621
michaelm
parents: 9550
diff changeset
  1042
        return getAllByName(host, null);
1b128726e887 7042550: Reintegrate 6569621
michaelm
parents: 9550
diff changeset
  1043
    }
1b128726e887 7042550: Reintegrate 6569621
michaelm
parents: 9550
diff changeset
  1044
1b128726e887 7042550: Reintegrate 6569621
michaelm
parents: 9550
diff changeset
  1045
    private static InetAddress[] getAllByName(String host, InetAddress reqAddr)
1b128726e887 7042550: Reintegrate 6569621
michaelm
parents: 9550
diff changeset
  1046
        throws UnknownHostException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
        if (host == null || host.length() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
            InetAddress[] ret = new InetAddress[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
            ret[0] = impl.loopbackAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
            return ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
        boolean ipv6Expected = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
        if (host.charAt(0) == '[') {
6670
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
  1056
            // This is supposed to be an IPv6 literal
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
            if (host.length() > 2 && host.charAt(host.length()-1) == ']') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
                host = host.substring(1, host.length() -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
                ipv6Expected = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
                // This was supposed to be a IPv6 address, but it's not!
6670
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
  1062
                throw new UnknownHostException(host + ": invalid IPv6 address");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
        // if host is an IP address, we won't do further lookup
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
        if (Character.digit(host.charAt(0), 16) != -1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
            || (host.charAt(0) == ':')) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
            byte[] addr = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
            int numericZone = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
            String ifname = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
            // see if it is IPv4 address
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
            addr = IPAddressUtil.textToNumericFormatV4(host);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
            if (addr == null) {
21630
58a025b37bff 8019834: InetAddress.getByName hangs for bad IPv6 literals
chegar
parents: 20848
diff changeset
  1075
                // This is supposed to be an IPv6 literal
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
                // Check if a numeric or string zone id is present
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
                int pos;
24685
215fa91e1b4c 8044461: Cleanup new Boolean and single character strings
rriggs
parents: 23927
diff changeset
  1078
                if ((pos=host.indexOf ('%')) != -1) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
                    numericZone = checkNumericZone (host);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
                    if (numericZone == -1) { /* remainder of string must be an ifname */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
                        ifname = host.substring (pos+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
                }
21635
b938024653ca 8028074: InetAddress.getByName fails with UHE "invalid IPv6 address" if host name starts with a-f
alanb
parents: 21630
diff changeset
  1084
                if ((addr = IPAddressUtil.textToNumericFormatV6(host)) == null && host.contains(":")) {
21630
58a025b37bff 8019834: InetAddress.getByName hangs for bad IPv6 literals
chegar
parents: 20848
diff changeset
  1085
                    throw new UnknownHostException(host + ": invalid IPv6 address");
58a025b37bff 8019834: InetAddress.getByName hangs for bad IPv6 literals
chegar
parents: 20848
diff changeset
  1086
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
            } else if (ipv6Expected) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
                // Means an IPv4 litteral between brackets!
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
                throw new UnknownHostException("["+host+"]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
            InetAddress[] ret = new InetAddress[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
            if(addr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
                if (addr.length == Inet4Address.INADDRSZ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
                    ret[0] = new Inet4Address(null, addr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
                    if (ifname != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
                        ret[0] = new Inet6Address(null, addr, ifname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
                        ret[0] = new Inet6Address(null, addr, numericZone);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
                return ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
            }
21630
58a025b37bff 8019834: InetAddress.getByName hangs for bad IPv6 literals
chegar
parents: 20848
diff changeset
  1104
        } else if (ipv6Expected) {
58a025b37bff 8019834: InetAddress.getByName hangs for bad IPv6 literals
chegar
parents: 20848
diff changeset
  1105
            // We were expecting an IPv6 Litteral, but got something else
58a025b37bff 8019834: InetAddress.getByName hangs for bad IPv6 literals
chegar
parents: 20848
diff changeset
  1106
            throw new UnknownHostException("["+host+"]");
58a025b37bff 8019834: InetAddress.getByName hangs for bad IPv6 literals
chegar
parents: 20848
diff changeset
  1107
        }
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1108
        return getAllByName0(host, reqAddr, true, true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
     * Returns the loopback address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
     * The InetAddress returned will represent the IPv4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
     * loopback address, 127.0.0.1, or the IPv6 loopback
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
     * address, ::1. The IPv4 loopback address returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
     * is only one of many in the form 127.*.*.*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
     * @return  the InetAddress loopback instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
     * @since 1.7
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
    public static InetAddress getLoopbackAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
        return impl.loopbackAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
     * check if the literal address string has %nn appended
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
     * returns -1 if not, or the numeric value otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
     * %nn may also be a string that represents the displayName of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
     * a currently available NetworkInterface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
    private static int checkNumericZone (String s) throws UnknownHostException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
        int percent = s.indexOf ('%');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
        int slen = s.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
        int digit, zone=0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
        if (percent == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
        for (int i=percent+1; i<slen; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
            char c = s.charAt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
            if (c == ']') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
                if (i == percent+1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
                    /* empty per-cent field */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
                    return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
            if ((digit = Character.digit (c, 10)) < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
                return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
            zone = (zone * 10) + digit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
        return zone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
    private static InetAddress[] getAllByName0 (String host)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
        throws UnknownHostException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
        return getAllByName0(host, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
     * package private so SocketPermission can call it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
    static InetAddress[] getAllByName0 (String host, boolean check)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
        throws UnknownHostException  {
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1169
        return getAllByName0 (host, null, check, true);
9775
1b128726e887 7042550: Reintegrate 6569621
michaelm
parents: 9550
diff changeset
  1170
    }
1b128726e887 7042550: Reintegrate 6569621
michaelm
parents: 9550
diff changeset
  1171
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1172
    /**
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1173
     * Designated lookup method.
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1174
     *
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1175
     * @param host host name to look up
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1176
     * @param reqAddr requested address to be the 1st in returned array
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1177
     * @param check perform security check
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1178
     * @param useCache use cached value if not expired else always
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1179
     *                 perform name service lookup (and cache the result)
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1180
     * @return array of InetAddress(es)
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1181
     * @throws UnknownHostException if host name is not found
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1182
     */
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1183
    private static InetAddress[] getAllByName0(String host,
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1184
                                               InetAddress reqAddr,
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1185
                                               boolean check,
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1186
                                               boolean useCache)
9775
1b128726e887 7042550: Reintegrate 6569621
michaelm
parents: 9550
diff changeset
  1187
        throws UnknownHostException  {
1b128726e887 7042550: Reintegrate 6569621
michaelm
parents: 9550
diff changeset
  1188
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
        /* If it gets here it is presumed to be a hostname */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
        /* make sure the connection to the host is allowed, before we
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
         * give out a hostname
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
        if (check) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
            SecurityManager security = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
            if (security != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
                security.checkConnect(host, -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1201
        // remove expired addresses from cache - expirySet keeps them ordered
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1202
        // by expiry time so we only need to iterate the prefix of the NavigableSet...
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1203
        long now = System.nanoTime();
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1204
        for (CachedAddresses caddrs : expirySet) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1205
            // compare difference of time instants rather than
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1206
            // time instants directly, to avoid possible overflow.
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1207
            // (see System.nanoTime() recommendations...)
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1208
            if ((caddrs.expiryTime - now) < 0L) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1209
                // ConcurrentSkipListSet uses weakly consistent iterator,
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1210
                // so removing while iterating is OK...
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1211
                if (expirySet.remove(caddrs)) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1212
                    // ... remove from cache
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1213
                    cache.remove(caddrs.host, caddrs);
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1214
                }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1215
            } else {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1216
                // we encountered 1st element that expires in future
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1217
                break;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1218
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1221
        // look-up or remove from cache
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1222
        Addresses addrs;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1223
        if (useCache) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1224
            addrs = cache.get(host);
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1225
        } else {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1226
            addrs = cache.remove(host);
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1227
            if (addrs != null) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1228
                if (addrs instanceof CachedAddresses) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1229
                    // try removing from expirySet too if CachedAddresses
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1230
                    expirySet.remove(addrs);
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1231
                }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1232
                addrs = null;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1233
            }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1234
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1236
        if (addrs == null) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1237
            // create a NameServiceAddresses instance which will look up
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1238
            // the name service and install it within cache...
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1239
            Addresses oldAddrs = cache.putIfAbsent(
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1240
                host,
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1241
                addrs = new NameServiceAddresses(host, reqAddr)
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1242
            );
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1243
            if (oldAddrs != null) { // lost putIfAbsent race
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1244
                addrs = oldAddrs;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1245
            }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1246
        }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1247
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1248
        // ask Addresses to get an array of InetAddress(es) and clone it
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1249
        return addrs.get().clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1252
    static InetAddress[] getAddressesFromNameService(String host, InetAddress reqAddr)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
        throws UnknownHostException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
    {
6670
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
  1255
        InetAddress[] addresses = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
        UnknownHostException ex = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1258
        for (NameService nameService : nameServices) {
7995
8168047d48c2 7012768: InetAddress lookupTable leaks/deadlocks when using unsupported name service spi
chegar
parents: 7668
diff changeset
  1259
            try {
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1260
                addresses = nameService.lookupAllHostAddr(host);
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1261
                break;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1262
            } catch (UnknownHostException uhe) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1263
                if (host.equalsIgnoreCase("localhost")) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1264
                    addresses = new InetAddress[] { impl.loopbackAddress() };
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1265
                    break;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1266
                }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1267
                else {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1268
                    ex = uhe;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1269
                }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1270
            }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1271
        }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1272
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1273
        if (addresses == null) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1274
            throw ex == null ? new UnknownHostException(host) : ex;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1275
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1277
        // More to do?
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1278
        if (reqAddr != null && addresses.length > 1 && !addresses[0].equals(reqAddr)) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1279
            // Find it?
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1280
            int i = 1;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1281
            for (; i < addresses.length; i++) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1282
                if (addresses[i].equals(reqAddr)) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1283
                    break;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
                }
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1285
            }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1286
            // Rotate
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1287
            if (i < addresses.length) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1288
                InetAddress tmp, tmp2 = reqAddr;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1289
                for (int j = 0; j < i; j++) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1290
                    tmp = addresses[j];
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1291
                    addresses[j] = tmp2;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1292
                    tmp2 = tmp;
9775
1b128726e887 7042550: Reintegrate 6569621
michaelm
parents: 9550
diff changeset
  1293
                }
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1294
                addresses[i] = tmp2;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
6670
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
  1298
        return addresses;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
  1302
     * Returns an {@code InetAddress} object given the raw IP address .
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
     * The argument is in network byte order: the highest order
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
  1304
     * byte of the address is in {@code getAddress()[0]}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
     * <p> This method doesn't block, i.e. no reverse name service lookup
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
     * is performed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
     * <p> IPv4 address byte array must be 4 bytes long and IPv6 byte array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
     * must be 16 bytes long
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
     * @param addr the raw IP address in network byte order
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
     * @return  an InetAddress object created from the raw IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
     * @exception  UnknownHostException  if IP address is of illegal length
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
    public static InetAddress getByAddress(byte[] addr)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
        throws UnknownHostException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
        return getByAddress(null, addr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1322
    private static final class CachedLocalHost {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1323
        final String host;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1324
        final InetAddress addr;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1325
        final long expiryTime = System.nanoTime() + 5000_000_000L; // now + 5s;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1326
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1327
        CachedLocalHost(String host, InetAddress addr) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1328
            this.host = host;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1329
            this.addr = addr;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1330
        }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1331
    }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1332
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1333
    private static volatile CachedLocalHost cachedLocalHost;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
     * Returns the address of the local host. This is achieved by retrieving
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
     * the name of the host from the system, then resolving that name into
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
  1338
     * an {@code InetAddress}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
     * <P>Note: The resolved address may be cached for a short period of time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
     * </P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
     * <p>If there is a security manager, its
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
  1344
     * {@code checkConnect} method is called
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
  1345
     * with the local host name and {@code -1}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
     * as its arguments to see if the operation is allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
     * If the operation is not allowed, an InetAddress representing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
     * the loopback address is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
     * @return     the address of the local host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
     * @exception  UnknownHostException  if the local host name could not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
     *             be resolved into an address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
     * @see SecurityManager#checkConnect
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
     * @see java.net.InetAddress#getByName(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
    public static InetAddress getLocalHost() throws UnknownHostException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
        SecurityManager security = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
        try {
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1362
            // is cached data still valid?
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1363
            CachedLocalHost clh = cachedLocalHost;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1364
            if (clh != null && (clh.expiryTime - System.nanoTime()) >= 0L) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1365
                if (security != null) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1366
                    security.checkConnect(clh.host, -1);
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1367
                }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1368
                return clh.addr;
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1369
            }
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1370
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
            String local = impl.getLocalHostName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
            if (security != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
                security.checkConnect(local, -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1377
            InetAddress localAddr;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
            if (local.equals("localhost")) {
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1379
                // shortcut for "localhost" host name
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1380
                localAddr = impl.loopbackAddress();
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1381
            } else {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1382
                // call getAllByName0 without security checks and
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1383
                // without using cached data
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1384
                try {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1385
                    localAddr = getAllByName0(local, null, false, false)[0];
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1386
                } catch (UnknownHostException uhe) {
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1387
                    // Rethrow with a more informative error message.
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1388
                    UnknownHostException uhe2 =
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1389
                        new UnknownHostException(local + ": " +
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1390
                                                 uhe.getMessage());
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1391
                    uhe2.initCause(uhe);
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1392
                    throw uhe2;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
            }
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1395
            cachedLocalHost = new CachedLocalHost(local, localAddr);
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
  1396
            return localAddr;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
        } catch (java.lang.SecurityException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
            return impl.loopbackAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
     * Perform class load-time initializations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
    private static native void init();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
     * Returns the InetAddress representing anyLocalAddress
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
     * (typically 0.0.0.0 or ::0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
    static InetAddress anyLocalAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
        return impl.anyLocalAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
     * Load and instantiate an underlying impl class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
     */
6670
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
  1419
    static InetAddressImpl loadImpl(String implName) {
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
  1420
        Object impl = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
         * Property "impl.prefix" will be prepended to the classname
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
         * of the implementation object we instantiate, to which we
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
         * delegate the real work (like native methods).  This
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
         * property can vary across implementations of the java.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
         * classes.  The default is an empty String "".
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
        String prefix = AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
                      new GetPropertyAction("impl.prefix", ""));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
            impl = Class.forName("java.net." + prefix + implName).newInstance();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
        } catch (ClassNotFoundException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
            System.err.println("Class not found: java.net." + prefix +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
                               implName + ":\ncheck impl.prefix property " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
                               "in your properties file.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
        } catch (InstantiationException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
            System.err.println("Could not instantiate: java.net." + prefix +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
                               implName + ":\ncheck impl.prefix property " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
                               "in your properties file.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
        } catch (IllegalAccessException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1442
            System.err.println("Cannot access class: java.net." + prefix +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
                               implName + ":\ncheck impl.prefix property " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
                               "in your properties file.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
        if (impl == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
                impl = Class.forName(implName).newInstance();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
            } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
                throw new Error("System property impl.prefix incorrect");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
6670
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
  1455
        return (InetAddressImpl) impl;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1456
    }
5180
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 2
diff changeset
  1457
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 2
diff changeset
  1458
    private void readObjectNoData (ObjectInputStream s) throws
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 2
diff changeset
  1459
                         IOException, ClassNotFoundException {
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 2
diff changeset
  1460
        if (getClass().getClassLoader() != null) {
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 2
diff changeset
  1461
            throw new SecurityException ("invalid address type");
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 2
diff changeset
  1462
        }
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 2
diff changeset
  1463
    }
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 2
diff changeset
  1464
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1465
    private static final long FIELDS_OFFSET;
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1466
    private static final sun.misc.Unsafe UNSAFE;
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1467
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1468
    static {
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1469
        try {
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1470
            sun.misc.Unsafe unsafe = sun.misc.Unsafe.getUnsafe();
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1471
            FIELDS_OFFSET = unsafe.objectFieldOffset(
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1472
                InetAddress.class.getDeclaredField("holder")
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1473
            );
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1474
            UNSAFE = unsafe;
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1475
        } catch (ReflectiveOperationException e) {
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1476
            throw new Error(e);
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1477
        }
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1478
    }
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1479
5180
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 2
diff changeset
  1480
    private void readObject (ObjectInputStream s) throws
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 2
diff changeset
  1481
                         IOException, ClassNotFoundException {
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 2
diff changeset
  1482
        if (getClass().getClassLoader() != null) {
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 2
diff changeset
  1483
            throw new SecurityException ("invalid address type");
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 2
diff changeset
  1484
        }
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1485
        GetField gf = s.readFields();
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1486
        String host = (String)gf.get("hostName", null);
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1487
        int address= gf.get("address", 0);
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1488
        int family= gf.get("family", 0);
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1489
        InetAddressHolder h = new InetAddressHolder(host, address, family);
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1490
        UNSAFE.putObject(this, FIELDS_OFFSET, h);
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1491
    }
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1492
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1493
    /* needed because the serializable fields no longer exist */
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1494
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1495
    /**
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1496
     * @serialField hostName String
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1497
     * @serialField address int
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1498
     * @serialField family int
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1499
     */
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1500
    private static final ObjectStreamField[] serialPersistentFields = {
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1501
        new ObjectStreamField("hostName", String.class),
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1502
        new ObjectStreamField("address", int.class),
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1503
        new ObjectStreamField("family", int.class),
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1504
    };
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1505
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1506
    private void writeObject (ObjectOutputStream s) throws
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1507
                        IOException {
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1508
        if (getClass().getClassLoader() != null) {
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1509
            throw new SecurityException ("invalid address type");
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1510
        }
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1511
        PutField pf = s.putFields();
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1512
        pf.put("hostName", holder().getHostName());
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1513
        pf.put("address", holder().getAddress());
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1514
        pf.put("family", holder().getFamily());
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14342
diff changeset
  1515
        s.writeFields();
5180
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 2
diff changeset
  1516
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
 * Simple factory to create the impl
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
class InetAddressImplFactory {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
    static InetAddressImpl create() {
6670
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
  1525
        return InetAddress.loadImpl(isIPv6Supported() ?
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
  1526
                                    "Inet6AddressImpl" : "Inet4AddressImpl");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
    static native boolean isIPv6Supported();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
}