src/java.base/share/classes/java/net/Inet6Address.java
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 57956 e0b8b019d2f5
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
54206
003cc64366da 8220249: fix headings in java.compiler
jjg
parents: 53018
diff changeset
     2
 * Copyright (c) 2000, 2019, 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: 1247
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: 1247
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: 1247
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
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.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.InvalidObjectException;
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
    30
import java.io.ObjectInputStream;
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
    31
import java.io.ObjectOutputStream;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
    32
import java.io.ObjectStreamField;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.util.Enumeration;
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
    34
import java.util.Arrays;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * This class represents an Internet Protocol version 6 (IPv6) address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * Defined by <a href="http://www.ietf.org/rfc/rfc2373.txt">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * <i>RFC&nbsp;2373: IP Version 6 Addressing Architecture</i></a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
54206
003cc64366da 8220249: fix headings in java.compiler
jjg
parents: 53018
diff changeset
    41
 * <h2> <a id="format">Textual representation of IP addresses</a> </h2>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * Textual representation of IPv6 address used as input to methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * takes one of the following forms:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * <ol>
44844
b2b4d98404ba 8179364: update "<a name=" in java.base module to use id attribute
jjg
parents: 42474
diff changeset
    47
 *   <li><p> <a id="lform">The preferred form</a> is x:x:x:x:x:x:x:x,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *   where the 'x's are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *   the hexadecimal values of the eight 16-bit pieces of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *   address. This is the full form.  For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *
45124
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
    52
 *   <blockquote><ul style="list-style-type:none">
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
    53
 *   <li>{@code 1080:0:0:0:8:800:200C:417A}</li>
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
    54
 *   </ul></blockquote>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *   <p> Note that it is not necessary to write the leading zeros in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *   an individual field. However, there must be at least one numeral
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *   in every field, except as described below.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 *   <li><p> Due to some methods of allocating certain styles of IPv6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *   addresses, it will be common for addresses to contain long
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *   strings of zero bits. In order to make writing addresses
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 *   containing zero bits easier, a special syntax is available to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 *   compress the zeros. The use of "::" indicates multiple groups
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 *   of 16-bits of zeros. The "::" can only appear once in an address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 *   The "::" can also be used to compress the leading and/or trailing
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *   zeros in an address. For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *
45124
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
    69
 *   <blockquote><ul style="list-style-type:none">
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
    70
 *   <li>{@code 1080::8:800:200C:417A}</li>
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
    71
 *   </ul></blockquote>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 *   <li><p> An alternative form that is sometimes more convenient
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *   when dealing with a mixed environment of IPv4 and IPv6 nodes is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *   x:x:x:x:x:x:d.d.d.d, where the 'x's are the hexadecimal values
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 *   of the six high-order 16-bit pieces of the address, and the 'd's
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *   are the decimal values of the four low-order 8-bit pieces of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 *   standard IPv4 representation address, for example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 *
45124
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
    80
 *   <blockquote><ul style="list-style-type:none">
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
    81
 *   <li>{@code ::FFFF:129.144.52.38}</li>
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
    82
 *   <li>{@code ::129.144.52.38}</li>
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
    83
 *   </ul></blockquote>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *   <p> where "::FFFF:d.d.d.d" and "::d.d.d.d" are, respectively, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 *   general forms of an IPv4-mapped IPv6 address and an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 *   IPv4-compatible IPv6 address. Note that the IPv4 portion must be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 *   in the "d.d.d.d" form. The following forms are invalid:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 *
45124
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
    90
 *   <blockquote><ul style="list-style-type:none">
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
    91
 *   <li>{@code ::FFFF:d.d.d}</li>
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
    92
 *   <li>{@code ::FFFF:d.d}</li>
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
    93
 *   <li>{@code ::d.d.d}</li>
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
    94
 *   <li>{@code ::d.d}</li>
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
    95
 *   </ul></blockquote>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 *   <p> The following form:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 *
45124
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
    99
 *   <blockquote><ul style="list-style-type:none">
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
   100
 *   <li>{@code ::FFFF:d}</li>
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
   101
 *   </ul></blockquote>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 *   <p> is valid, however it is an unconventional representation of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 *   the IPv4-compatible IPv6 address,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 *
45124
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
   106
 *   <blockquote><ul style="list-style-type:none">
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
   107
 *   <li>{@code ::255.255.0.d}</li>
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
   108
 *   </ul></blockquote>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 *   <p> while "::d" corresponds to the general IPv6 address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 *   "0:0:0:0:0:0:0:d".</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 * </ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 * <p> For methods that return a textual representation as output
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * value, the full form is used. Inet6Address will return the full
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 * form because it is unambiguous when used in combination with other
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * textual data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 *
54206
003cc64366da 8220249: fix headings in java.compiler
jjg
parents: 53018
diff changeset
   119
 * <h3> Special IPv6 address </h3>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 * <blockquote>
