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