/
wstartsev
/
jdk
Обзор
Документация
Войти
/
wstartsev
/
jdk
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/java.base/macosx/classes/java/net/DefaultInterface.java
155 строк
6 KB
Daniel Fuchs
8345223: Remove stray doPrivileged in java.base java.net and sun.net classes after JEP 486 integration
29 ноя 2024, 18:58
29 ноя 2024, 18:58
e9136b5
Код
Авторство
О чём код?
/* * Copyright (c) 2011, 2024, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package java.net; import java.util.Enumeration; import java.io.IOException; /** * Choose a network interface to be the default for * outgoing IPv6 traffic that does not specify a scope_id (and which needs one). * We choose the first interface that is up and is (in order of preference): * 1. neither loopback nor point to point * 2. point to point * 3. loopback * 4. none. * Platforms that do not require a default interface implement a dummy * that returns null. */ class DefaultInterface { private static final NetworkInterface defaultInterface = chooseDefaultInterface(); static NetworkInterface getDefault() { return defaultInterface; } /** * Choose a default interface. This method returns the first interface that * is both "up" and supports multicast. This method chooses an interface in * order of preference, using the following algorithm: * * <pre> * Interfaces that are down, or don't support multicasting, are skipped. * In steps 1-4 below, PPP and loopback interfaces are skipped. * * 1. The first interface that has at least an IPv4 address, and an IPv6 address, * and a non link-local IP address, is picked. * * 2. If none is found, then the first interface that has at least an * IPv4 address, and an IPv6 address is picked. * * 3. If none is found, then the first interface that has at least a * non link local IP address is picked. * * 4. If none is found, then the first non loopback and non PPP interface * is picked. * * 5. If none is found then first PPP interface is picked. * * 6. If none is found, then the first loopback interface is picked. * * 7. If none is found, then null is returned. * </pre> * * @return the chosen interface or {@code null} if there isn't a suitable * default */ private static NetworkInterface chooseDefaultInterface() { Enumeration<NetworkInterface> nifs; try { nifs = NetworkInterface.getNetworkInterfaces(); } catch (IOException ignore) { // unable to enumerate network interfaces return null; } NetworkInterface preferred = null; NetworkInterface dual = null; NetworkInterface nonLinkLocal = null; NetworkInterface ppp = null; NetworkInterface loopback = null; while (nifs.hasMoreElements()) { NetworkInterface ni = nifs.nextElement(); try { if (!ni.isUp() || !ni.supportsMulticast()) continue; boolean ip4 = false, ip6 = false, isNonLinkLocal = false; Enumeration<InetAddress> addrs = ni.getInetAddresses(); while (addrs.hasMoreElements()) { InetAddress addr = addrs.nextElement(); if (!addr.isAnyLocalAddress()) { if (addr instanceof Inet4Address) { ip4 = true; } else if (addr instanceof Inet6Address) { ip6 = true; } if (!addr.isLinkLocalAddress()) { isNonLinkLocal = true; } } } boolean isLoopback = ni.isLoopback(); boolean isPPP = ni.isPointToPoint(); if (!isLoopback && !isPPP) { // found an interface that is not the loopback or a // point-to-point interface if (preferred == null) { preferred = ni; } if (ip4 && ip6) { if (isNonLinkLocal) return ni; if (dual == null) dual = ni; } if (nonLinkLocal == null) { if (isNonLinkLocal) nonLinkLocal = ni; } } if (ppp == null && isPPP) ppp = ni; if (loopback == null && isLoopback) loopback = ni; } catch (IOException skip) { } } if (dual != null) { return dual; } else if (nonLinkLocal != null) { return nonLinkLocal; } else if (preferred != null) { return preferred; } else { return (ppp != null) ? ppp : loopback; } } }