45124
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
   122
 * <table class="borderless">
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
   123
 * <caption style="display:none">Description of IPv4-mapped address</caption>
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
   124
 * <tr><th style="vertical-align:top; padding-right:2px"><i>IPv4-mapped address</i></th>
144479e89cdb 8179592: Update tables in java.base to be HTML 5-friendly.
jjg
parents: 44844
diff changeset
   125
 *         <td>Of the form ::ffff:w.x.y.z, this IPv6 address is used to
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 *         represent an IPv4 address. It allows the native program to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 *         use the same address data structure and also the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 *         socket when communicating with both IPv4 and IPv6 nodes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 *         <p>In InetAddress and Inet6Address, it is used for internal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 *         representation; it has no functional role. Java will never
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 *         return an IPv4-mapped address.  These classes can take an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 *         IPv4-mapped address as input, both in byte array and text
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 *         representation. However, it will be converted into an IPv4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 *         address.</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
 * </table></blockquote>
21334
c60dfce46a77 8026982: javadoc errors in core libs
rriggs
parents: 20839
diff changeset
   137
 *
54206
003cc64366da 8220249: fix headings in java.compiler
jjg
parents: 53018
diff changeset
   138
 * <h3><a id="scoped">Textual representation of IPv6 scoped addresses</a></h3>
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   139
 *
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   140
 * <p> The textual representation of IPv6 addresses as described above can be
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   141
 * extended to specify IPv6 scoped addresses. This extension to the basic
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   142
 * addressing architecture is described in [draft-ietf-ipngwg-scoping-arch-04.txt].
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   143
 *
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   144
 * <p> Because link-local and site-local addresses are non-global, it is possible
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   145
 * that different hosts may have the same destination address and may be
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   146
 * reachable through different interfaces on the same originating system. In
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   147
 * this case, the originating system is said to be connected to multiple zones
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   148
 * of the same scope. In order to disambiguate which is the intended destination
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   149
 * zone, it is possible to append a zone identifier (or <i>scope_id</i>) to an
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   150
 * IPv6 address.
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   151
 *
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   152
 * <p> The general format for specifying the <i>scope_id</i> is the following:
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   153
 *
21334
c60dfce46a77 8026982: javadoc errors in core libs
rriggs
parents: 20839
diff changeset
   154
 * <blockquote><i>IPv6-address</i>%<i>scope_id</i></blockquote>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
 * <p> The IPv6-address is a literal IPv6 address as described above.
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   156
 * The <i>scope_id</i> refers to an interface on the local system, and it can be
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   157
 * specified in two ways.
21334
c60dfce46a77 8026982: javadoc errors in core libs
rriggs
parents: 20839
diff changeset
   158
 * <ol><li><i>As a numeric identifier.</i> This must be a positive integer
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   159
 * that identifies the particular interface and scope as understood by the
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   160
 * system. Usually, the numeric values can be determined through administration
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   161
 * tools on the system. Each interface may have multiple values, one for each
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   162
 * scope. If the scope is unspecified, then the default value used is zero.</li>
