mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-12-23 00:46:03 +01:00
9751de6d5e
the Prechecks page, then back to select a single iso update, and forwards again to the Prechecks page. The cause was that the values of Patch and PoolUpdate were not always propagated from the Upload page to the following pages, hence on that occasion they were both non-null, while the logic of the following pages expects only one of the two to be non-null. Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
388 lines
19 KiB
C#
388 lines
19 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.Collections.Generic;
|
|
using System.Windows.Forms;
|
|
using XenAdmin.Actions;
|
|
using XenAdmin.Controls;
|
|
using XenAdmin.Dialogs;
|
|
using XenAPI;
|
|
using System.Linq;
|
|
using System.IO;
|
|
using XenAdmin.Alerts;
|
|
using XenAdmin.Core;
|
|
|
|
namespace XenAdmin.Wizards.PatchingWizard
|
|
{
|
|
public enum WizardMode { SingleUpdate, AutomatedUpdates, NewVersion }
|
|
|
|
/// <summary>
|
|
/// Remember that equals for patches don't work across connections because
|
|
/// we are not allow to override equals. YOU SHOULD NOT USE ANY OPERATION THAT IMPLIES CALL EQUALS OF Pool_patch or Host_patch
|
|
/// You should do it manually or use delegates.
|
|
/// </summary>
|
|
public partial class PatchingWizard : UpdateUpgradeWizard
|
|
{
|
|
private readonly PatchingWizard_PatchingPage PatchingWizard_PatchingPage;
|
|
private readonly PatchingWizard_SelectPatchPage PatchingWizard_SelectPatchPage;
|
|
private readonly PatchingWizard_ModePage PatchingWizard_ModePage;
|
|
private readonly PatchingWizard_SelectServers PatchingWizard_SelectServers;
|
|
private readonly PatchingWizard_UploadPage PatchingWizard_UploadPage;
|
|
private readonly PatchingWizard_PrecheckPage PatchingWizard_PrecheckPage;
|
|
private readonly PatchingWizard_FirstPage PatchingWizard_FirstPage;
|
|
private readonly PatchingWizard_AutomatedUpdatesPage PatchingWizard_AutomatedUpdatesPage;
|
|
|
|
public PatchingWizard()
|
|
{
|
|
InitializeComponent();
|
|
|
|
PatchingWizard_PatchingPage = new PatchingWizard_PatchingPage();
|
|
PatchingWizard_SelectPatchPage = new PatchingWizard_SelectPatchPage();
|
|
PatchingWizard_ModePage = new PatchingWizard_ModePage();
|
|
PatchingWizard_SelectServers = new PatchingWizard_SelectServers();
|
|
PatchingWizard_UploadPage = new PatchingWizard_UploadPage();
|
|
PatchingWizard_PrecheckPage = new PatchingWizard_PrecheckPage();
|
|
PatchingWizard_FirstPage = new PatchingWizard_FirstPage();
|
|
PatchingWizard_AutomatedUpdatesPage = new PatchingWizard_AutomatedUpdatesPage();
|
|
|
|
AddPage(PatchingWizard_FirstPage);
|
|
AddPage(PatchingWizard_SelectPatchPage);
|
|
AddPage(PatchingWizard_SelectServers);
|
|
AddPage(PatchingWizard_UploadPage);
|
|
AddPage(PatchingWizard_PrecheckPage);
|
|
AddPage(PatchingWizard_ModePage);
|
|
AddPage(PatchingWizard_PatchingPage);
|
|
}
|
|
|
|
public void AddAlert(XenServerPatchAlert alert)
|
|
{
|
|
PatchingWizard_SelectPatchPage.SelectDownloadAlert(alert);
|
|
PatchingWizard_SelectPatchPage.SelectedUpdateAlert = alert;
|
|
PatchingWizard_SelectServers.SelectedUpdateAlert = alert;
|
|
PatchingWizard_PrecheckPage.UpdateAlert = alert;
|
|
PatchingWizard_UploadPage.SelectedUpdateAlert = alert;
|
|
}
|
|
|
|
public void AddFile(string path)
|
|
{
|
|
PatchingWizard_SelectPatchPage.FilePath = path;
|
|
}
|
|
|
|
public void SelectServers(List<Host> selectedServers)
|
|
{
|
|
PatchingWizard_SelectServers.SelectServers(selectedServers);
|
|
PatchingWizard_SelectServers.DisableUnselectedServers();
|
|
}
|
|
|
|
protected override void UpdateWizardContent(XenTabPage senderPage)
|
|
{
|
|
var prevPageType = senderPage.GetType();
|
|
|
|
if (prevPageType == typeof(PatchingWizard_SelectPatchPage))
|
|
{
|
|
var wizardMode = PatchingWizard_SelectPatchPage.WizardMode;
|
|
var wizardIsInAutomatedUpdatesMode = wizardMode == WizardMode.AutomatedUpdates;
|
|
|
|
var updateType = wizardIsInAutomatedUpdatesMode ? UpdateType.Legacy : PatchingWizard_SelectPatchPage.SelectedUpdateType;
|
|
var newPatch = wizardIsInAutomatedUpdatesMode ? null : PatchingWizard_SelectPatchPage.SelectedNewPatch;
|
|
var existPatch = wizardIsInAutomatedUpdatesMode ? null : PatchingWizard_SelectPatchPage.SelectedExistingPatch;
|
|
var alertPatch = wizardIsInAutomatedUpdatesMode ? null : PatchingWizard_SelectPatchPage.SelectedUpdateAlert;
|
|
var fileFromDiskAlertPatch = wizardIsInAutomatedUpdatesMode ? null : PatchingWizard_SelectPatchPage.FileFromDiskAlert;
|
|
var fileFromDiskHasUpdateXml = !wizardIsInAutomatedUpdatesMode && PatchingWizard_SelectPatchPage.FileFromDiskHasUpdateXml;
|
|
|
|
PatchingWizard_SelectServers.WizardMode = wizardMode;
|
|
PatchingWizard_SelectServers.SelectedUpdateType = updateType;
|
|
PatchingWizard_SelectServers.SelectedUpdateAlert = alertPatch;
|
|
PatchingWizard_SelectServers.FileFromDiskAlert = fileFromDiskAlertPatch;
|
|
PatchingWizard_SelectServers.FileFromDiskHasUpdateXml = fileFromDiskHasUpdateXml;
|
|
|
|
RemovePage(PatchingWizard_UploadPage);
|
|
RemovePage(PatchingWizard_ModePage);
|
|
RemovePage(PatchingWizard_PatchingPage);
|
|
RemovePage(PatchingWizard_AutomatedUpdatesPage);
|
|
if (wizardMode == WizardMode.SingleUpdate)
|
|
{
|
|
AddAfterPage(PatchingWizard_SelectServers, PatchingWizard_UploadPage);
|
|
AddAfterPage(PatchingWizard_PrecheckPage, PatchingWizard_ModePage);
|
|
AddAfterPage(PatchingWizard_ModePage, PatchingWizard_PatchingPage);
|
|
}
|
|
else // AutomatedUpdates or NewVersion
|
|
{
|
|
AddAfterPage(PatchingWizard_PrecheckPage, PatchingWizard_AutomatedUpdatesPage);
|
|
}
|
|
|
|
PatchingWizard_UploadPage.SelectedUpdateType = updateType;
|
|
PatchingWizard_UploadPage.SelectedExistingPatch = existPatch;
|
|
PatchingWizard_UploadPage.SelectedNewPatchPath = newPatch;
|
|
PatchingWizard_UploadPage.SelectedUpdateAlert = alertPatch;
|
|
|
|
PatchingWizard_ModePage.Patch = existPatch;
|
|
PatchingWizard_ModePage.SelectedUpdateType = updateType;
|
|
|
|
PatchingWizard_PrecheckPage.WizardMode = wizardMode;
|
|
PatchingWizard_PrecheckPage.Patch = existPatch;
|
|
PatchingWizard_PrecheckPage.PoolUpdate = null; //reset the PoolUpdate property; it will be updated on leaving the Upload page, if this page is visible
|
|
PatchingWizard_PrecheckPage.UpdateAlert = alertPatch ?? fileFromDiskAlertPatch;
|
|
|
|
PatchingWizard_AutomatedUpdatesPage.WizardMode = wizardMode;
|
|
PatchingWizard_AutomatedUpdatesPage.UpdateAlert = alertPatch ?? fileFromDiskAlertPatch;
|
|
PatchingWizard_AutomatedUpdatesPage.PatchFromDisk = PatchingWizard_SelectPatchPage.PatchFromDisk;
|
|
|
|
PatchingWizard_PatchingPage.SelectedUpdateType = updateType;
|
|
PatchingWizard_PatchingPage.Patch = existPatch;
|
|
PatchingWizard_PatchingPage.SelectedNewPatch = newPatch;
|
|
}
|
|
else if (prevPageType == typeof(PatchingWizard_SelectServers))
|
|
{
|
|
var selectedServers = PatchingWizard_SelectServers.SelectedServers;
|
|
var selectedPools = PatchingWizard_SelectServers.SelectedPools;
|
|
var selectedMasters = PatchingWizard_SelectServers.SelectedMasters;
|
|
var applyUpdatesToNewVersion = PatchingWizard_SelectServers.ApplyUpdatesToNewVersion;
|
|
|
|
PatchingWizard_PrecheckPage.SelectedServers = selectedServers;
|
|
PatchingWizard_PrecheckPage.ApplyUpdatesToNewVersion = applyUpdatesToNewVersion;
|
|
|
|
PatchingWizard_ModePage.SelectedPools = selectedPools;
|
|
PatchingWizard_ModePage.SelectedServers = selectedServers;
|
|
|
|
PatchingWizard_PatchingPage.SelectedServers = selectedServers;
|
|
PatchingWizard_PatchingPage.SelectedPools = selectedPools;
|
|
|
|
PatchingWizard_UploadPage.SelectedMasters = selectedMasters;
|
|
PatchingWizard_UploadPage.SelectedServers = selectedServers;
|
|
|
|
PatchingWizard_AutomatedUpdatesPage.SelectedPools = selectedPools;
|
|
PatchingWizard_AutomatedUpdatesPage.ApplyUpdatesToNewVersion = applyUpdatesToNewVersion;
|
|
}
|
|
else if (prevPageType == typeof(PatchingWizard_UploadPage))
|
|
{
|
|
if (PatchingWizard_SelectPatchPage.SelectedUpdateType == UpdateType.Legacy)
|
|
{
|
|
PatchingWizard_SelectPatchPage.SelectedUpdateType = UpdateType.Existing;
|
|
PatchingWizard_SelectPatchPage.SelectedExistingPatch = PatchingWizard_UploadPage.Patch;
|
|
|
|
PatchingWizard_SelectServers.SelectedUpdateType = UpdateType.Existing;
|
|
}
|
|
|
|
PatchingWizard_PrecheckPage.Patch = PatchingWizard_UploadPage.Patch;
|
|
PatchingWizard_PrecheckPage.PoolUpdate = PatchingWizard_UploadPage.PoolUpdate;
|
|
PatchingWizard_PrecheckPage.SrUploadedUpdates = PatchingWizard_UploadPage.SrUploadedUpdates;
|
|
|
|
PatchingWizard_ModePage.Patch = PatchingWizard_UploadPage.Patch;
|
|
PatchingWizard_ModePage.PoolUpdate = PatchingWizard_UploadPage.PoolUpdate;
|
|
|
|
PatchingWizard_PatchingPage.Patch = PatchingWizard_UploadPage.Patch;
|
|
PatchingWizard_PatchingPage.PoolUpdate = PatchingWizard_UploadPage.PoolUpdate;
|
|
PatchingWizard_PatchingPage.SuppPackVdis = PatchingWizard_UploadPage.SuppPackVdis;
|
|
}
|
|
else if (prevPageType == typeof(PatchingWizard_ModePage))
|
|
{
|
|
PatchingWizard_PatchingPage.ManualTextInstructions = PatchingWizard_ModePage.ManualTextInstructions;
|
|
PatchingWizard_PatchingPage.IsAutomaticMode = PatchingWizard_ModePage.IsAutomaticMode;
|
|
PatchingWizard_PatchingPage.RemoveUpdateFile = PatchingWizard_ModePage.RemoveUpdateFile;
|
|
}
|
|
else if (prevPageType == typeof(PatchingWizard_PrecheckPage))
|
|
{
|
|
PatchingWizard_PatchingPage.PrecheckProblemsActuallyResolved = PatchingWizard_PrecheckPage.PrecheckProblemsActuallyResolved;
|
|
PatchingWizard_PatchingPage.LivePatchCodesByHost = PatchingWizard_PrecheckPage.LivePatchCodesByHost;
|
|
PatchingWizard_ModePage.LivePatchCodesByHost = PatchingWizard_PrecheckPage.LivePatchCodesByHost;
|
|
PatchingWizard_AutomatedUpdatesPage.PrecheckProblemsActuallyResolved = PatchingWizard_PrecheckPage.PrecheckProblemsActuallyResolved;
|
|
}
|
|
}
|
|
|
|
private List<AsyncAction> GetRemovePatchActions(List<Pool_patch> patchesToRemove)
|
|
{
|
|
if (patchesToRemove == null || patchesToRemove.Count == 0)
|
|
return new List<AsyncAction>();
|
|
|
|
List<AsyncAction> list = new List<AsyncAction>();
|
|
foreach (Pool_patch patch in patchesToRemove)
|
|
{
|
|
if (patch.Connection != null && patch.Connection.IsConnected)
|
|
{
|
|
if (patch.HostsAppliedTo().Count == 0)
|
|
{
|
|
list.Add(new RemovePatchAction(patch));
|
|
}
|
|
else
|
|
{
|
|
list.Add(new DelegatedAsyncAction(patch.Connection, Messages.REMOVE_PATCH, "", "", session => Pool_patch.async_pool_clean(session, patch.opaque_ref)));
|
|
}
|
|
}
|
|
}
|
|
return list;
|
|
}
|
|
|
|
private List<AsyncAction> GetRemovePatchActions()
|
|
{
|
|
return GetRemovePatchActions(PatchingWizard_UploadPage.NewUploadedPatches.Keys.ToList());
|
|
}
|
|
|
|
private List<AsyncAction> GetRemoveVdiActions(List<VDI> vdisToRemove)
|
|
{
|
|
if (vdisToRemove == null || vdisToRemove.Count == 0)
|
|
return new List<AsyncAction>();
|
|
|
|
var list = (from vdi in vdisToRemove
|
|
where vdi.Connection != null && vdi.Connection.IsConnected
|
|
select new DestroyDiskAction(vdi));
|
|
|
|
return list.OfType<AsyncAction>().ToList();
|
|
}
|
|
|
|
private List<AsyncAction> GetRemoveVdiActions()
|
|
{
|
|
return GetRemoveVdiActions(PatchingWizard_UploadPage.AllCreatedSuppPackVdis);
|
|
}
|
|
|
|
private void RunMultipleActions(string title, string startDescription, string endDescription,
|
|
List<AsyncAction> subActions)
|
|
{
|
|
if (subActions != null && subActions.Count > 0)
|
|
{
|
|
using (MultipleAction multipleAction = new MultipleAction(xenConnection, title, startDescription,
|
|
endDescription, subActions, false, true))
|
|
{
|
|
using (var dialog = new ActionProgressDialog(multipleAction, ProgressBarStyle.Blocks))
|
|
dialog.ShowDialog(Program.MainWindow);
|
|
}
|
|
}
|
|
}
|
|
|
|
protected override void OnCancel()
|
|
{
|
|
base.OnCancel();
|
|
|
|
var subActions = new List<AsyncAction>();
|
|
subActions.AddRange(GetUnwindChangesActions(PatchingWizard_PrecheckPage.PrecheckProblemsActuallyResolved) ?? new List<AsyncAction>());
|
|
subActions.AddRange(GetRemovePatchActions() ?? new List<AsyncAction>());
|
|
subActions.AddRange(GetRemoveVdiActions() ?? new List<AsyncAction>());
|
|
subActions.AddRange(GetCleanUpPoolUpdateActions() ?? new List<AsyncAction>());
|
|
|
|
RunMultipleActions(Messages.REVERT_WIZARD_CHANGES, Messages.REVERTING_WIZARD_CHANGES,
|
|
Messages.REVERTED_WIZARD_CHANGES, subActions);
|
|
|
|
RemoveDownloadedPatches();
|
|
}
|
|
|
|
private void RemoveUnwantedPatches(List<Pool_patch> patchesToRemove)
|
|
{
|
|
List<AsyncAction> subActions = GetRemovePatchActions(patchesToRemove);
|
|
RunMultipleActions(Messages.PATCHINGWIZARD_REMOVE_UPDATES, Messages.PATCHINGWIZARD_REMOVING_UPDATES, Messages.PATCHINGWIZARD_REMOVED_UPDATES, subActions);
|
|
}
|
|
|
|
private void RemoveTemporaryVdis()
|
|
{
|
|
List<AsyncAction> subActions = GetRemoveVdiActions();
|
|
RunMultipleActions(Messages.PATCHINGWIZARD_REMOVE_UPDATES, Messages.PATCHINGWIZARD_REMOVING_UPDATES, Messages.PATCHINGWIZARD_REMOVED_UPDATES, subActions);
|
|
}
|
|
|
|
private void CleanUpPoolUpdates()
|
|
{
|
|
var subActions = GetCleanUpPoolUpdateActions();
|
|
RunMultipleActions(Messages.PATCHINGWIZARD_REMOVE_UPDATES, Messages.PATCHINGWIZARD_REMOVING_UPDATES, Messages.PATCHINGWIZARD_REMOVED_UPDATES, subActions);
|
|
}
|
|
|
|
private void RemoveDownloadedPatches()
|
|
{
|
|
List<string> listOfDownloadedFiles = new List<string>();
|
|
|
|
listOfDownloadedFiles.AddRange(PatchingWizard_AutomatedUpdatesPage.AllDownloadedPatches.Values); // AutomatedUpdates or NewVersion
|
|
listOfDownloadedFiles.AddRange(PatchingWizard_UploadPage.AllDownloadedPatches.Values); //SingleUpdate
|
|
listOfDownloadedFiles.AddRange(PatchingWizard_SelectPatchPage.UnzippedUpdateFiles);
|
|
|
|
foreach (string downloadedPatch in listOfDownloadedFiles)
|
|
{
|
|
try
|
|
{
|
|
if (File.Exists(downloadedPatch))
|
|
{
|
|
File.Delete(downloadedPatch);
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
log.DebugFormat("Could not remove downloaded patch {0} ", downloadedPatch);
|
|
}
|
|
}
|
|
}
|
|
|
|
protected override void FinishWizard()
|
|
{
|
|
if (PatchingWizard_UploadPage.NewUploadedPatches != null)
|
|
{
|
|
List<Pool_patch> patchesToRemove =
|
|
PatchingWizard_UploadPage.NewUploadedPatches.Keys.ToList().Where(
|
|
patch => !string.Equals(patch.uuid, PatchingWizard_UploadPage.Patch.uuid, System.StringComparison.OrdinalIgnoreCase)).ToList();
|
|
|
|
RemoveUnwantedPatches(patchesToRemove);
|
|
}
|
|
|
|
if (PatchingWizard_UploadPage.AllCreatedSuppPackVdis != null)
|
|
RemoveTemporaryVdis();
|
|
|
|
CleanUpPoolUpdates();
|
|
|
|
RemoveDownloadedPatches();
|
|
Updates.CheckServerPatches();
|
|
base.FinishWizard();
|
|
}
|
|
|
|
private List<AsyncAction> GetCleanUpPoolUpdateActions()
|
|
{
|
|
if (PatchingWizard_UploadPage.AllIntroducedPoolUpdates != null && PatchingWizard_UploadPage.AllIntroducedPoolUpdates.Count > 0)
|
|
{
|
|
return PatchingWizard_UploadPage.AllIntroducedPoolUpdates.Keys.Where(u => u.Connection != null && u.Connection.IsConnected).Select(GetCleanUpPoolUpdateAction).ToList();
|
|
}
|
|
|
|
return new List<AsyncAction>();
|
|
}
|
|
|
|
private static AsyncAction GetCleanUpPoolUpdateAction(Pool_update poolUpdate)
|
|
{
|
|
return
|
|
new DelegatedAsyncAction(poolUpdate.Connection, Messages.REMOVE_PATCH, "", "", session =>
|
|
{
|
|
try
|
|
{
|
|
Pool_update.pool_clean(session, poolUpdate.opaque_ref);
|
|
if(!poolUpdate.AppliedOnHosts().Any())
|
|
Pool_update.destroy(session, poolUpdate.opaque_ref);
|
|
}
|
|
catch (Failure f)
|
|
{
|
|
log.Error("Clean up failed", f);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|