oshi.software.os.mac.MacNetworkParams Maven / Gradle / Ivy
/**
* MIT License
*
* Copyright (c) 2010 - 2020 The OSHI Project Contributors: https://github.com/oshi/oshi/graphs/contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package oshi.software.os.mac;
import static com.sun.jna.platform.unix.LibCAPI.HOST_NAME_MAX; // NOSONAR squid:S1191
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.sun.jna.Native;
import com.sun.jna.ptr.PointerByReference;
import oshi.annotation.concurrent.ThreadSafe;
import oshi.jna.platform.mac.SystemB;
import oshi.jna.platform.unix.CLibrary;
import oshi.jna.platform.unix.CLibrary.Addrinfo;
import oshi.software.common.AbstractNetworkParams;
import oshi.util.ExecutingCommand;
import oshi.util.ParseUtil;
/**
* MacNetworkParams class.
*/
@ThreadSafe
final class MacNetworkParams extends AbstractNetworkParams {
private static final Logger LOG = LoggerFactory.getLogger(MacNetworkParams.class);
private static final SystemB SYS = SystemB.INSTANCE;
private static final String IPV6_ROUTE_HEADER = "Internet6:";
private static final String DEFAULT_GATEWAY = "default";
@Override
public String getDomainName() {
Addrinfo hint = new Addrinfo();
hint.ai_flags = CLibrary.AI_CANONNAME;
String hostname = "";
try {
hostname = InetAddress.getLocalHost().getHostName();
} catch (UnknownHostException e) {
LOG.error("Unknown host exception when getting address of local host: {}", e.getMessage());
return "";
}
PointerByReference ptr = new PointerByReference();
int res = SYS.getaddrinfo(hostname, null, hint, ptr);
if (res > 0) {
if (LOG.isErrorEnabled()) {
LOG.error("Failed getaddrinfo(): {}", SYS.gai_strerror(res));
}
return "";
}
Addrinfo info = new Addrinfo(ptr.getValue());
String canonname = info.ai_canonname.trim();
SYS.freeaddrinfo(ptr.getValue());
return canonname;
}
@Override
public String getHostName() {
byte[] hostnameBuffer = new byte[HOST_NAME_MAX + 1];
if (0 != SYS.gethostname(hostnameBuffer, hostnameBuffer.length)) {
return super.getHostName();
}
return Native.toString(hostnameBuffer);
}
@Override
public String getIpv4DefaultGateway() {
return searchGateway(ExecutingCommand.runNative("route -n get default"));
}
@Override
public String getIpv6DefaultGateway() {
List lines = ExecutingCommand.runNative("netstat -nr");
boolean v6Table = false;
for (String line : lines) {
if (v6Table && line.startsWith(DEFAULT_GATEWAY)) {
String[] fields = ParseUtil.whitespaces.split(line);
if (fields.length > 2 && fields[2].contains("G")) {
return fields[1].split("%")[0];
}
} else if (line.startsWith(IPV6_ROUTE_HEADER)) {
v6Table = true;
}
}
return "";
}
}