9c6365ee95
Motivation: We should only try to use reflection to access default nameservers when using Java8 and lower as otherwise we will produce an Illegal reflective access warning like: WARNING: Illegal reflective access by io.netty.resolver.dns.DefaultDnsServerAddressStreamProvider Modifications: Add Java version check before try to use reflective access. Result: No more warning when Java9+ is used.
144 lines
6.2 KiB
Java
144 lines
6.2 KiB
Java
/*
|
|
* Copyright 2017 The Netty Project
|
|
*
|
|
* The Netty Project licenses this file to you under the Apache License,
|
|
* version 2.0 (the "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at:
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
package io.netty.resolver.dns;
|
|
|
|
import io.netty.util.NetUtil;
|
|
import io.netty.util.internal.PlatformDependent;
|
|
import io.netty.util.internal.SocketUtils;
|
|
import io.netty.util.internal.UnstableApi;
|
|
import io.netty.util.internal.logging.InternalLogger;
|
|
import io.netty.util.internal.logging.InternalLoggerFactory;
|
|
|
|
import java.lang.reflect.Method;
|
|
import java.net.Inet6Address;
|
|
import java.net.InetSocketAddress;
|
|
import java.util.ArrayList;
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
|
|
import static io.netty.resolver.dns.DnsServerAddresses.sequential;
|
|
|
|
/**
|
|
* A {@link DnsServerAddressStreamProvider} which will use predefined default DNS servers to use for DNS resolution.
|
|
* These defaults do not respect your host's machines defaults.
|
|
* <p>
|
|
* This may use the JDK's blocking DNS resolution to bootstrap the default DNS server addresses.
|
|
*/
|
|
@UnstableApi
|
|
public final class DefaultDnsServerAddressStreamProvider implements DnsServerAddressStreamProvider {
|
|
private static final InternalLogger logger =
|
|
InternalLoggerFactory.getInstance(DefaultDnsServerAddressStreamProvider.class);
|
|
public static final DefaultDnsServerAddressStreamProvider INSTANCE = new DefaultDnsServerAddressStreamProvider();
|
|
|
|
private static final List<InetSocketAddress> DEFAULT_NAME_SERVER_LIST;
|
|
private static final DnsServerAddresses DEFAULT_NAME_SERVERS;
|
|
static final int DNS_PORT = 53;
|
|
|
|
static {
|
|
final List<InetSocketAddress> defaultNameServers = new ArrayList<InetSocketAddress>(2);
|
|
if (!PlatformDependent.isAndroid()) {
|
|
// Only try to use when not on Android as the classes not exists there:
|
|
// See https://github.com/netty/netty/issues/8654
|
|
DirContextUtils.addNameServers(defaultNameServers, DNS_PORT);
|
|
}
|
|
|
|
// Only try when using Java8 and lower as otherwise it will produce:
|
|
// WARNING: Illegal reflective access by io.netty.resolver.dns.DefaultDnsServerAddressStreamProvider
|
|
if (PlatformDependent.javaVersion() < 9 && defaultNameServers.isEmpty()) {
|
|
try {
|
|
Class<?> configClass = Class.forName("sun.net.dns.ResolverConfiguration");
|
|
Method open = configClass.getMethod("open");
|
|
Method nameservers = configClass.getMethod("nameservers");
|
|
Object instance = open.invoke(null);
|
|
|
|
@SuppressWarnings("unchecked")
|
|
final List<String> list = (List<String>) nameservers.invoke(instance);
|
|
for (String a: list) {
|
|
if (a != null) {
|
|
defaultNameServers.add(new InetSocketAddress(SocketUtils.addressByName(a), DNS_PORT));
|
|
}
|
|
}
|
|
} catch (Exception ignore) {
|
|
// Failed to get the system name server list via reflection.
|
|
// Will add the default name servers afterwards.
|
|
}
|
|
}
|
|
|
|
if (!defaultNameServers.isEmpty()) {
|
|
if (logger.isDebugEnabled()) {
|
|
logger.debug(
|
|
"Default DNS servers: {} (sun.net.dns.ResolverConfiguration)", defaultNameServers);
|
|
}
|
|
} else {
|
|
// Depending if IPv6 or IPv4 is used choose the correct DNS servers provided by google:
|
|
// https://developers.google.com/speed/public-dns/docs/using
|
|
// https://docs.oracle.com/javase/7/docs/api/java/net/doc-files/net-properties.html
|
|
if (NetUtil.isIpV6AddressesPreferred() ||
|
|
(NetUtil.LOCALHOST instanceof Inet6Address && !NetUtil.isIpV4StackPreferred())) {
|
|
Collections.addAll(
|
|
defaultNameServers,
|
|
SocketUtils.socketAddress("2001:4860:4860::8888", DNS_PORT),
|
|
SocketUtils.socketAddress("2001:4860:4860::8844", DNS_PORT));
|
|
} else {
|
|
Collections.addAll(
|
|
defaultNameServers,
|
|
SocketUtils.socketAddress("8.8.8.8", DNS_PORT),
|
|
SocketUtils.socketAddress("8.8.4.4", DNS_PORT));
|
|
}
|
|
|
|
if (logger.isWarnEnabled()) {
|
|
logger.warn(
|
|
"Default DNS servers: {} (Google Public DNS as a fallback)", defaultNameServers);
|
|
}
|
|
}
|
|
|
|
DEFAULT_NAME_SERVER_LIST = Collections.unmodifiableList(defaultNameServers);
|
|
DEFAULT_NAME_SERVERS = sequential(DEFAULT_NAME_SERVER_LIST);
|
|
}
|
|
|
|
private DefaultDnsServerAddressStreamProvider() {
|
|
}
|
|
|
|
@Override
|
|
public DnsServerAddressStream nameServerAddressStream(String hostname) {
|
|
return DEFAULT_NAME_SERVERS.stream();
|
|
}
|
|
|
|
/**
|
|
* Returns the list of the system DNS server addresses. If it failed to retrieve the list of the system DNS server
|
|
* addresses from the environment, it will return {@code "8.8.8.8"} and {@code "8.8.4.4"}, the addresses of the
|
|
* Google public DNS servers.
|
|
*/
|
|
public static List<InetSocketAddress> defaultAddressList() {
|
|
return DEFAULT_NAME_SERVER_LIST;
|
|
}
|
|
|
|
/**
|
|
* Returns the {@link DnsServerAddresses} that yields the system DNS server addresses sequentially. If it failed to
|
|
* retrieve the list of the system DNS server addresses from the environment, it will use {@code "8.8.8.8"} and
|
|
* {@code "8.8.4.4"}, the addresses of the Google public DNS servers.
|
|
* <p>
|
|
* This method has the same effect with the following code:
|
|
* <pre>
|
|
* DnsServerAddresses.sequential(DnsServerAddresses.defaultAddressList());
|
|
* </pre>
|
|
* </p>
|
|
*/
|
|
public static DnsServerAddresses defaultAddresses() {
|
|
return DEFAULT_NAME_SERVERS;
|
|
}
|
|
}
|