mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-12-22 16:36:03 +01:00
a6d1ad9bfa
Signed-off-by: Aaron Robson <aaron.robson@citrix.com>
183 lines
6.7 KiB
C#
183 lines
6.7 KiB
C#
/* Copyright (c) Citrix Systems, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms,
|
|
* with or without modification, are permitted provided
|
|
* that the following conditions are met:
|
|
*
|
|
* * Redistributions of source code must retain the above
|
|
* copyright notice, this list of conditions and the
|
|
* following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above
|
|
* copyright notice, this list of conditions and the
|
|
* following disclaimer in the documentation and/or other
|
|
* materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using XenAdmin.Core;
|
|
using XenAPI;
|
|
|
|
namespace XenAdmin.Wizards.PatchingWizard.PlanActions
|
|
{
|
|
public abstract class HostPlanAction : PlanActionWithSession
|
|
{
|
|
private readonly Host _currentHost;
|
|
protected readonly XenRef<Host> HostXenRef;
|
|
|
|
protected HostPlanAction(Host host)
|
|
: base(host.Connection)
|
|
{
|
|
_currentHost = host;
|
|
HostXenRef = new XenRef<Host>(host);
|
|
}
|
|
|
|
protected internal Host CurrentHost
|
|
{
|
|
get { return _currentHost; }
|
|
}
|
|
|
|
public Host GetResolvedHost()
|
|
{
|
|
return Connection.TryResolveWithTimeout(HostXenRef);
|
|
}
|
|
|
|
protected void EvacuateHost(ref Session session)
|
|
{
|
|
var hostObj = GetResolvedHost();
|
|
|
|
var vms = hostObj.GetRunningVMs();
|
|
AddProgressStep(string.Format(Messages.UPDATES_WIZARD_ENTERING_MAINTENANCE_MODE, hostObj.Name()));
|
|
log.DebugFormat("Disabling host {0}", hostObj.Name());
|
|
Host.disable(session, HostXenRef.opaque_ref);
|
|
|
|
if (vms.Count > 0)
|
|
{
|
|
PBD.CheckPlugPBDsForVMs(Connection, vms);
|
|
AddProgressStep(string.Format(Messages.PLANACTION_VMS_MIGRATING, hostObj.Name()));
|
|
log.DebugFormat("Migrating VMs from host {0}", hostObj.Name());
|
|
XenRef<Task> task = Host.async_evacuate(session, HostXenRef.opaque_ref);
|
|
PollTaskForResultAndDestroy(Connection, ref session, task);
|
|
}
|
|
}
|
|
|
|
protected void BringBabiesBack(ref Session session, List<XenRef<VM>> vmrefs, bool enableOnly)
|
|
{
|
|
// CA-17428: Apply hotfixes to a pool of hosts through XenCenter fails.
|
|
// Hosts do reenable themselves anyway, so just wait 1 min for that,
|
|
// occasionally poking it.
|
|
var hostObj = GetResolvedHost();
|
|
AddProgressStep(string.Format(Messages.UPDATES_WIZARD_EXITING_MAINTENANCE_MODE, hostObj.Name()));
|
|
|
|
WaitForHostToBecomeEnabled(session, true);
|
|
|
|
if (enableOnly || vmrefs.Count == 0)
|
|
return;
|
|
|
|
int vmCount = vmrefs.Count;
|
|
int vmNumber = 0;
|
|
|
|
hostObj = GetResolvedHost();
|
|
AddProgressStep(string.Format(Messages.PLAN_ACTION_STATUS_REPATRIATING_VMS, hostObj.Name()));
|
|
PBD.CheckPlugPBDsForVMs(Connection, vmrefs, true);
|
|
|
|
foreach (var vmRef in vmrefs)
|
|
{
|
|
var vm = Connection.Resolve(vmRef);
|
|
if (vm == null)
|
|
continue;
|
|
|
|
int tries = 0;
|
|
|
|
if (vm.power_state != vm_power_state.Running)
|
|
continue; // vm may have been shutdown or suspended.
|
|
|
|
do
|
|
{
|
|
tries++;
|
|
|
|
try
|
|
{
|
|
log.DebugFormat("Migrating VM '{0}' back to Host '{1}'", vm.Name(), hostObj.Name());
|
|
|
|
PollTaskForResultAndDestroy(Connection, ref session,
|
|
VM.async_live_migrate(session, vm.opaque_ref, HostXenRef.opaque_ref),
|
|
(vmNumber * 100) / vmCount, ((vmNumber + 1) * 100) / vmCount);
|
|
|
|
vmNumber++;
|
|
}
|
|
catch (Failure e)
|
|
{
|
|
// When trying to put the first vm back, we get all sorts
|
|
// of errors ie storage not plugged yet etc. Just ignore them for now
|
|
|
|
if (vmNumber > 0 || tries > 24)
|
|
throw;
|
|
|
|
log.Debug(string.Format("Error migrating VM '{0}' back to Host '{1}'", vm.Name(), hostObj.Name()), e);
|
|
|
|
Thread.Sleep(5000);
|
|
}
|
|
} while (vmNumber == 0);
|
|
}
|
|
|
|
log.DebugFormat("Cleaning up evacuated VMs from Host '{0}'", hostObj.Name());
|
|
Host.ClearEvacuatedVMs(session, HostXenRef);
|
|
}
|
|
|
|
protected void WaitForHostToBecomeEnabled(Session session, bool attemptEnable)
|
|
{
|
|
int retries = 0;
|
|
while (!Host.get_enabled(session, HostXenRef.opaque_ref))
|
|
{
|
|
retries++;
|
|
var isLastTry = retries > 60;
|
|
|
|
Thread.Sleep(5000);
|
|
|
|
if (!attemptEnable)
|
|
{
|
|
if (isLastTry)
|
|
{
|
|
log.Debug(string.Format("Timed out waiting for host {0} to become enabled.", HostXenRef.opaque_ref));
|
|
break;
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
try
|
|
{
|
|
Host.enable(session, HostXenRef.opaque_ref);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
if (isLastTry)
|
|
throw;
|
|
|
|
log.Debug(string.Format("Cannot enable host {0}. Retrying in 5 sec.", HostXenRef.opaque_ref), e);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|