1 /*
2  * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * This code is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 only, as
7  * published by the Free Software Foundation.  Oracle designates this
8  * particular file as subject to the "Classpath" exception as provided
9  * by Oracle in the LICENSE file that accompanied this code.
10  *
11  * This code is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14  * version 2 for more details (a copy is included in the LICENSE file that
15  * accompanied this code).
16  *
17  * You should have received a copy of the GNU General Public License version
18  * 2 along with this work; if not, write to the Free Software Foundation,
19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20  *
21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22  * or visit www.oracle.com if you need additional information or have any
23  * questions.
24  */
25 
26 package java.net;
27 
28 import java.util.Arrays;
29 import java.util.Enumeration;
30 import java.util.NoSuchElementException;
31 import java.security.AccessController;
32 import java.util.Spliterator;
33 import java.util.Spliterators;
34 import java.util.stream.Stream;
35 import java.util.stream.StreamSupport;
36 
37 /**
38  * This class represents a Network Interface made up of a name,
39  * and a list of IP addresses assigned to this interface.
40  * It is used to identify the local interface on which a multicast group
41  * is joined.
42  *
43  * Interfaces are normally known by names such as "le0".
44  *
45  * @since 1.4
46  */
47 public final class NetworkInterface {
48     private String name;
49     private String displayName;
50     private int index;
51     private InetAddress addrs[];
52     private InterfaceAddress bindings[];
53     private NetworkInterface childs[];
54     private NetworkInterface parent = null;
55     private boolean virtual = false;
56     private static final NetworkInterface defaultInterface;
57     private static final int defaultIndex; /* index of defaultInterface */
58 
59     static {
AccessController.doPrivileged( new java.security.PrivilegedAction<>() { public Void run() { System.loadLibrary(R); return null; } })60         AccessController.doPrivileged(
61             new java.security.PrivilegedAction<>() {
62                 public Void run() {
63                     System.loadLibrary("net");
64                     return null;
65                 }
66             });
67 
init()68         init();
69         defaultInterface = DefaultInterface.getDefault();
70         if (defaultInterface != null) {
71             defaultIndex = defaultInterface.getIndex();
72         } else {
73             defaultIndex = 0;
74         }
75     }
76 
77     /**
78      * Returns an NetworkInterface object with index set to 0 and name to null.
79      * Setting such an interface on a MulticastSocket will cause the
80      * kernel to choose one interface for sending multicast packets.
81      *
82      */
NetworkInterface()83     NetworkInterface() {
84     }
85 
NetworkInterface(String name, int index, InetAddress[] addrs)86     NetworkInterface(String name, int index, InetAddress[] addrs) {
87         this.name = name;
88         this.index = index;
89         this.addrs = addrs;
90     }
91 
92     /**
93      * Get the name of this network interface.
94      *
95      * @return the name of this network interface
96      */
getName()97     public String getName() {
98             return name;
99     }
100 
101     /**
102      * Get an Enumeration with all or a subset of the InetAddresses bound to
103      * this network interface.
104      * <p>
105      * If there is a security manager, its {@code checkConnect}
106      * method is called for each InetAddress. Only InetAddresses where
107      * the {@code checkConnect} doesn't throw a SecurityException
108      * will be returned in the Enumeration. However, if the caller has the
109      * {@link NetPermission}("getNetworkInformation") permission, then all
110      * InetAddresses are returned.
111      *
112      * @return an Enumeration object with all or a subset of the InetAddresses
113      * bound to this network interface
114      * @see #inetAddresses()
115      */
getInetAddresses()116     public Enumeration<InetAddress> getInetAddresses() {
117         return enumerationFromArray(getCheckedInetAddresses());
118     }
119 
120     /**
121      * Get a Stream of all or a subset of the InetAddresses bound to this
122      * network interface.
123      * <p>
124      * If there is a security manager, its {@code checkConnect}
125      * method is called for each InetAddress. Only InetAddresses where
126      * the {@code checkConnect} doesn't throw a SecurityException will be
127      * returned in the Stream. However, if the caller has the
128      * {@link NetPermission}("getNetworkInformation") permission, then all
129      * InetAddresses are returned.
130      *
131      * @return a Stream object with all or a subset of the InetAddresses
132      * bound to this network interface
133      * @since 9
134      */
inetAddresses()135     public Stream<InetAddress> inetAddresses() {
136         return streamFromArray(getCheckedInetAddresses());
137     }
138 
getCheckedInetAddresses()139     private InetAddress[] getCheckedInetAddresses() {
140         InetAddress[] local_addrs = new InetAddress[addrs.length];
141         boolean trusted = true;
142 
143         SecurityManager sec = System.getSecurityManager();
144         if (sec != null) {
145             try {
146                 sec.checkPermission(new NetPermission("getNetworkInformation"));
147             } catch (SecurityException e) {
148                 trusted = false;
149             }
150         }
151         int i = 0;
152         for (int j = 0; j < addrs.length; j++) {
153             try {
154                 if (!trusted) {
155                     sec.checkConnect(addrs[j].getHostAddress(), -1);
156                 }
157                 local_addrs[i++] = addrs[j];
158             } catch (SecurityException e) { }
159         }
160         return Arrays.copyOf(local_addrs, i);
161     }
162 
163     /**
164      * Get a List of all or a subset of the {@code InterfaceAddresses}
165      * of this network interface.
166      * <p>
167      * If there is a security manager, its {@code checkConnect}
168      * method is called with the InetAddress for each InterfaceAddress.
169      * Only InterfaceAddresses where the {@code checkConnect} doesn't throw
170      * a SecurityException will be returned in the List.
171      *
172      * @return a {@code List} object with all or a subset of the
173      *         InterfaceAddresss of this network interface
174      * @since 1.6
175      */
getInterfaceAddresses()176     public java.util.List<InterfaceAddress> getInterfaceAddresses() {
177         java.util.List<InterfaceAddress> lst = new java.util.ArrayList<>(1);
178         if (bindings != null) {
179             SecurityManager sec = System.getSecurityManager();
180             for (int j=0; j<bindings.length; j++) {
181                 try {
182                     if (sec != null) {
183                         sec.checkConnect(bindings[j].getAddress().getHostAddress(), -1);
184                     }
185                     lst.add(bindings[j]);
186                 } catch (SecurityException e) { }
187             }
188         }
189         return lst;
190     }
191 
192     /**
193      * Get an Enumeration with all the subinterfaces (also known as virtual
194      * interfaces) attached to this network interface.
195      * <p>
196      * For instance eth0:1 will be a subinterface to eth0.
197      *
198      * @return an Enumeration object with all of the subinterfaces
199      * of this network interface
200      * @see #subInterfaces()
201      * @since 1.6
202      */
getSubInterfaces()203     public Enumeration<NetworkInterface> getSubInterfaces() {
204         return enumerationFromArray(childs);
205     }
206 
207     /**
208      * Get a Stream of all subinterfaces (also known as virtual
209      * interfaces) attached to this network interface.
210      *
211      * @return a Stream object with all of the subinterfaces
212      * of this network interface
213      * @since 9
214      */
subInterfaces()215     public Stream<NetworkInterface> subInterfaces() {
216         return streamFromArray(childs);
217     }
218 
219     /**
220      * Returns the parent NetworkInterface of this interface if this is
221      * a subinterface, or {@code null} if it is a physical
222      * (non virtual) interface or has no parent.
223      *
224      * @return The {@code NetworkInterface} this interface is attached to.
225      * @since 1.6
226      */
getParent()227     public NetworkInterface getParent() {
228         return parent;
229     }
230 
231     /**
232      * Returns the index of this network interface. The index is an integer greater
233      * or equal to zero, or {@code -1} for unknown. This is a system specific value
234      * and interfaces with the same name can have different indexes on different
235      * machines.
236      *
237      * @return the index of this network interface or {@code -1} if the index is
238      *         unknown
239      * @see #getByIndex(int)
240      * @since 1.7
241      */
getIndex()242     public int getIndex() {
243         return index;
244     }
245 
246     /**
247      * Get the display name of this network interface.
248      * A display name is a human readable String describing the network
249      * device.
250      *
251      * @return a non-empty string representing the display name of this network
252      *         interface, or null if no display name is available.
253      */
getDisplayName()254     public String getDisplayName() {
255         /* strict TCK conformance */
256         return "".equals(displayName) ? null : displayName;
257     }
258 
259     /**
260      * Searches for the network interface with the specified name.
261      *
262      * @param   name
263      *          The name of the network interface.
264      *
265      * @return  A {@code NetworkInterface} with the specified name,
266      *          or {@code null} if there is no network interface
267      *          with the specified name.
268      *
269      * @throws  SocketException
270      *          If an I/O error occurs.
271      *
272      * @throws  NullPointerException
273      *          If the specified name is {@code null}.
274      */
getByName(String name)275     public static NetworkInterface getByName(String name) throws SocketException {
276         if (name == null)
277             throw new NullPointerException();
278         return getByName0(name);
279     }
280 
281     /**
282      * Get a network interface given its index.
283      *
284      * @param index an integer, the index of the interface
285      * @return the NetworkInterface obtained from its index, or {@code null} if
286      *         there is no interface with such an index on the system
287      * @throws  SocketException  if an I/O error occurs.
288      * @throws  IllegalArgumentException if index has a negative value
289      * @see #getIndex()
290      * @since 1.7
291      */
getByIndex(int index)292     public static NetworkInterface getByIndex(int index) throws SocketException {
293         if (index < 0)
294             throw new IllegalArgumentException("Interface index can't be negative");
295         return getByIndex0(index);
296     }
297 
298     /**
299      * Convenience method to search for a network interface that
300      * has the specified Internet Protocol (IP) address bound to
301      * it.
302      * <p>
303      * If the specified IP address is bound to multiple network
304      * interfaces it is not defined which network interface is
305      * returned.
306      *
307      * @param   addr
308      *          The {@code InetAddress} to search with.
309      *
310      * @return  A {@code NetworkInterface}
311      *          or {@code null} if there is no network interface
312      *          with the specified IP address.
313      *
314      * @throws  SocketException
315      *          If an I/O error occurs.
316      *
317      * @throws  NullPointerException
318      *          If the specified address is {@code null}.
319      */
getByInetAddress(InetAddress addr)320     public static NetworkInterface getByInetAddress(InetAddress addr) throws SocketException {
321         if (addr == null) {
322             throw new NullPointerException();
323         }
324         if (addr instanceof Inet4Address) {
325             Inet4Address inet4Address = (Inet4Address) addr;
326             if (inet4Address.holder.family != InetAddress.IPv4) {
327                 throw new IllegalArgumentException("invalid family type: "
328                         + inet4Address.holder.family);
329             }
330         } else if (addr instanceof Inet6Address) {
331             Inet6Address inet6Address = (Inet6Address) addr;
332             if (inet6Address.holder.family != InetAddress.IPv6) {
333                 throw new IllegalArgumentException("invalid family type: "
334                         + inet6Address.holder.family);
335             }
336         } else {
337             throw new IllegalArgumentException("invalid address type: " + addr);
338         }
339         return getByInetAddress0(addr);
340     }
341 
342     /**
343      * Returns an {@code Enumeration} of all the interfaces on this machine. The
344      * {@code Enumeration} contains at least one element, possibly representing
345      * a loopback interface that only supports communication between entities on
346      * this machine.
347      *
348      * @apiNote this method can be used in combination with
349      * {@link #getInetAddresses()} to obtain all IP addresses for this node
350      *
351      * @return an Enumeration of NetworkInterfaces found on this machine
352      * @exception  SocketException  if an I/O error occurs,
353      *             or if the platform does not have at least one configured
354      *             network interface.
355      * @see #networkInterfaces()
356      */
getNetworkInterfaces()357     public static Enumeration<NetworkInterface> getNetworkInterfaces()
358         throws SocketException {
359         NetworkInterface[] netifs = getAll();
360         if (netifs != null && netifs.length > 0) {
361             return enumerationFromArray(netifs);
362         } else {
363             throw new SocketException("No network interfaces configured");
364         }
365     }
366 
367     /**
368      * Returns a {@code Stream} of all the interfaces on this machine.  The
369      * {@code Stream} contains at least one interface, possibly representing a
370      * loopback interface that only supports communication between entities on
371      * this machine.
372      *
373      * @apiNote this method can be used in combination with
374      * {@link #inetAddresses()}} to obtain a stream of all IP addresses for
375      * this node, for example:
376      * <pre> {@code
377      * Stream<InetAddress> addrs = NetworkInterface.networkInterfaces()
378      *     .flatMap(NetworkInterface::inetAddresses);
379      * }</pre>
380      *
381      * @return a Stream of NetworkInterfaces found on this machine
382      * @exception  SocketException  if an I/O error occurs,
383      *             or if the platform does not have at least one configured
384      *             network interface.
385      * @since 9
386      */
networkInterfaces()387     public static Stream<NetworkInterface> networkInterfaces()
388         throws SocketException {
389         NetworkInterface[] netifs = getAll();
390         if (netifs != null && netifs.length > 0) {
391             return streamFromArray(netifs);
392         }  else {
393             throw new SocketException("No network interfaces configured");
394         }
395     }
396 
enumerationFromArray(T[] a)397     private static <T> Enumeration<T> enumerationFromArray(T[] a) {
398         return new Enumeration<>() {
399             int i = 0;
400 
401             @Override
402             public T nextElement() {
403                 if (i < a.length) {
404                     return a[i++];
405                 } else {
406                     throw new NoSuchElementException();
407                 }
408             }
409 
410             @Override
411             public boolean hasMoreElements() {
412                 return i < a.length;
413             }
414         };
415     }
416 
streamFromArray(T[] a)417     private static <T> Stream<T> streamFromArray(T[] a) {
418         return StreamSupport.stream(
419                 Spliterators.spliterator(
420                         a,
421                         Spliterator.DISTINCT | Spliterator.IMMUTABLE | Spliterator.NONNULL),
422                 false);
423     }
424 
getAll()425     private static native NetworkInterface[] getAll()
426         throws SocketException;
427 
getByName0(String name)428     private static native NetworkInterface getByName0(String name)
429         throws SocketException;
430 
getByIndex0(int index)431     private static native NetworkInterface getByIndex0(int index)
432         throws SocketException;
433 
getByInetAddress0(InetAddress addr)434     private static native NetworkInterface getByInetAddress0(InetAddress addr)
435         throws SocketException;
436 
437     /**
438      * Returns whether a network interface is up and running.
439      *
440      * @return  {@code true} if the interface is up and running.
441      * @exception       SocketException if an I/O error occurs.
442      * @since 1.6
443      */
444 
isUp()445     public boolean isUp() throws SocketException {
446         return isUp0(name, index);
447     }
448 
449     /**
450      * Returns whether a network interface is a loopback interface.
451      *
452      * @return  {@code true} if the interface is a loopback interface.
453      * @exception       SocketException if an I/O error occurs.
454      * @since 1.6
455      */
456 
isLoopback()457     public boolean isLoopback() throws SocketException {
458         return isLoopback0(name, index);
459     }
460 
461     /**
462      * Returns whether a network interface is a point to point interface.
463      * A typical point to point interface would be a PPP connection through
464      * a modem.
465      *
466      * @return  {@code true} if the interface is a point to point
467      *          interface.
468      * @exception       SocketException if an I/O error occurs.
469      * @since 1.6
470      */
471 
isPointToPoint()472     public boolean isPointToPoint() throws SocketException {
473         return isP2P0(name, index);
474     }
475 
476     /**
477      * Returns whether a network interface supports multicasting or not.
478      *
479      * @return  {@code true} if the interface supports Multicasting.
480      * @exception       SocketException if an I/O error occurs.
481      * @since 1.6
482      */
483 
supportsMulticast()484     public boolean supportsMulticast() throws SocketException {
485         return supportsMulticast0(name, index);
486     }
487 
488     /**
489      * Returns the hardware address (usually MAC) of the interface if it
490      * has one and if it can be accessed given the current privileges.
491      * If a security manager is set, then the caller must have
492      * the permission {@link NetPermission}("getNetworkInformation").
493      *
494      * @return  a byte array containing the address, or {@code null} if
495      *          the address doesn't exist, is not accessible or a security
496      *          manager is set and the caller does not have the permission
497      *          NetPermission("getNetworkInformation")
498      *
499      * @exception       SocketException if an I/O error occurs.
500      * @since 1.6
501      */
getHardwareAddress()502     public byte[] getHardwareAddress() throws SocketException {
503         SecurityManager sec = System.getSecurityManager();
504         if (sec != null) {
505             try {
506                 sec.checkPermission(new NetPermission("getNetworkInformation"));
507             } catch (SecurityException e) {
508                 if (!getInetAddresses().hasMoreElements()) {
509                     // don't have connect permission to any local address
510                     return null;
511                 }
512             }
513         }
514         for (InetAddress addr : addrs) {
515             if (addr instanceof Inet4Address) {
516                 return getMacAddr0(((Inet4Address)addr).getAddress(), name, index);
517             }
518         }
519         return getMacAddr0(null, name, index);
520     }
521 
522     /**
523      * Returns the Maximum Transmission Unit (MTU) of this interface.
524      *
525      * @return the value of the MTU for that interface.
526      * @exception       SocketException if an I/O error occurs.
527      * @since 1.6
528      */
getMTU()529     public int getMTU() throws SocketException {
530         return getMTU0(name, index);
531     }
532 
533     /**
534      * Returns whether this interface is a virtual interface (also called
535      * subinterface).
536      * Virtual interfaces are, on some systems, interfaces created as a child
537      * of a physical interface and given different settings (like address or
538      * MTU). Usually the name of the interface will the name of the parent
539      * followed by a colon (:) and a number identifying the child since there
540      * can be several virtual interfaces attached to a single physical
541      * interface.
542      *
543      * @return {@code true} if this interface is a virtual interface.
544      * @since 1.6
545      */
isVirtual()546     public boolean isVirtual() {
547         return virtual;
548     }
549 
isUp0(String name, int ind)550     private static native boolean isUp0(String name, int ind) throws SocketException;
isLoopback0(String name, int ind)551     private static native boolean isLoopback0(String name, int ind) throws SocketException;
supportsMulticast0(String name, int ind)552     private static native boolean supportsMulticast0(String name, int ind) throws SocketException;
isP2P0(String name, int ind)553     private static native boolean isP2P0(String name, int ind) throws SocketException;
getMacAddr0(byte[] inAddr, String name, int ind)554     private static native byte[] getMacAddr0(byte[] inAddr, String name, int ind) throws SocketException;
getMTU0(String name, int ind)555     private static native int getMTU0(String name, int ind) throws SocketException;
556 
557     /**
558      * Compares this object against the specified object.
559      * The result is {@code true} if and only if the argument is
560      * not {@code null} and it represents the same NetworkInterface
561      * as this object.
562      * <p>
563      * Two instances of {@code NetworkInterface} represent the same
564      * NetworkInterface if both name and addrs are the same for both.
565      *
566      * @param   obj   the object to compare against.
567      * @return  {@code true} if the objects are the same;
568      *          {@code false} otherwise.
569      * @see     java.net.InetAddress#getAddress()
570      */
equals(Object obj)571     public boolean equals(Object obj) {
572         if (!(obj instanceof NetworkInterface)) {
573             return false;
574         }
575         NetworkInterface that = (NetworkInterface)obj;
576         if (this.name != null ) {
577             if (!this.name.equals(that.name)) {
578                 return false;
579             }
580         } else {
581             if (that.name != null) {
582                 return false;
583             }
584         }
585 
586         if (this.addrs == null) {
587             return that.addrs == null;
588         } else if (that.addrs == null) {
589             return false;
590         }
591 
592         /* Both addrs not null. Compare number of addresses */
593 
594         if (this.addrs.length != that.addrs.length) {
595             return false;
596         }
597 
598         InetAddress[] thatAddrs = that.addrs;
599         int count = thatAddrs.length;
600 
601         for (int i=0; i<count; i++) {
602             boolean found = false;
603             for (int j=0; j<count; j++) {
604                 if (addrs[i].equals(thatAddrs[j])) {
605                     found = true;
606                     break;
607                 }
608             }
609             if (!found) {
610                 return false;
611             }
612         }
613         return true;
614     }
615 
hashCode()616     public int hashCode() {
617         return name == null? 0: name.hashCode();
618     }
619 
toString()620     public String toString() {
621         String result = "name:";
622         result += name == null? "null": name;
623         if (displayName != null) {
624             result += " (" + displayName + ")";
625         }
626         return result;
627     }
628 
init()629     private static native void init();
630 
631     /**
632      * Returns the default network interface of this system
633      *
634      * @return the default interface
635      */
getDefault()636     static NetworkInterface getDefault() {
637         return defaultInterface;
638     }
639 }
640