Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,13 @@ public class AgentProperties{
*/
public static final Property<String> PRIVATE_NETWORK_DEVICE = new Property<>("private.network.device", "cloudbr1");

/**
* Private NIC device address. If this property is commented, it will be autodetected on service startup.<br>
* Data type: String.<br>
* Default value: <code>cloudbr1</code>
Comment on lines +112 to +114
*/
public static final Property<String> PRIVATE_NETWORK_DEVICE_ADDRESS = new Property<>("private.network.address", null, String.class);

/**
* Guest NIC device. If this property is commented, the value of the private NIC device will be used.<br>
* Data type: String.<br>
Expand Down
79 changes: 78 additions & 1 deletion core/src/main/java/com/cloud/resource/ServerResourceBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,20 @@
import java.io.File;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.net.DatagramSocket;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Date;
import java.util.LinkedList;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;

import javax.naming.ConfigurationException;

Expand Down Expand Up @@ -75,6 +80,12 @@ public boolean configure(final String name, Map<String, Object> params) throws C

defineResourceNetworkInterfaces(params);

if (privateNic == null) {
checkForPrivateInterfaceDefinedByIp(params);
}
if (privateNic == null) {
tryToAutoDiscoverResourcePrivateNetworkInterfaceByRouteLookup(params);
}
if (privateNic == null) {
tryToAutoDiscoverResourcePrivateNetworkInterface();
}
Comment on lines 81 to 91
Expand Down Expand Up @@ -106,8 +117,74 @@ protected void defineResourceNetworkInterfaces(Map<String, Object> params) {
this.storageNic2 = NetUtils.getNetworkInterface(storageNic2);
}

private void checkForPrivateInterfaceDefinedByIp(Map<String, Object> params) {
final String ifAddr = (String) params.get("private.network.address");
if (ifAddr != null) {
logger.debug(String.format("Trying to use private address to resolve interface: [%s]", ifAddr));
Comment on lines +121 to +123
try {
InetAddress rawAddr = InetAddress.getByAddress(InetAddress.getByName(ifAddr).getAddress());
final NetworkInterface nic = NetworkInterface.getByInetAddress(rawAddr);
if (nic != null) {
logger.info(String.format("Using NIC [%s] as private NIC. Source: InterfaceAddress [%s]", nic, ifAddr));
privateNic = nic;
} else {
logger.info(String.format("Unable to found private NIC with defined ip [%s]", ifAddr));
}
} catch (Throwable e) {
// Logging only, if this method was unable to find a valid interface, iteration will be tested
logger.info(String.format("Unable to use private address to get the management interface: [%s]", e.getMessage()));
}
Comment on lines +130 to +136
}
}

private String[] collectMgmtHostIp(Map<String, Object> params) {
final String hosts = (String) params.get("host");
if (hosts != null && hosts.trim().length() > 0) {
logger.info(String.format("Parsing host setting: [%s]", hosts));
final Set<String> hostCollection = new LinkedHashSet<String>();
if (hosts.contains(",")) {
for(final String ip : hosts.split(",")) {
final String h = ip.contains("@") ? ip.split("@")[0] : ip;
hostCollection.add(h.trim());
}
} else {
hostCollection.add(hosts.trim());
}
return hostCollection.isEmpty() ? null : hostCollection.toArray(new String[0]);
}
return null;
}

private void tryToAutoDiscoverResourcePrivateNetworkInterfaceByRouteLookup(Map<String, Object> params) throws ConfigurationException {
logger.info("Trying to autodiscover this resource's private network interface by route lookup");
final String[] mgmtIps = collectMgmtHostIp(params);
if (mgmtIps == null) {
logger.info("Unable to resolve any management server ip address. Aborting private network search by route lookup.");
return;
}
for (String mgmtIp : mgmtIps) {
logger.info(String.format("Using management server IP [%s] to lookup", mgmtIp));
try {
try (DatagramSocket socket = new DatagramSocket()) {
socket.connect(new InetSocketAddress(mgmtIp, 8250));
// Asking for source address to mgmgt destination to O.S routing tables.
InetAddress localAddress = socket.getLocalAddress();
NetworkInterface nic = NetworkInterface.getByInetAddress(localAddress);
if (nic != null) {
logger.info(String.format("Using NIC [%s] as private NIC.", nic));
privateNic = nic;
break;
}
}
} catch (Throwable e) {
// Logging only, if this method was unable to find a valid interface, iteration will be tested
logger.debug(String.format("Unable to use routing table to determine private management interface: [%s]", e.getMessage()));
}
}
}

protected void tryToAutoDiscoverResourcePrivateNetworkInterface() throws ConfigurationException {
logger.info("Trying to autodiscover this resource's private network interface.");
logger.info("Trying to autodiscover this resource's private network interface by simple iteration.");

List<NetworkInterface> nics;
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1007,6 +1007,8 @@ protected String getDefaultTungstenScriptsDir() {

@Override
public boolean configure(final String name, final Map<String, Object> params) throws ConfigurationException {
params.put(AgentProperties.HOST.getName(), AgentPropertiesFileHandler.getPropertyValue(AgentProperties.HOST));
params.put(AgentProperties.PRIVATE_NETWORK_DEVICE_ADDRESS.getName(), AgentPropertiesFileHandler.getPropertyValue(AgentProperties.PRIVATE_NETWORK_DEVICE_ADDRESS));
Comment on lines +1010 to +1011
boolean success = super.configure(name, params);
if (!success) {
return false;
Expand Down
Loading