From 816eb63e972be6a1eaa20667e461d24882b3ee47 Mon Sep 17 00:00:00 2001 From: Murali Reddy Date: Mon, 28 Jul 2014 16:14:50 +0530 Subject: [PATCH] CLOUDSTACK-7191:On restartNetwork destroy the VR immediatley, instead of cleanup the rules then destroy fix adds a provision to specify if cleanup is needed on network on shutdown. VR is marked as to not to require network rules clean up on network shutdown as the VR is destroyed and recreated. ran the simulator tests that test network life cycle (cherry picked from commit 67876b215ef5217b3d306b3642a38a3708a30494) Signed-off-by: Rohit Yadav --- api/src/com/cloud/network/Network.java | 18 +++++++++++++++++- .../orchestration/NetworkOrchestrator.java | 17 ++++++++++++++--- 2 files changed, 31 insertions(+), 4 deletions(-) diff --git a/api/src/com/cloud/network/Network.java b/api/src/com/cloud/network/Network.java index b5e8173c99b..843e87424c8 100644 --- a/api/src/com/cloud/network/Network.java +++ b/api/src/com/cloud/network/Network.java @@ -114,7 +114,7 @@ public interface Network extends ControlledEntity, StateObject, I public static class Provider { private static List supportedProviders = new ArrayList(); - public static final Provider VirtualRouter = new Provider("VirtualRouter", false); + public static final Provider VirtualRouter = new Provider("VirtualRouter", false, false); public static final Provider JuniperContrailRouter = new Provider("JuniperContrailRouter", false); public static final Provider JuniperSRX = new Provider("JuniperSRX", true); public static final Provider PaloAlto = new Provider("PaloAlto", true); @@ -135,9 +135,21 @@ public interface Network extends ControlledEntity, StateObject, I private final String name; private final boolean isExternal; + // set to true, if on network shutdown resources (acquired/configured at implemented phase) needed to cleaned up. set to false + // if no clean-up is required ( for e.g appliance based providers like VirtualRouter, VM is destroyed so there is no need to cleanup). + private final boolean needCleanupOnShutdown; + public Provider(String name, boolean isExternal) { this.name = name; this.isExternal = isExternal; + needCleanupOnShutdown = true; + supportedProviders.add(this); + } + + public Provider(String name, boolean isExternal, boolean needCleanupOnShutdown) { + this.name = name; + this.isExternal = isExternal; + this.needCleanupOnShutdown = needCleanupOnShutdown; supportedProviders.add(this); } @@ -149,6 +161,10 @@ public interface Network extends ControlledEntity, StateObject, I return isExternal; } + public boolean cleanupNeededOnShutdown() { + return needCleanupOnShutdown; + } + public static Provider getProvider(String providerName) { for (Provider provider : supportedProviders) { if (provider.getName().equalsIgnoreCase(providerName)) { diff --git a/engine/orchestration/src/org/apache/cloudstack/engine/orchestration/NetworkOrchestrator.java b/engine/orchestration/src/org/apache/cloudstack/engine/orchestration/NetworkOrchestrator.java index 9e869c436c4..d3fe98a69db 100755 --- a/engine/orchestration/src/org/apache/cloudstack/engine/orchestration/NetworkOrchestrator.java +++ b/engine/orchestration/src/org/apache/cloudstack/engine/orchestration/NetworkOrchestrator.java @@ -2037,11 +2037,24 @@ public class NetworkOrchestrator extends ManagerBase implements NetworkOrchestra @Override public boolean shutdownNetworkElementsAndResources(ReservationContext context, boolean cleanupElements, Network network) { + + // get providers to shutdown + List providersToShutdown = getNetworkProviders(network.getId()); + // 1) Cleanup all the rules for the network. If it fails, just log the failure and proceed with shutting down // the elements boolean cleanupResult = true; + boolean cleanupNeeded = false; try { - cleanupResult = shutdownNetworkResources(network.getId(), context.getAccount(), context.getCaller().getId()); + for (Provider provider: providersToShutdown) { + if (provider.cleanupNeededOnShutdown()) { + cleanupNeeded = true; + break; + } + } + if (cleanupNeeded) { + cleanupResult = shutdownNetworkResources(network.getId(), context.getAccount(), context.getCaller().getId()); + } } catch (Exception ex) { s_logger.warn("shutdownNetworkRules failed during the network " + network + " shutdown due to ", ex); } finally { @@ -2052,8 +2065,6 @@ public class NetworkOrchestrator extends ManagerBase implements NetworkOrchestra } // 2) Shutdown all the network elements - // get providers to shutdown - List providersToShutdown = getNetworkProviders(network.getId()); boolean success = true; for (NetworkElement element : _networkElements) { if (providersToShutdown.contains(element.getProvider())) {