mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-12-23 17:06:14 +01:00
6d44fd0350
* CP-30335: Fix RPU wizard tests * CP-30335: Add abstract class WarningWithMoreInfo and use it for two of the existing Warnings * CP-30335: Add a new precheck which produces a warning if the Dom0 memory after the upgrade will be increased. - if the Dom0 memory after the upgrade is known, then a warning is shown if this is higher than the current memory, regardless of the version of the upgrade - if the Dom0 memory after the upgrade is not known (e.g. because the rpu plugin does not have the function that returns this), then a warning is shown if upgrading from a pre-Naples version * CP-30335: Add a more detailed error message if the host evacuation fails due to not enough memory in the RPU and Patching wizards * CP-30335: Add branding variable for version 8.0 Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
197 lines
7.3 KiB
C#
197 lines
7.3 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);
|
|
|
|
try
|
|
{
|
|
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);
|
|
}
|
|
catch (Failure f)
|
|
{
|
|
if (f.ErrorDescription.Count > 0 && f.ErrorDescription[0] == Failure.HOST_NOT_ENOUGH_FREE_MEMORY)
|
|
{
|
|
log.WarnFormat("Host {0} cannot be avacuated: {1}", hostObj.Name(), f.Message);
|
|
throw new Exception(string.Format(Messages.PLAN_ACTION_FAILURE_NOT_ENOUGH_MEMORY, hostObj.Name()), f);
|
|
}
|
|
throw;
|
|
}
|
|
}
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|