mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 23:10:16 +01:00
edce7529f6
1. Added additional check to DownloadAndInstall method in ManageUpdatesDialog.cs: will proceed to the prechecks page in the Install Update Wizard only when there are selected servers on the previous page. 2. Modified code to allow hotfix installation when the host is in maintenance mode; however the host cannot be upgraded when in maintenance mode. 3. Modified test to reflect changes described above. Signed-off-by: Adrian Jachacy <Adrian.Jachacy@citrix.com>
245 lines
9.3 KiB
C#
245 lines
9.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.Windows.Forms;
|
|
using XenAdmin.Controls;
|
|
using XenAdmin.Core;
|
|
using XenAdmin.Diagnostics.Checks;
|
|
using XenAdmin.Diagnostics.Hotfixing;
|
|
using XenAdmin.Wizards.PatchingWizard;
|
|
using XenAPI;
|
|
using System.Linq;
|
|
|
|
namespace XenAdmin.Wizards.RollingUpgradeWizard
|
|
{
|
|
public partial class RollingUpgradeWizardPrecheckPage : PatchingWizard_PrecheckPage
|
|
{
|
|
private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
|
|
|
|
public RollingUpgradeWizardPrecheckPage()
|
|
{
|
|
InitializeComponent();
|
|
this.Dock = DockStyle.Fill;
|
|
}
|
|
|
|
|
|
private void AddEventHandlersToMasters()
|
|
{
|
|
foreach (Host master in SelectedMasters)
|
|
{
|
|
master.Connection.ConnectionStateChanged += connection_ConnectionChanged;
|
|
master.Connection.CachePopulated += connection_ConnectionChanged;
|
|
}
|
|
}
|
|
|
|
private void RemoveEventHandlersToMasters()
|
|
{
|
|
foreach (Host master in SelectedMasters)
|
|
{
|
|
master.Connection.ConnectionStateChanged -= connection_ConnectionChanged;
|
|
master.Connection.CachePopulated -= connection_ConnectionChanged;
|
|
}
|
|
}
|
|
|
|
private void connection_ConnectionChanged(object sender, EventArgs eventArgs)
|
|
{
|
|
Program.Invoke(Program.MainWindow, RefreshRechecks);
|
|
}
|
|
|
|
public override void PageLoaded(PageLoadedDirection direction)
|
|
{
|
|
if (direction == PageLoadedDirection.Back)
|
|
{
|
|
RefreshRechecks();
|
|
return;
|
|
}
|
|
var selectedMasters = new List<Host>(SelectedMasters);
|
|
ManualUpgrade = ManualModeSelected;
|
|
RemoveEventHandlersToMasters();
|
|
SelectedServers.Clear();
|
|
foreach (Host selectedMaster in selectedMasters)
|
|
{
|
|
Host master = selectedMaster;
|
|
if (master != null)
|
|
{
|
|
Pool pool = Helpers.GetPoolOfOne(master.Connection);
|
|
if (pool != null)
|
|
SelectedServers.AddRange(pool.HostsToUpgrade);
|
|
else
|
|
SelectedServers.Add(master);
|
|
}
|
|
}
|
|
AddEventHandlersToMasters();
|
|
labelPrechecksFirstLine.Text = Messages.ROLLINGUPGRADE_PRECHECKS;
|
|
RefreshRechecks();
|
|
return;
|
|
}
|
|
|
|
public override void PageLeave(PageLoadedDirection direction, ref bool cancel)
|
|
{
|
|
RemoveEventHandlersToMasters();
|
|
base.PageLeave(direction, ref cancel);
|
|
}
|
|
|
|
public override void PageCancelled()
|
|
{
|
|
RemoveEventHandlersToMasters();
|
|
base.PageCancelled();
|
|
}
|
|
|
|
public override string PageTitle
|
|
{
|
|
get
|
|
{
|
|
return Messages.UPGRADE_PRECHECKS_TITLE;
|
|
}
|
|
}
|
|
|
|
public override string Text
|
|
{
|
|
get
|
|
{
|
|
return Messages.UPGRADE_PRECHECKS_TEXT;
|
|
}
|
|
}
|
|
|
|
public override string HelpID
|
|
{
|
|
get { return "Upgradeprechecks"; }
|
|
}
|
|
|
|
protected override List<KeyValuePair<string, List<Check>>> GenerateChecks(Pool_patch patch)
|
|
{
|
|
List<KeyValuePair<string, List<Check>>> checks = new List<KeyValuePair<string, List<Check>>>();
|
|
|
|
//HostMaintenanceModeCheck checks
|
|
checks.Add(new KeyValuePair<string, List<Check>>(Messages.CHECKING_HOST_LIVENESS_STATUS, new List<Check>()));
|
|
List<Check> checkGroup = checks[checks.Count - 1].Value;
|
|
foreach (Host host in SelectedServers)
|
|
{
|
|
checkGroup.Add(new HostMaintenanceModeCheck(host));
|
|
}
|
|
|
|
//HA checks
|
|
checks.Add(new KeyValuePair<string, List<Check>>(Messages.CHECKING_HA_STATUS, new List<Check>()));
|
|
checkGroup = checks[checks.Count - 1].Value;
|
|
foreach (Pool pool in SelectedPools)
|
|
{
|
|
Host host = pool.Connection.Resolve(pool.master);
|
|
|
|
if(host == null)
|
|
continue;
|
|
|
|
//WLB warning
|
|
if (!Helpers.ClearwaterOrGreater(host.Connection))
|
|
checkGroup.Add(new HostHasWlbCheck(host));
|
|
|
|
checkGroup.Add(new HAOffCheck(host));
|
|
}
|
|
|
|
//Checking can evacuate host
|
|
checks.Add(new KeyValuePair<string, List<Check>>(Messages.CHECKING_CANEVACUATE_STATUS, new List<Check>()));
|
|
checkGroup = checks[checks.Count - 1].Value;
|
|
foreach (Host host in SelectedServers)
|
|
{
|
|
checkGroup.Add(new AssertCanEvacuateUpgradeCheck(host));
|
|
}
|
|
|
|
//PBDsPluggedCheck
|
|
checks.Add(new KeyValuePair<string, List<Check>>(Messages.CHECKING_STORAGE_CONNECTIONS_STATUS, new List<Check>()));
|
|
checkGroup = checks[checks.Count - 1].Value;
|
|
foreach (Host host in SelectedServers)
|
|
{
|
|
checkGroup.Add(new PBDsPluggedCheck(host));
|
|
}
|
|
|
|
|
|
//HotfixesCheck required for MNR, Cowley, Boston and Sanibel
|
|
bool titleAdded = false;
|
|
foreach (var host in SelectedServers)
|
|
{
|
|
if (new HotfixFactory().IsHotfixRequired(host) && !ManualUpgrade)
|
|
{
|
|
if (!titleAdded)
|
|
{
|
|
checks.Add(new KeyValuePair<string, List<Check>>(Messages.CHECKING_UPGRADE_HOTFIX_STATUS,
|
|
new List<Check>()));
|
|
checkGroup = checks[checks.Count - 1].Value;
|
|
titleAdded = true;
|
|
}
|
|
checkGroup.Add(new HostHasHotfixCheck(host));
|
|
}
|
|
}
|
|
|
|
//Upgrading to Clearwater and above - license changes warning and deprecations
|
|
if(SelectedServers.Any(h=> !Helpers.ClearwaterOrGreater(h)))
|
|
{
|
|
//License changes
|
|
if (SelectedServers.Any(h => Host.GetEdition(h.edition) != Host.Edition.EnterpriseXD &&
|
|
Host.GetEdition(h.edition) != Host.Edition.XenDesktop))
|
|
{
|
|
checks.Add(new KeyValuePair<string, List<Check>>(Messages.CHECKING_LICENSING_STATUS, new List<Check>()));
|
|
checkGroup = checks[checks.Count - 1].Value;
|
|
foreach (Host host in SelectedServers)
|
|
{
|
|
checkGroup.Add(new UpgradingFromTampaAndOlderCheck(host));
|
|
}
|
|
}
|
|
|
|
//WSS removal
|
|
checks.Add(new KeyValuePair<string, List<Check>>(Messages.CHECKING_WSS_STATUS, new List<Check>()));
|
|
checkGroup = checks[checks.Count - 1].Value;
|
|
foreach (Host host in SelectedServers)
|
|
{
|
|
checkGroup.Add(new HostHasWssCheck(host));
|
|
}
|
|
|
|
//VMP[RP]removal
|
|
checks.Add(new KeyValuePair<string, List<Check>>(Messages.CHECKING_VMPR_STATUS, new List<Check>()));
|
|
checkGroup = checks[checks.Count - 1].Value;
|
|
foreach (Host host in SelectedServers)
|
|
{
|
|
checkGroup.Add(new VmprActivatedCheck(host));
|
|
}
|
|
|
|
}
|
|
|
|
return checks;
|
|
|
|
}
|
|
|
|
public IEnumerable<Host> SelectedMasters { private get; set; }
|
|
public bool ManualModeSelected { private get; set; }
|
|
}
|
|
}
|