18800
e7fa560afcfb 8020318: Fix doclint issues in java.net
juh
parents: 17198
diff changeset
   163
 * <li><i>As a string.</i> This must be the exact string that is returned by
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   164
 * {@link java.net.NetworkInterface#getName()} for the particular interface in
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   165
 * question. When an Inet6Address is created in this way, the numeric scope-id
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   166
 * is determined at the time the object is created by querying the relevant
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   167
 * NetworkInterface.</li></ol>
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   168
 *
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   169
 * <p> Note also, that the numeric <i>scope_id</i> can be retrieved from
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   170
 * Inet6Address instances returned from the NetworkInterface class. This can be
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   171
 * used to find out the current scope ids configured on the system.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
 * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
public final
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
class Inet6Address extends InetAddress {
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 25859
diff changeset
   177
    static final int INADDRSZ = 16;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   179
    private class Inet6AddressHolder {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   180
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   181
        private Inet6AddressHolder() {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   182
            ipaddress = new byte[INADDRSZ];
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   183
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   184
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   185
        private Inet6AddressHolder(
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   186
            byte[] ipaddress, int scope_id, boolean scope_id_set,
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   187
            NetworkInterface ifname, boolean scope_ifname_set)
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   188
        {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   189
            this.ipaddress = ipaddress;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   190
            this.scope_id = scope_id;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   191
            this.scope_id_set = scope_id_set;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   192
            this.scope_ifname_set = scope_ifname_set;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   193
            this.scope_ifname = ifname;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   194
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   195
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   196
        /**
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   197
         * Holds a 128-bit (16 bytes) IPv6 address.
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   198
         */
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   199
        byte[] ipaddress;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   200
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   201
        /**
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   202
         * scope_id. The scope specified when the object is created. If the object
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   203
         * is created with an interface name, then the scope_id is not determined
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   204
         * until the time it is needed.
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   205
         */
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   206
        int scope_id;  // 0
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   207
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   208
        /**
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   209
         * This will be set to true when the scope_id field contains a valid
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   210
         * integer scope_id.
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   211
         */
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   212
        boolean scope_id_set;  // false
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   213
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   214
        /**
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   215
         * scoped interface. scope_id is derived from this as the scope_id of the first
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   216
         * address whose scope is the same as this address for the named interface.
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   217
         */
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   218
        NetworkInterface scope_ifname;  // null
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   220
        /**
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   221
         * set if the object is constructed with a scoped
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   222
         * interface instead of a numeric scope id.
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   223
         */
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   224
        boolean scope_ifname_set; // false;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   225
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   226
        void setAddr(byte addr[]) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   227
            if (addr.length == INADDRSZ) { // normal IPv6 address
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   228
                System.arraycopy(addr, 0, ipaddress, 0, INADDRSZ);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   229
            }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   230
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   231
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   232
        void init(byte addr[], int scope_id) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   233
            setAddr(addr);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   234
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   235
            if (scope_id >= 0) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   236
                this.scope_id = scope_id;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   237
                this.scope_id_set = true;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   238
            }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   239
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   240
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   241
        void init(byte addr[], NetworkInterface nif)
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   242
            throws UnknownHostException
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   243
        {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   244
            setAddr(addr);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   245
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   246
            if (nif != null) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   247
                this.scope_id = deriveNumericScope(ipaddress, nif);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   248
                this.scope_id_set = true;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   249
                this.scope_ifname = nif;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   250
                this.scope_ifname_set = true;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   251
            }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   252
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   253
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   254
        String getHostAddress() {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   255
            String s = numericToTextFormat(ipaddress);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   256
            if (scope_ifname != null) { /* must check this first */
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   257
                s = s + "%" + scope_ifname.getName();
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   258
            } else if (scope_id_set) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   259
                s = s + "%" + scope_id;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   260
            }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   261
            return s;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   262
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   263
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   264
        public boolean equals(Object o) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   265
            if (! (o instanceof Inet6AddressHolder)) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   266
                return false;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   267
            }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   268
            Inet6AddressHolder that = (Inet6AddressHolder)o;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   270
            return Arrays.equals(this.ipaddress, that.ipaddress);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   271
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   272
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   273
        public int hashCode() {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   274
            if (ipaddress != null) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   275
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   276
                int hash = 0;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   277
                int i=0;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   278
                while (i<INADDRSZ) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   279
                    int j=0;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   280
                    int component=0;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   281
                    while (j<4 && i<INADDRSZ) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   282
                        component = (component << 8) + ipaddress[i];
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   283
                        j++;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   284
                        i++;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   285
                    }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   286
                    hash += component;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   287
                }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   288
                return hash;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   289
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   290
            } else {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   291
                return 0;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   292
            }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   293
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   294
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   295
        boolean isIPv4CompatibleAddress() {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   296
            if ((ipaddress[0] == 0x00) && (ipaddress[1] == 0x00) &&
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   297
                (ipaddress[2] == 0x00) && (ipaddress[3] == 0x00) &&
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   298
                (ipaddress[4] == 0x00) && (ipaddress[5] == 0x00) &&
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   299
                (ipaddress[6] == 0x00) && (ipaddress[7] == 0x00) &&
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   300
                (ipaddress[8] == 0x00) && (ipaddress[9] == 0x00) &&
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   301
                (ipaddress[10] == 0x00) && (ipaddress[11] == 0x00))  {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   302
                return true;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   303
            }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   304
            return false;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   305
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   306
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   307
        boolean isMulticastAddress() {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   308
            return ((ipaddress[0] & 0xff) == 0xff);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   309
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   311
        boolean isAnyLocalAddress() {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   312
            byte test = 0x00;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   313
            for (int i = 0; i < INADDRSZ; i++) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   314
                test |= ipaddress[i];
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   315
            }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   316
            return (test == 0x00);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   317
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   318
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   319
        boolean isLoopbackAddress() {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   320
            byte test = 0x00;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   321
            for (int i = 0; i < 15; i++) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   322
                test |= ipaddress[i];
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   323
            }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   324
            return (test == 0x00) && (ipaddress[15] == 0x01);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   325
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   326
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   327
        boolean isLinkLocalAddress() {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   328
            return ((ipaddress[0] & 0xff) == 0xfe
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   329
                    && (ipaddress[1] & 0xc0) == 0x80);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   330
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   331
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   332
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   333
        boolean isSiteLocalAddress() {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   334
            return ((ipaddress[0] & 0xff) == 0xfe
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   335
                    && (ipaddress[1] & 0xc0) == 0xc0);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   336
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   338
        boolean isMCGlobal() {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   339
            return ((ipaddress[0] & 0xff) == 0xff
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   340
                    && (ipaddress[1] & 0x0f) == 0x0e);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   341
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   342
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   343
        boolean isMCNodeLocal() {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   344
            return ((ipaddress[0] & 0xff) == 0xff
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   345
                    && (ipaddress[1] & 0x0f) == 0x01);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   346
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   347
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   348
        boolean isMCLinkLocal() {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   349
            return ((ipaddress[0] & 0xff) == 0xff
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   350
                    && (ipaddress[1] & 0x0f) == 0x02);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   351
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   352
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   353
        boolean isMCSiteLocal() {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   354
            return ((ipaddress[0] & 0xff) == 0xff
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   355
                    && (ipaddress[1] & 0x0f) == 0x05);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   356
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   357
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   358
        boolean isMCOrgLocal() {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   359
            return ((ipaddress[0] & 0xff) == 0xff
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   360
                    && (ipaddress[1] & 0x0f) == 0x08);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   361
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   362
    }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   363
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   364
    private final transient Inet6AddressHolder holder6;
17198
32db080a2a70 8007373: Inet6Address serialization incompatibility
msheppar
parents: 16870
diff changeset
   365
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55375
diff changeset
   366
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
    private static final long serialVersionUID = 6880410070516793377L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   369
    // Perform native initialization
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   370
    static { init(); }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
    Inet6Address() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        super();
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   374
        holder.init(null, IPv6);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   375
        holder6 = new Inet6AddressHolder();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
    /* checking of value for scope_id should be done by caller
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * scope_id must be >= 0, or -1 to indicate not being set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    Inet6Address(String hostName, byte addr[], int scope_id) {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   382
        holder.init(hostName, IPv6);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   383
        holder6 = new Inet6AddressHolder();
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   384
        holder6.init(addr, scope_id);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    Inet6Address(String hostName, byte addr[]) {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   388
        holder6 = new Inet6AddressHolder();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
            initif (hostName, addr, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        } catch (UnknownHostException e) {} /* cant happen if ifname is null */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   394
    Inet6Address (String hostName, byte addr[], NetworkInterface nif)
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   395
        throws UnknownHostException
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   396
    {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   397
        holder6 = new Inet6AddressHolder();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
        initif (hostName, addr, nif);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   401
    Inet6Address (String hostName, byte addr[], String ifname)
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   402
        throws UnknownHostException
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   403
    {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   404
        holder6 = new Inet6AddressHolder();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
        initstr (hostName, addr, ifname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
    /**
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   409
     * Create an Inet6Address in the exact manner of {@link
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   410
     * InetAddress#getByAddress(String,byte[])} except that the IPv6 scope_id is
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   411
     * set to the value corresponding to the given interface for the address
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18800
diff changeset
   412
     * type specified in {@code addr}. The call will fail with an
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   413
     * UnknownHostException if the given interface does not have a numeric
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 52220
diff changeset
   414
     * scope_id assigned for the given address type (e.g. link-local or site-local).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     * See <a href="Inet6Address.html#scoped">here</a> for a description of IPv6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     * scoped addresses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * @param host the specified host
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * @param addr the raw IP address in network byte order
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * @param nif an interface this address must be associated with.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * @return  an Inet6Address object created from the raw IP address.
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   422
     * @throws  UnknownHostException
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   423
     *          if IP address is of illegal length, or if the interface does not
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   424
     *          have a numeric scope_id assigned for the given address type.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     */
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   428
    public static Inet6Address getByAddress(String host, byte[] addr,
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   429
                                            NetworkInterface nif)
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   430
        throws UnknownHostException
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   431
    {
53018
8bf9268df0e2 8215281: Use String.isEmpty() when applicable in java.base
redestad
parents: 52499
diff changeset
   432
        if (host != null && !host.isEmpty() && host.charAt(0) == '[') {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
            if (host.charAt(host.length()-1) == ']') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
                host = host.substring(1, host.length() -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
        if (addr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
            if (addr.length == Inet6Address.INADDRSZ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
                return new Inet6Address(host, addr, nif);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
        throw new UnknownHostException("addr is of illegal length");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    /**
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   446
     * Create an Inet6Address in the exact manner of {@link
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   447
     * InetAddress#getByAddress(String,byte[])} except that the IPv6 scope_id is
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   448
     * set to the given numeric value. The scope_id is not checked to determine
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   449
     * if it corresponds to any interface on the system.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * See <a href="Inet6Address.html#scoped">here</a> for a description of IPv6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     * scoped addresses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     * @param host the specified host
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * @param addr the raw IP address in network byte order
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     * @param scope_id the numeric scope_id for the address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * @return  an Inet6Address object created from the raw IP address.
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   457
     * @throws  UnknownHostException  if IP address is of illegal length.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     */
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   461
    public static Inet6Address getByAddress(String host, byte[] addr,
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   462
                                            int scope_id)
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   463
        throws UnknownHostException
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   464
    {
53018
8bf9268df0e2 8215281: Use String.isEmpty() when applicable in java.base
redestad
parents: 52499
diff changeset
   465
        if (host != null && !host.isEmpty() && host.charAt(0) == '[') {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
            if (host.charAt(host.length()-1) == ']') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
                host = host.substring(1, host.length() -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        if (addr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
            if (addr.length == Inet6Address.INADDRSZ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
                return new Inet6Address(host, addr, scope_id);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        throw new UnknownHostException("addr is of illegal length");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   478
    private void initstr(String hostName, byte addr[], String ifname)
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   479
        throws UnknownHostException
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   480
    {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
            NetworkInterface nif = NetworkInterface.getByName (ifname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
            if (nif == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
                throw new UnknownHostException ("no such interface " + ifname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
            initif (hostName, addr, nif);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        } catch (SocketException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
            throw new UnknownHostException ("SocketException thrown" + ifname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
17198
32db080a2a70 8007373: Inet6Address serialization incompatibility
msheppar
parents: 16870
diff changeset
   492
    private void initif(String hostName, byte addr[], NetworkInterface nif)
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   493
        throws UnknownHostException
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   494
    {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   495
        int family = -1;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   496
        holder6.init(addr, nif);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   497
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        if (addr.length == INADDRSZ) { // normal IPv6 address
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   499
            family = IPv6;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        }
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   501
        holder.init(hostName, family);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
    /* check the two Ipv6 addresses and return false if they are both
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     * non global address types, but not the same.
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 52220
diff changeset
   506
     * (i.e. one is site-local and the other link-local)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * return true otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     */
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   509
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   510
    private static boolean isDifferentLocalAddressType(
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   511
        byte[] thisAddr, byte[] otherAddr) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   512
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   513
        if (Inet6Address.isLinkLocalAddress(thisAddr) &&
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   514
                !Inet6Address.isLinkLocalAddress(otherAddr)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
            return false;
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   516
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   517
        if (Inet6Address.isSiteLocalAddress(thisAddr) &&
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   518
                !Inet6Address.isSiteLocalAddress(otherAddr)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
            return false;
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   520
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   524
    private static int deriveNumericScope (byte[] thisAddr, NetworkInterface ifc) throws UnknownHostException {
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   525
        Enumeration<InetAddress> addresses = ifc.getInetAddresses();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
        while (addresses.hasMoreElements()) {
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   527
            InetAddress addr = addresses.nextElement();
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   528
            if (!(addr instanceof Inet6Address)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
            }
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   531
            Inet6Address ia6_addr = (Inet6Address)addr;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
            /* check if site or link local prefixes match */
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   533
            if (!isDifferentLocalAddressType(thisAddr, ia6_addr.getAddress())){
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
                /* type not the same, so carry on searching */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
            /* found a matching address - return its scope_id */
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   538
            return ia6_addr.getScopeId();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
        throw new UnknownHostException ("no scope_id found");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   543
    private int deriveNumericScope (String ifname) throws UnknownHostException {
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   544
        Enumeration<NetworkInterface> en;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
            en = NetworkInterface.getNetworkInterfaces();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        } catch (SocketException e) {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   548
            throw new UnknownHostException ("could not enumerate local network interfaces");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
        while (en.hasMoreElements()) {
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   551
            NetworkInterface ifc = en.nextElement();
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   552
            if (ifc.getName().equals (ifname)) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   553
                return deriveNumericScope(holder6.ipaddress, ifc);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
        }
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   556
        throw new UnknownHostException ("No matching address found for interface : " +ifname);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   557
    }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   558
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   559
    /**
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   560
     * @serialField ipaddress byte[]
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   561
     * @serialField scope_id int
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   562
     * @serialField scope_id_set boolean
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   563
     * @serialField scope_ifname_set boolean
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   564
     * @serialField ifname String
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   565
     */
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55375
diff changeset
   566
    @java.io.Serial
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   567
    private static final ObjectStreamField[] serialPersistentFields = {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   568
         new ObjectStreamField("ipaddress", byte[].class),
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   569
         new ObjectStreamField("scope_id", int.class),
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   570
         new ObjectStreamField("scope_id_set", boolean.class),
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   571
         new ObjectStreamField("scope_ifname_set", boolean.class),
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   572
         new ObjectStreamField("ifname", String.class)
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   573
    };
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   574
46873
7ac2f551b0d6 8182487: Add Unsafe.objectFieldOffset(Class, String)
redestad
parents: 45124
diff changeset
   575
    private static final jdk.internal.misc.Unsafe UNSAFE
7ac2f551b0d6 8182487: Add Unsafe.objectFieldOffset(Class, String)
redestad
parents: 45124
diff changeset
   576
            = jdk.internal.misc.Unsafe.getUnsafe();
7ac2f551b0d6 8182487: Add Unsafe.objectFieldOffset(Class, String)
redestad
parents: 45124
diff changeset
   577
    private static final long FIELDS_OFFSET = UNSAFE.objectFieldOffset(
7ac2f551b0d6 8182487: Add Unsafe.objectFieldOffset(Class, String)
redestad
parents: 45124
diff changeset
   578
                Inet6Address.class, "holder6");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     * restore the state of this object from stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     * including the scope information, only if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * scoped interface name is valid on this system
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     */
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55375
diff changeset
   585
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
    private void readObject(ObjectInputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        throws IOException, ClassNotFoundException {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   588
        NetworkInterface scope_ifname = null;
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14783
diff changeset
   589
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14783
diff changeset
   590
        if (getClass().getClassLoader() != null) {
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14783
diff changeset
   591
            throw new SecurityException ("invalid address type");
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14783
diff changeset
   592
        }
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14783
diff changeset
   593
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   594
        ObjectInputStream.GetField gf = s.readFields();
48666
d626620a1844 8194676: NullPointerException is thrown if ipaddress is not set.
vtewari
parents: 47216
diff changeset
   595
        byte[] ipaddress = (byte[])gf.get("ipaddress", new byte[0]);
22106
389380609316 8031201: Fix casting lint issues in java.net
darcy
parents: 21334
diff changeset
   596
        int scope_id = gf.get("scope_id", -1);
389380609316 8031201: Fix casting lint issues in java.net
darcy
parents: 21334
diff changeset
   597
        boolean scope_id_set = gf.get("scope_id_set", false);
389380609316 8031201: Fix casting lint issues in java.net
darcy
parents: 21334
diff changeset
   598
        boolean scope_ifname_set = gf.get("scope_ifname_set", false);
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   599
        String ifname = (String)gf.get("ifname", null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
53018
8bf9268df0e2 8215281: Use String.isEmpty() when applicable in java.base
redestad
parents: 52499
diff changeset
   601
        if (ifname != null && !ifname.isEmpty()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
                scope_ifname = NetworkInterface.getByName(ifname);
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   604
                if (scope_ifname == null) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   605
                    /* the interface does not exist on this system, so we clear
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   606
                     * the scope information completely */
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   607
                    scope_id_set = false;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   608
                    scope_ifname_set = false;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   609
                    scope_id = 0;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   610
                } else {
17198
32db080a2a70 8007373: Inet6Address serialization incompatibility
msheppar
parents: 16870
diff changeset
   611
                    scope_ifname_set = true;
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   612
                    try {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   613
                        scope_id = deriveNumericScope (ipaddress, scope_ifname);
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   614
                    } catch (UnknownHostException e) {
6004
f88fd15b64b9 6966846: Incorrect assertion in java.net.Inet6Address.readObject
chegar
parents: 5506
diff changeset
   615
                        // typically should not happen, but it may be that
f88fd15b64b9 6966846: Incorrect assertion in java.net.Inet6Address.readObject
chegar
parents: 5506
diff changeset
   616
                        // the machine being used for deserialization has
f88fd15b64b9 6966846: Incorrect assertion in java.net.Inet6Address.readObject
chegar
parents: 5506
diff changeset
   617
                        // the same interface name but without IPv6 configured.
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   618
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
            } catch (SocketException e) {}
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   621
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
        /* if ifname was not supplied, then the numeric info is used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
        ipaddress = ipaddress.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
        // Check that our invariants are satisfied
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        if (ipaddress.length != INADDRSZ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
            throw new InvalidObjectException("invalid address length: "+
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
                                             ipaddress.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   633
        if (holder.getFamily() != IPv6) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
            throw new InvalidObjectException("invalid address family type");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
        }
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   636
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   637
        Inet6AddressHolder h = new Inet6AddressHolder(
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   638
            ipaddress, scope_id, scope_id_set, scope_ifname, scope_ifname_set
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   639
        );
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   640
52220
9c260a6b6471 8207146: Rename jdk.internal.misc.Unsafe::xxxObject to xxxReference
mchung
parents: 48666
diff changeset
   641
        UNSAFE.putReference(this, FIELDS_OFFSET, h);
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   642
    }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   643
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   644
    /**
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   645
     * default behavior is overridden in order to write the
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   646
     * scope_ifname field as a String, rather than a NetworkInterface
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   647
     * which is not serializable
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   648
     */
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55375
diff changeset
   649
    @java.io.Serial
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   650
    private synchronized void writeObject(ObjectOutputStream s)
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   651
        throws IOException
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   652
    {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   653
            String ifname = null;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   654
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   655
        if (holder6.scope_ifname != null) {
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   656
            ifname = holder6.scope_ifname.getName();
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   657
            holder6.scope_ifname_set = true;
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   658
        }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   659
        ObjectOutputStream.PutField pfields = s.putFields();
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   660
        pfields.put("ipaddress", holder6.ipaddress);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   661
        pfields.put("scope_id", holder6.scope_id);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   662
        pfields.put("scope_id_set", holder6.scope_id_set);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   663
        pfields.put("scope_ifname_set", holder6.scope_ifname_set);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   664
        pfields.put("ifname", ifname);
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   665
        s.writeFields();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     * Utility routine to check if the InetAddress is an IP multicast
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
     * address. 11111111 at the start of the address identifies the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     * address as being a multicast address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     *
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   673
     * @return a {@code boolean} indicating if the InetAddress is an IP
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   674
     *         multicast address
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     */
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   676
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
    public boolean isMulticastAddress() {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   678
        return holder6.isMulticastAddress();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    /**
40118
f63c761ec2d2 8162819: fix minor Javadoc issues and remove warnings in java.net.Socket
clanger
parents: 33674
diff changeset
   682
     * Utility routine to check if the InetAddress is a wildcard address.
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   683
     *
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 52220
diff changeset
   684
     * @return a {@code boolean} indicating if the InetAddress is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     *         a wildcard address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     */
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   687
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
    public boolean isAnyLocalAddress() {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   689
        return holder6.isAnyLocalAddress();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     * Utility routine to check if the InetAddress is a loopback address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     *
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   695
     * @return a {@code boolean} indicating if the InetAddress is a loopback
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   696
     *         address; or false otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     */
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   698
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
    public boolean isLoopbackAddress() {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   700
        return holder6.isLoopbackAddress();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     * Utility routine to check if the InetAddress is an link local address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     *
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   706
     * @return a {@code boolean} indicating if the InetAddress is a link local
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   707
     *         address; or false if address is not a link local unicast address.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     */
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   709
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
    public boolean isLinkLocalAddress() {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   711
        return holder6.isLinkLocalAddress();
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   712
    }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   713
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   714
    /* static version of above */
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   715
    static boolean isLinkLocalAddress(byte[] ipaddress) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
        return ((ipaddress[0] & 0xff) == 0xfe
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
                && (ipaddress[1] & 0xc0) == 0x80);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
     * Utility routine to check if the InetAddress is a site local address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
     *
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   723
     * @return a {@code boolean} indicating if the InetAddress is a site local
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   724
     *         address; or false if address is not a site local unicast address.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     */
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   726
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
    public boolean isSiteLocalAddress() {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   728
        return holder6.isSiteLocalAddress();
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   729
    }
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   730
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   731
    /* static version of above */
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   732
    static boolean isSiteLocalAddress(byte[] ipaddress) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
        return ((ipaddress[0] & 0xff) == 0xfe
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
                && (ipaddress[1] & 0xc0) == 0xc0);
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
     * Utility routine to check if the multicast address has global scope.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
     *
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   740
     * @return a {@code boolean} indicating if the address has is a multicast
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   741
     *         address of global scope, false if it is not of global scope or
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   742
     *         it is not a multicast address
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
     */
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   744
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
    public boolean isMCGlobal() {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   746
        return holder6.isMCGlobal();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     * Utility routine to check if the multicast address has node scope.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     *
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   752
     * @return a {@code boolean} indicating if the address has is a multicast
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   753
     *         address of node-local scope, false if it is not of node-local
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   754
     *         scope or it is not a multicast address
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
     */
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   756
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
    public boolean isMCNodeLocal() {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   758
        return holder6.isMCNodeLocal();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
     * Utility routine to check if the multicast address has link scope.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
     *
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   764
     * @return a {@code boolean} indicating if the address has is a multicast
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   765
     *         address of link-local scope, false if it is not of link-local
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   766
     *         scope or it is not a multicast address
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     */
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   768
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
    public boolean isMCLinkLocal() {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   770
        return holder6.isMCLinkLocal();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
     * Utility routine to check if the multicast address has site scope.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
     *
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   776
     * @return a {@code boolean} indicating if the address has is a multicast
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   777
     *         address of site-local scope, false if it is not  of site-local
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   778
     *         scope or it is not a multicast address
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
     */
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   780
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
    public boolean isMCSiteLocal() {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   782
        return holder6.isMCSiteLocal();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
     * Utility routine to check if the multicast address has organization scope.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
     *
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   788
     * @return a {@code boolean} indicating if the address has is a multicast
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   789
     *         address of organization-local scope, false if it is not of
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   790
     *         organization-local scope or it is not a multicast address
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     */
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   792
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
    public boolean isMCOrgLocal() {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   794
        return holder6.isMCOrgLocal();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
    /**
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   797
     * Returns the raw IP address of this {@code InetAddress} object. The result
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   798
     * is in network byte order: the highest order byte of the address is in
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   799
     * {@code getAddress()[0]}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
     * @return  the raw IP address of this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
     */
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   803
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
    public byte[] getAddress() {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   805
        return holder6.ipaddress.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
     * Returns the numeric scopeId, if this instance is associated with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
     * an interface. If no scoped_id is set, the returned value is zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
     * @return the scopeId, or zero if not set.
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   813
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
     */
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   816
     public int getScopeId() {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   817
        return holder6.scope_id;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
     * Returns the scoped interface, if this instance was created with
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 52220
diff changeset
   822
     * a scoped interface.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
     * @return the scoped interface, or null if not set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
     */
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   827
     public NetworkInterface getScopedInterface() {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   828
        return holder6.scope_ifname;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
    /**
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   832
     * Returns the IP address string in textual presentation. If the instance
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   833
     * was created specifying a scope identifier then the scope id is appended
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   834
     * to the IP address preceded by a "%" (per-cent) character. This can be
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   835
     * either a numeric value or a string, depending on which was used to create
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   836
     * the instance.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
     * @return  the raw IP address in a string format.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
     */
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   840
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
    public String getHostAddress() {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   842
        return holder6.getHostAddress();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
     * Returns a hashcode for this IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
     * @return  a hash code value for this IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
     */
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   850
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
    public int hashCode() {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   852
        return holder6.hashCode();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
    /**
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   856
     * Compares this object against the specified object. The result is {@code
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   857
     * true} if and only if the argument is not {@code null} and it represents
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   858
     * the same IP address as this object.
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   859
     *
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   860
     * <p> Two instances of {@code InetAddress} represent the same IP address
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   861
     * if the length of the byte arrays returned by {@code getAddress} is the
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   862
     * same for both, and each of the array components is the same for the byte
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   863
     * arrays.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
     * @param   obj   the object to compare against.
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   866
     *
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   867
     * @return  {@code true} if the objects are the same; {@code false} otherwise.
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   868
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
     * @see     java.net.InetAddress#getAddress()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
     */
902
bbfb1e2369b2 6656849: NullPointerException thrown while de-serializing IPV6 Address.
jccollet
parents: 2
diff changeset
   871
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
    public boolean equals(Object obj) {
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   873
        if (obj == null || !(obj instanceof Inet6Address))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
        Inet6Address inetAddr = (Inet6Address)obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   878
        return holder6.equals(inetAddr.holder6);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
     * Utility routine to check if the InetAddress is an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
     * IPv4 compatible IPv6 address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
     *
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   885
     * @return a {@code boolean} indicating if the InetAddress is an IPv4
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   886
     *         compatible IPv6 address; or false if address is IPv4 address.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
    public boolean isIPv4CompatibleAddress() {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 17198
diff changeset
   889
        return holder6.isIPv4CompatibleAddress();
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
    // Utilities
42474
6b0beb616950 8164057: Fix @since for java.net.Inet[46]Address
clanger
parents: 40118
diff changeset
   893
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 25859
diff changeset
   894
    private static final int INT16SZ = 2;
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   895
42474
6b0beb616950 8164057: Fix @since for java.net.Inet[46]Address
clanger
parents: 40118
diff changeset
   896
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
     * Convert IPv6 binary address into presentation (printable) format.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
     * @param src a byte array representing the IPv6 numeric address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
     * @return a String representing an IPv6 address in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
     *         textual representation format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
     */
14783
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   903
    static String numericToTextFormat(byte[] src) {
2ecc993a8e67 8004675: Inet6Address.getHostAddress should use string scope identifier where available
chegar
parents: 10596
diff changeset
   904
        StringBuilder sb = new StringBuilder(39);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
        for (int i = 0; i < (INADDRSZ / INT16SZ); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
            sb.append(Integer.toHexString(((src[i<<1]<<8) & 0xff00)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
                                          | (src[(i<<1)+1] & 0xff)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
            if (i < (INADDRSZ / INT16SZ) -1 ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
               sb.append(":");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
        return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
     * Perform class load-time initializations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
    private static native void init();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
}