src/java.base/share/classes/java/net/NetworkInterface.java
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 58242 94bb65cb37d3
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
/*
55596
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
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: 5293
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: 5293
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: 5293
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5293
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5293
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
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
    28
import java.util.Arrays;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.Enumeration;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.NoSuchElementException;
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
    31
import java.util.Spliterator;
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
    32
import java.util.Spliterators;
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
    33
import java.util.stream.Stream;
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
    34
import java.util.stream.StreamSupport;
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 a Network Interface made up of a name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * and a list of IP addresses assigned to this interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * It is used to identify the local interface on which a multicast group
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * is joined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * Interfaces are normally known by names such as "le0".
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
public final class NetworkInterface {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    private String name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    private String displayName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    private int index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    private InetAddress addrs[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    private InterfaceAddress bindings[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    private NetworkInterface childs[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    private NetworkInterface parent = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    private boolean virtual = false;
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9842
diff changeset
    55
    private static final NetworkInterface defaultInterface;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9842
diff changeset
    56
    private static final int defaultIndex; /* index of defaultInterface */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    static {
55693
9a97b1393e72 8227587: Add internal privileged System.loadLibrary
redestad
parents: 55596
diff changeset
    59
        jdk.internal.loader.BootLoader.loadLibrary("net");
12559
9456ceada8b1 7164376: Replace use of sun.security.action.LoadLibraryAction with System.loadLibrary
mchung
parents: 12047
diff changeset
    60
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        init();
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9842
diff changeset
    62
        defaultInterface = DefaultInterface.getDefault();
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9842
diff changeset
    63
        if (defaultInterface != null) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9842
diff changeset
    64
            defaultIndex = defaultInterface.getIndex();
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9842
diff changeset
    65
        } else {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9842
diff changeset
    66
            defaultIndex = 0;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9842
diff changeset
    67
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * Returns an NetworkInterface object with index set to 0 and name to null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * Setting such an interface on a MulticastSocket will cause the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * kernel to choose one interface for sending multicast packets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    NetworkInterface() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    NetworkInterface(String name, int index, InetAddress[] addrs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        this.name = name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        this.index = index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        this.addrs = addrs;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * Get the name of this network interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * @return the name of this network interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    public String getName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            return name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    /**
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
    95
     * Get an Enumeration with all or a subset of the InetAddresses bound to
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
    96
     * this network interface.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * <p>
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
    98
     * If there is a security manager, its {@code checkConnect}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * method is called for each InetAddress. Only InetAddresses where
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   100
     * the {@code checkConnect} doesn't throw a SecurityException
6872
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   101
     * will be returned in the Enumeration. However, if the caller has the
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   102
     * {@link NetPermission}("getNetworkInformation") permission, then all
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   103
     * InetAddresses are returned.
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   104
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * @return an Enumeration object with all or a subset of the InetAddresses
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * bound to this network interface
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   107
     * @see #inetAddresses()
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    public Enumeration<InetAddress> getInetAddresses() {
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   110
        return enumerationFromArray(getCheckedInetAddresses());
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   111
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   113
    /**
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   114
     * Get a Stream of all or a subset of the InetAddresses bound to this
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   115
     * network interface.
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   116
     * <p>
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   117
     * If there is a security manager, its {@code checkConnect}
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   118
     * method is called for each InetAddress. Only InetAddresses where
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   119
     * the {@code checkConnect} doesn't throw a SecurityException will be
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   120
     * returned in the Stream. However, if the caller has the
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   121
     * {@link NetPermission}("getNetworkInformation") permission, then all
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   122
     * InetAddresses are returned.
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   123
     *
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   124
     * @return a Stream object with all or a subset of the InetAddresses
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   125
     * bound to this network interface
35302
e4d2275861c3 8136494: Update "@since 1.9" to "@since 9" to match java.version.specification
iris
parents: 32649
diff changeset
   126
     * @since 9
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   127
     */
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   128
    public Stream<InetAddress> inetAddresses() {
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   129
        return streamFromArray(getCheckedInetAddresses());
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   130
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   132
    private InetAddress[] getCheckedInetAddresses() {
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   133
        InetAddress[] local_addrs = new InetAddress[addrs.length];
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   134
        boolean trusted = true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   136
        SecurityManager sec = System.getSecurityManager();
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   137
        if (sec != null) {
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   138
            try {
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   139
                sec.checkPermission(new NetPermission("getNetworkInformation"));
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   140
            } catch (SecurityException e) {
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   141
                trusted = false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        }
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   144
        int i = 0;
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   145
        for (int j = 0; j < addrs.length; j++) {
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   146
            try {
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   147
                if (!trusted) {
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   148
                    sec.checkConnect(addrs[j].getHostAddress(), -1);
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   149
                }
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   150
                local_addrs[i++] = addrs[j];
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   151
            } catch (SecurityException e) { }
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   152
        }
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   153
        return Arrays.copyOf(local_addrs, i);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   157
     * Get a List of all or a subset of the {@code InterfaceAddresses}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * of this network interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * <p>
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   160
     * If there is a security manager, its {@code checkConnect}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * method is called with the InetAddress for each InterfaceAddress.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   162
     * Only InterfaceAddresses where the {@code checkConnect} doesn't throw
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * a SecurityException will be returned in the List.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   165
     * @return a {@code List} object with all or a subset of the
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 52157
diff changeset
   166
     *         InterfaceAddress of this network interface
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    public java.util.List<InterfaceAddress> getInterfaceAddresses() {
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 25859
diff changeset
   170
        java.util.List<InterfaceAddress> lst = new java.util.ArrayList<>(1);
44105
6ff4cfe526be 8175325: NetworkInterface.getInterfaceAddresses throws NPE when no addresses
msheppar
parents: 41969
diff changeset
   171
        if (bindings != null) {
6ff4cfe526be 8175325: NetworkInterface.getInterfaceAddresses throws NPE when no addresses
msheppar
parents: 41969
diff changeset
   172
            SecurityManager sec = System.getSecurityManager();
6ff4cfe526be 8175325: NetworkInterface.getInterfaceAddresses throws NPE when no addresses
msheppar
parents: 41969
diff changeset
   173
            for (int j=0; j<bindings.length; j++) {
6ff4cfe526be 8175325: NetworkInterface.getInterfaceAddresses throws NPE when no addresses
msheppar
parents: 41969
diff changeset
   174
                try {
6ff4cfe526be 8175325: NetworkInterface.getInterfaceAddresses throws NPE when no addresses
msheppar
parents: 41969
diff changeset
   175
                    if (sec != null) {
6ff4cfe526be 8175325: NetworkInterface.getInterfaceAddresses throws NPE when no addresses
msheppar
parents: 41969
diff changeset
   176
                        sec.checkConnect(bindings[j].getAddress().getHostAddress(), -1);
6ff4cfe526be 8175325: NetworkInterface.getInterfaceAddresses throws NPE when no addresses
msheppar
parents: 41969
diff changeset
   177
                    }
6ff4cfe526be 8175325: NetworkInterface.getInterfaceAddresses throws NPE when no addresses
msheppar
parents: 41969
diff changeset
   178
                    lst.add(bindings[j]);
6ff4cfe526be 8175325: NetworkInterface.getInterfaceAddresses throws NPE when no addresses
msheppar
parents: 41969
diff changeset
   179
                } catch (SecurityException e) { }
6ff4cfe526be 8175325: NetworkInterface.getInterfaceAddresses throws NPE when no addresses
msheppar
parents: 41969
diff changeset
   180
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        return lst;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * Get an Enumeration with all the subinterfaces (also known as virtual
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * interfaces) attached to this network interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * For instance eth0:1 will be a subinterface to eth0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * @return an Enumeration object with all of the subinterfaces
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * of this network interface
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   193
     * @see #subInterfaces()
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    public Enumeration<NetworkInterface> getSubInterfaces() {
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   197
        return enumerationFromArray(childs);
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   198
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   200
    /**
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   201
     * Get a Stream of all subinterfaces (also known as virtual
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   202
     * interfaces) attached to this network interface.
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   203
     *
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   204
     * @return a Stream object with all of the subinterfaces
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   205
     * of this network interface
35302
e4d2275861c3 8136494: Update "@since 1.9" to "@since 9" to match java.version.specification
iris
parents: 32649
diff changeset
   206
     * @since 9
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   207
     */
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   208
    public Stream<NetworkInterface> subInterfaces() {
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   209
        return streamFromArray(childs);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * Returns the parent NetworkInterface of this interface if this is
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   214
     * a subinterface, or {@code null} if it is a physical
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * (non virtual) interface or has no parent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   217
     * @return The {@code NetworkInterface} this interface is attached to.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    public NetworkInterface getParent() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        return parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    /**
1097
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   225
     * Returns the index of this network interface. The index is an integer greater
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   226
     * or equal to zero, or {@code -1} for unknown. This is a system specific value
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   227
     * and interfaces with the same name can have different indexes on different
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   228
     * machines.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     *
1097
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   230
     * @return the index of this network interface or {@code -1} if the index is
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   231
     *         unknown
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   232
     * @see #getByIndex(int)
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   233
     * @since 1.7
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     */
1097
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   235
    public int getIndex() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        return index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     * Get the display name of this network interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * A display name is a human readable String describing the network
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * device.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     *
5293
be5f9ec7ca3b 6706251: api/java_net/NetworkInterface/index.html#misc: getDisplayName() returned non null but empty String
chegar
parents: 5180
diff changeset
   244
     * @return a non-empty string representing the display name of this network
be5f9ec7ca3b 6706251: api/java_net/NetworkInterface/index.html#misc: getDisplayName() returned non null but empty String
chegar
parents: 5180
diff changeset
   245
     *         interface, or null if no display name is available.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    public String getDisplayName() {
5293
be5f9ec7ca3b 6706251: api/java_net/NetworkInterface/index.html#misc: getDisplayName() returned non null but empty String
chegar
parents: 5180
diff changeset
   248
        /* strict TCK conformance */
be5f9ec7ca3b 6706251: api/java_net/NetworkInterface/index.html#misc: getDisplayName() returned non null but empty String
chegar
parents: 5180
diff changeset
   249
        return "".equals(displayName) ? null : displayName;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * Searches for the network interface with the specified name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * @param   name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     *          The name of the network interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   258
     * @return  A {@code NetworkInterface} with the specified name,
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   259
     *          or {@code null} if there is no network interface
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     *          with the specified name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * @throws  SocketException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     *          If an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * @throws  NullPointerException
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   266
     *          If the specified name is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
    public static NetworkInterface getByName(String name) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        if (name == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        return getByName0(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * Get a network interface given its index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * @param index an integer, the index of the interface
1097
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   278
     * @return the NetworkInterface obtained from its index, or {@code null} if
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   279
     *         there is no interface with such an index on the system
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   280
     * @throws  SocketException  if an I/O error occurs.
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   281
     * @throws  IllegalArgumentException if index has a negative value
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   282
     * @see #getIndex()
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   283
     * @since 1.7
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     */
1097
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   285
    public static NetworkInterface getByIndex(int index) throws SocketException {
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   286
        if (index < 0)
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   287
            throw new IllegalArgumentException("Interface index can't be negative");
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   288
        return getByIndex0(index);
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   289
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * Convenience method to search for a network interface that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * has the specified Internet Protocol (IP) address bound to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * If the specified IP address is bound to multiple network
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     * interfaces it is not defined which network interface is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     * returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * @param   addr
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   301
     *          The {@code InetAddress} to search with.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   303
     * @return  A {@code NetworkInterface}
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   304
     *          or {@code null} if there is no network interface
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     *          with the specified IP address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * @throws  SocketException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     *          If an I/O error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * @throws  NullPointerException
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   311
     *          If the specified address is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
    public static NetworkInterface getByInetAddress(InetAddress addr) throws SocketException {
5180
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 1152
diff changeset
   314
        if (addr == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
            throw new NullPointerException();
5180
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 1152
diff changeset
   316
        }
55596
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   317
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   318
        if (addr.holder.family == InetAddress.IPv4) {
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   319
            if (!(addr instanceof Inet4Address)) {
52157
7593b9b8e8f2 8199110: Address Internet Addresses
vtewari
parents: 47216
diff changeset
   320
                throw new IllegalArgumentException("invalid family type: "
55596
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   321
                        + addr.holder.family);
52157
7593b9b8e8f2 8199110: Address Internet Addresses
vtewari
parents: 47216
diff changeset
   322
            }
55596
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   323
        } else if (addr.holder.family == InetAddress.IPv6) {
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   324
            if (!(addr instanceof Inet6Address)) {
52157
7593b9b8e8f2 8199110: Address Internet Addresses
vtewari
parents: 47216
diff changeset
   325
                throw new IllegalArgumentException("invalid family type: "
55596
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   326
                        + addr.holder.family);
52157
7593b9b8e8f2 8199110: Address Internet Addresses
vtewari
parents: 47216
diff changeset
   327
            }
7593b9b8e8f2 8199110: Address Internet Addresses
vtewari
parents: 47216
diff changeset
   328
        } else {
7593b9b8e8f2 8199110: Address Internet Addresses
vtewari
parents: 47216
diff changeset
   329
            throw new IllegalArgumentException("invalid address type: " + addr);
5180
8161f879d704 6893954: Subclasses of InetAddress may incorrectly interpret network addresses
michaelm
parents: 1152
diff changeset
   330
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        return getByInetAddress0(addr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    /**
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   335
     * Returns an {@code Enumeration} of all the interfaces on this machine. The
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   336
     * {@code Enumeration} contains at least one element, possibly representing
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   337
     * a loopback interface that only supports communication between entities on
13374
2a3bf352ef97 7120665: Change Java SE spec so that external networking not required
michaelm
parents: 12559
diff changeset
   338
     * this machine.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     *
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   340
     * @apiNote this method can be used in combination with
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   341
     * {@link #getInetAddresses()} to obtain all IP addresses for this node
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * @return an Enumeration of NetworkInterfaces found on this machine
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 55693
diff changeset
   344
     * @throws     SocketException  if an I/O error occurs,
41969
e4c2f100927f 8164815: 3 JCK NetworkInterface tests fail on Raspberry Pi
msheppar
parents: 35302
diff changeset
   345
     *             or if the platform does not have at least one configured
e4c2f100927f 8164815: 3 JCK NetworkInterface tests fail on Raspberry Pi
msheppar
parents: 35302
diff changeset
   346
     *             network interface.
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   347
     * @see #networkInterfaces()
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    public static Enumeration<NetworkInterface> getNetworkInterfaces()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        throws SocketException {
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   351
        NetworkInterface[] netifs = getAll();
41969
e4c2f100927f 8164815: 3 JCK NetworkInterface tests fail on Raspberry Pi
msheppar
parents: 35302
diff changeset
   352
        if (netifs != null && netifs.length > 0) {
e4c2f100927f 8164815: 3 JCK NetworkInterface tests fail on Raspberry Pi
msheppar
parents: 35302
diff changeset
   353
            return enumerationFromArray(netifs);
e4c2f100927f 8164815: 3 JCK NetworkInterface tests fail on Raspberry Pi
msheppar
parents: 35302
diff changeset
   354
        } else {
e4c2f100927f 8164815: 3 JCK NetworkInterface tests fail on Raspberry Pi
msheppar
parents: 35302
diff changeset
   355
            throw new SocketException("No network interfaces configured");
e4c2f100927f 8164815: 3 JCK NetworkInterface tests fail on Raspberry Pi
msheppar
parents: 35302
diff changeset
   356
        }
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   357
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   359
    /**
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   360
     * Returns a {@code Stream} of all the interfaces on this machine.  The
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   361
     * {@code Stream} contains at least one interface, possibly representing a
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   362
     * loopback interface that only supports communication between entities on
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   363
     * this machine.
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   364
     *
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   365
     * @apiNote this method can be used in combination with
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   366
     * {@link #inetAddresses()}} to obtain a stream of all IP addresses for
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   367
     * this node, for example:
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   368
     * <pre> {@code
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   369
     * Stream<InetAddress> addrs = NetworkInterface.networkInterfaces()
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   370
     *     .flatMap(NetworkInterface::inetAddresses);
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   371
     * }</pre>
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   372
     *
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   373
     * @return a Stream of NetworkInterfaces found on this machine
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 55693
diff changeset
   374
     * @throws     SocketException  if an I/O error occurs,
41969
e4c2f100927f 8164815: 3 JCK NetworkInterface tests fail on Raspberry Pi
msheppar
parents: 35302
diff changeset
   375
     *             or if the platform does not have at least one configured
e4c2f100927f 8164815: 3 JCK NetworkInterface tests fail on Raspberry Pi
msheppar
parents: 35302
diff changeset
   376
     *             network interface.
35302
e4d2275861c3 8136494: Update "@since 1.9" to "@since 9" to match java.version.specification
iris
parents: 32649
diff changeset
   377
     * @since 9
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   378
     */
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   379
    public static Stream<NetworkInterface> networkInterfaces()
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   380
        throws SocketException {
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   381
        NetworkInterface[] netifs = getAll();
41969
e4c2f100927f 8164815: 3 JCK NetworkInterface tests fail on Raspberry Pi
msheppar
parents: 35302
diff changeset
   382
        if (netifs != null && netifs.length > 0) {
e4c2f100927f 8164815: 3 JCK NetworkInterface tests fail on Raspberry Pi
msheppar
parents: 35302
diff changeset
   383
            return streamFromArray(netifs);
e4c2f100927f 8164815: 3 JCK NetworkInterface tests fail on Raspberry Pi
msheppar
parents: 35302
diff changeset
   384
        }  else {
e4c2f100927f 8164815: 3 JCK NetworkInterface tests fail on Raspberry Pi
msheppar
parents: 35302
diff changeset
   385
            throw new SocketException("No network interfaces configured");
e4c2f100927f 8164815: 3 JCK NetworkInterface tests fail on Raspberry Pi
msheppar
parents: 35302
diff changeset
   386
        }
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   387
    }
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   388
55596
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   389
    /**
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   390
     * Checks if the given address is bound to any of the interfaces on this
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   391
     * machine.
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   392
     *
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   393
     * @param   addr
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   394
     *          The {@code InetAddress} to search with.
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   395
     * @return  true iff the addr parameter is currently bound to one of
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   396
     *          the interfaces on this machine.
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   397
     *
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   398
     * @throws  SocketException
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   399
     *          If an I/O error occurs.
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   400
     */
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   401
    /* package-private */ static boolean isBoundInetAddress(InetAddress addr)
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   402
        throws SocketException {
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   403
        return boundInetAddress0(addr);
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   404
    }
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   405
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   406
    private static <T> Enumeration<T> enumerationFromArray(T[] a) {
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 25859
diff changeset
   407
        return new Enumeration<>() {
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   408
            int i = 0;
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   409
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   410
            @Override
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   411
            public T nextElement() {
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   412
                if (i < a.length) {
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   413
                    return a[i++];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
                    throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   419
            @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
            public boolean hasMoreElements() {
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   421
                return i < a.length;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   426
    private static <T> Stream<T> streamFromArray(T[] a) {
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   427
        return StreamSupport.stream(
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   428
                Spliterators.spliterator(
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   429
                        a,
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   430
                        Spliterator.DISTINCT | Spliterator.IMMUTABLE | Spliterator.NONNULL),
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   431
                false);
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   432
    }
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 29986
diff changeset
   433
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31469
diff changeset
   434
    private static native NetworkInterface[] getAll()
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        throws SocketException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31469
diff changeset
   437
    private static native NetworkInterface getByName0(String name)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
        throws SocketException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31469
diff changeset
   440
    private static native NetworkInterface getByIndex0(int index)
1097
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   441
        throws SocketException;
af4930f761df 6717876: Make java.net.NetworkInterface.getIndex() public
jccollet
parents: 715
diff changeset
   442
55596
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   443
    private static native boolean boundInetAddress0(InetAddress addr)
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   444
            throws SocketException;
d01b345865d7 8225239: Refactor NetworkInterface lookups
redestad
parents: 52499
diff changeset
   445
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31469
diff changeset
   446
    private static native NetworkInterface getByInetAddress0(InetAddress addr)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        throws SocketException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * Returns whether a network interface is up and running.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   452
     * @return  {@code true} if the interface is up and running.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 55693
diff changeset
   453
     * @throws          SocketException if an I/O error occurs.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
    public boolean isUp() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
        return isUp0(name, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     * Returns whether a network interface is a loopback interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   464
     * @return  {@code true} if the interface is a loopback interface.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 55693
diff changeset
   465
     * @throws          SocketException if an I/O error occurs.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    public boolean isLoopback() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        return isLoopback0(name, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     * Returns whether a network interface is a point to point interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     * A typical point to point interface would be a PPP connection through
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * a modem.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   478
     * @return  {@code true} if the interface is a point to point
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     *          interface.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 55693
diff changeset
   480
     * @throws          SocketException if an I/O error occurs.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    public boolean isPointToPoint() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        return isP2P0(name, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * Returns whether a network interface supports multicasting or not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   491
     * @return  {@code true} if the interface supports Multicasting.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 55693
diff changeset
   492
     * @throws          SocketException if an I/O error occurs.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
    public boolean supportsMulticast() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        return supportsMulticast0(name, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * Returns the hardware address (usually MAC) of the interface if it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     * has one and if it can be accessed given the current privileges.
6872
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   503
     * If a security manager is set, then the caller must have
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   504
     * the permission {@link NetPermission}("getNetworkInformation").
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   506
     * @return  a byte array containing the address, or {@code null} if
6872
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   507
     *          the address doesn't exist, is not accessible or a security
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   508
     *          manager is set and the caller does not have the permission
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   509
     *          NetPermission("getNetworkInformation")
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   510
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 55693
diff changeset
   511
     * @throws          SocketException if an I/O error occurs.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
    public byte[] getHardwareAddress() throws SocketException {
6872
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   515
        SecurityManager sec = System.getSecurityManager();
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   516
        if (sec != null) {
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   517
            try {
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   518
                sec.checkPermission(new NetPermission("getNetworkInformation"));
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   519
            } catch (SecurityException e) {
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   520
                if (!getInetAddresses().hasMoreElements()) {
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   521
                    // don't have connect permission to any local address
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   522
                    return null;
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   523
                }
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   524
            }
b90e4fee471f 6952603: NetworkInterface reveals local network address to untrusted code
michaelm
parents: 5506
diff changeset
   525
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
        for (InetAddress addr : addrs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
            if (addr instanceof Inet4Address) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                return getMacAddr0(((Inet4Address)addr).getAddress(), name, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
        return getMacAddr0(null, name, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     * Returns the Maximum Transmission Unit (MTU) of this interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     * @return the value of the MTU for that interface.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 55693
diff changeset
   538
     * @throws          SocketException if an I/O error occurs.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
    public int getMTU() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
        return getMTU0(name, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * Returns whether this interface is a virtual interface (also called
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     * subinterface).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * Virtual interfaces are, on some systems, interfaces created as a child
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     * of a physical interface and given different settings (like address or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     * MTU). Usually the name of the interface will the name of the parent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * followed by a colon (:) and a number identifying the child since there
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * can be several virtual interfaces attached to a single physical
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     * interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   555
     * @return {@code true} if this interface is a virtual interface.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    public boolean isVirtual() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        return virtual;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31469
diff changeset
   562
    private static native boolean isUp0(String name, int ind) throws SocketException;
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31469
diff changeset
   563
    private static native boolean isLoopback0(String name, int ind) throws SocketException;
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31469
diff changeset
   564
    private static native boolean supportsMulticast0(String name, int ind) throws SocketException;
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31469
diff changeset
   565
    private static native boolean isP2P0(String name, int ind) throws SocketException;
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31469
diff changeset
   566
    private static native byte[] getMacAddr0(byte[] inAddr, String name, int ind) throws SocketException;
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31469
diff changeset
   567
    private static native int getMTU0(String name, int ind) throws SocketException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
     * Compares this object against the specified object.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   571
     * The result is {@code true} if and only if the argument is
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   572
     * not {@code null} and it represents the same NetworkInterface
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * as this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * <p>
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   575
     * Two instances of {@code NetworkInterface} represent the same
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     * NetworkInterface if both name and addrs are the same for both.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * @param   obj   the object to compare against.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   579
     * @return  {@code true} if the objects are the same;
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   580
     *          {@code false} otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     * @see     java.net.InetAddress#getAddress()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
    public boolean equals(Object obj) {
7986
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   584
        if (!(obj instanceof NetworkInterface)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
        }
7986
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   587
        NetworkInterface that = (NetworkInterface)obj;
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   588
        if (this.name != null ) {
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   589
            if (!this.name.equals(that.name)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
        } else {
7986
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   593
            if (that.name != null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
        }
7986
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   597
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   598
        if (this.addrs == null) {
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   599
            return that.addrs == null;
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   600
        } else if (that.addrs == null) {
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   601
            return false;
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   602
        }
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   603
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   604
        /* Both addrs not null. Compare number of addresses */
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   605
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   606
        if (this.addrs.length != that.addrs.length) {
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   607
            return false;
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   608
        }
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   609
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   610
        InetAddress[] thatAddrs = that.addrs;
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   611
        int count = thatAddrs.length;
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   612
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   613
        for (int i=0; i<count; i++) {
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   614
            boolean found = false;
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   615
            for (int j=0; j<count; j++) {
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   616
                if (addrs[i].equals(thatAddrs[j])) {
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   617
                    found = true;
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   618
                    break;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
            }
7986
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   621
            if (!found) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
    public int hashCode() {
7986
350f0f3c453b 7003398: NetworkInterface equals() and hashCode() behaviors depend on permissions granted
michaelm
parents: 7668
diff changeset
   629
        return name == null? 0: name.hashCode();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
        String result = "name:";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
        result += name == null? "null": name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
        if (displayName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
            result += " (" + displayName + ")";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
    }
9828
9c9dd9a1b11b 7013969: NetworkInterface.toString can reveal bindings
chegar
parents: 7986
diff changeset
   640
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
    private static native void init();
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9842
diff changeset
   642
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9842
diff changeset
   643
    /**
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9842
diff changeset
   644
     * Returns the default network interface of this system
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9842
diff changeset
   645
     *
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9842
diff changeset
   646
     * @return the default interface
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9842
diff changeset
   647
     */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9842
diff changeset
   648
    static NetworkInterface getDefault() {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9842
diff changeset
   649
        return defaultInterface;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9842
diff changeset
   650
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
}