2017-01-16 20:59:50 +01:00
|
|
|
|
/* Copyright (c) Citrix Systems, Inc.
|
2016-08-19 11:55:18 +02:00
|
|
|
|
* 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.
|
2016-04-28 16:56:45 +02:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2019-01-10 14:24:42 +01:00
|
|
|
|
using System.Linq;
|
2016-04-28 16:56:45 +02:00
|
|
|
|
using XenAdmin.Core;
|
|
|
|
|
using XenAPI;
|
|
|
|
|
using XenAdmin.Network;
|
2016-08-02 15:30:20 +02:00
|
|
|
|
using XenAdmin.Diagnostics.Checks;
|
2019-01-10 14:24:42 +01:00
|
|
|
|
using XenAdmin.Diagnostics.Problems;
|
2018-06-05 23:26:16 +02:00
|
|
|
|
|
2016-08-19 11:55:18 +02:00
|
|
|
|
|
|
|
|
|
namespace XenAdmin.Wizards.PatchingWizard.PlanActions
|
|
|
|
|
{
|
2018-06-05 23:26:16 +02:00
|
|
|
|
class PatchPrecheckOnHostPlanAction : PlanActionWithSession
|
2016-08-19 11:55:18 +02:00
|
|
|
|
{
|
2019-01-10 14:24:42 +01:00
|
|
|
|
private readonly XenServerPatch xenServerPatch;
|
|
|
|
|
private readonly List<HostUpdateMapping> mappings;
|
2018-06-05 23:26:16 +02:00
|
|
|
|
private readonly Host host;
|
2018-10-04 15:33:17 +02:00
|
|
|
|
private readonly List<string> hostsThatWillRequireReboot;
|
2019-02-13 18:16:40 +01:00
|
|
|
|
private readonly Dictionary<string, List<string>> livePatchAttempts;
|
2016-04-28 16:56:45 +02:00
|
|
|
|
|
2019-02-13 18:16:40 +01:00
|
|
|
|
public PatchPrecheckOnHostPlanAction(IXenConnection connection, XenServerPatch xenServerPatch, Host host, List<HostUpdateMapping> mappings, List<string> hostsThatWillRequireReboot, Dictionary<string, List<string>> livePatchAttempts)
|
2018-06-26 15:04:51 +02:00
|
|
|
|
: base(connection)
|
2016-04-28 16:56:45 +02:00
|
|
|
|
{
|
2019-01-10 14:24:42 +01:00
|
|
|
|
this.xenServerPatch = xenServerPatch;
|
2018-06-05 23:26:16 +02:00
|
|
|
|
this.host = host;
|
2016-04-28 16:56:45 +02:00
|
|
|
|
this.mappings = mappings;
|
2018-10-04 15:33:17 +02:00
|
|
|
|
this.hostsThatWillRequireReboot = hostsThatWillRequireReboot;
|
2019-02-13 18:16:40 +01:00
|
|
|
|
this.livePatchAttempts = livePatchAttempts;
|
2016-08-19 11:55:18 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void RunWithSession(ref Session session)
|
2016-04-28 16:56:45 +02:00
|
|
|
|
{
|
2016-08-18 12:25:39 +02:00
|
|
|
|
var master = Helpers.GetMaster(Connection);
|
|
|
|
|
|
2019-01-10 14:24:42 +01:00
|
|
|
|
var mapping = (from HostUpdateMapping hum in mappings
|
|
|
|
|
let xpm = hum as XenServerPatchMapping
|
|
|
|
|
where xpm != null && xpm.Matches(master, xenServerPatch)
|
|
|
|
|
select xpm).FirstOrDefault();
|
2018-10-04 15:33:17 +02:00
|
|
|
|
|
2019-01-10 14:24:42 +01:00
|
|
|
|
if (mapping == null || !mapping.IsValid)
|
|
|
|
|
return;
|
2016-06-17 15:15:59 +02:00
|
|
|
|
|
2019-01-10 14:24:42 +01:00
|
|
|
|
var livePatchStatus = new Dictionary<string, livepatch_status>();
|
2018-06-26 15:04:51 +02:00
|
|
|
|
|
2019-01-10 14:24:42 +01:00
|
|
|
|
if (Cancelling)
|
|
|
|
|
throw new CancelledException();
|
2016-10-04 15:58:54 +02:00
|
|
|
|
|
2019-02-13 14:02:22 +01:00
|
|
|
|
var updateRequiresHostReboot = false;
|
|
|
|
|
|
2019-01-10 14:24:42 +01:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
AddProgressStep(string.Format(Messages.UPDATES_WIZARD_RUNNING_PRECHECK, xenServerPatch.Name, host.Name()));
|
2016-10-04 15:58:54 +02:00
|
|
|
|
|
2019-07-12 15:43:48 +02:00
|
|
|
|
RefreshUpdate(host, mapping, session);
|
|
|
|
|
|
2019-01-10 14:24:42 +01:00
|
|
|
|
List<Problem> problems = null;
|
2016-06-29 18:56:51 +02:00
|
|
|
|
|
2019-01-10 14:24:42 +01:00
|
|
|
|
if (mapping is PoolPatchMapping patchMapping)
|
2019-02-13 14:02:22 +01:00
|
|
|
|
{
|
2019-07-12 15:43:48 +02:00
|
|
|
|
log.InfoFormat("Running patch precheck on '{0}'. Patch = '{1}' (uuid = '{2}'; opaque_ref = '{3}')", host.Name(), patchMapping.Pool_patch.Name(), patchMapping.Pool_patch.uuid, patchMapping.Pool_patch.opaque_ref);
|
2019-01-10 14:24:42 +01:00
|
|
|
|
problems = new PatchPrecheckCheck(host, patchMapping.Pool_patch, livePatchStatus).RunAllChecks();
|
2019-02-13 14:02:22 +01:00
|
|
|
|
updateRequiresHostReboot = WizardHelpers.IsHostRebootRequiredForUpdate(host, patchMapping.Pool_patch, livePatchStatus);
|
|
|
|
|
}
|
2019-01-10 14:24:42 +01:00
|
|
|
|
else if (mapping is PoolUpdateMapping updateMapping)
|
2019-02-13 14:02:22 +01:00
|
|
|
|
{
|
2019-07-12 15:43:48 +02:00
|
|
|
|
log.InfoFormat("Running update precheck on '{0}'. Update = '{1}' (uuid = '{2}'; opaque_ref = '{3}'", host.Name(), updateMapping.Pool_update.Name(), updateMapping.Pool_update.uuid, updateMapping.Pool_update.opaque_ref);
|
2019-01-10 14:24:42 +01:00
|
|
|
|
problems = new PatchPrecheckCheck(host, updateMapping.Pool_update, livePatchStatus).RunAllChecks();
|
2019-02-13 14:02:22 +01:00
|
|
|
|
updateRequiresHostReboot = WizardHelpers.IsHostRebootRequiredForUpdate(host, updateMapping.Pool_update, livePatchStatus);
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-10 14:24:42 +01:00
|
|
|
|
Problem problem = null;
|
2016-06-29 18:56:51 +02:00
|
|
|
|
|
2019-01-10 14:24:42 +01:00
|
|
|
|
if (problems != null && problems.Count > 0)
|
|
|
|
|
problem = problems[0];
|
2018-10-04 15:33:17 +02:00
|
|
|
|
|
2019-01-10 14:24:42 +01:00
|
|
|
|
if (problem != null)
|
|
|
|
|
throw new Exception(problem.Description);
|
2016-04-28 16:56:45 +02:00
|
|
|
|
}
|
2019-01-10 14:24:42 +01:00
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
log.Error(string.Format("Precheck failed on host {0}", host.Name()), ex);
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-13 14:02:22 +01:00
|
|
|
|
if(updateRequiresHostReboot && !hostsThatWillRequireReboot.Contains(host.uuid))
|
2019-01-10 14:24:42 +01:00
|
|
|
|
hostsThatWillRequireReboot.Add(host.uuid);
|
2019-02-13 14:02:22 +01:00
|
|
|
|
if (updateRequiresHostReboot && !mapping.HostsThatNeedEvacuated.Contains(host.uuid))
|
|
|
|
|
mapping.HostsThatNeedEvacuated.Add(host.uuid);
|
2019-02-13 18:16:40 +01:00
|
|
|
|
if (livePatchStatus.ContainsKey(host.uuid) && livePatchStatus[host.uuid] == livepatch_status.ok_livepatch_complete)
|
|
|
|
|
{
|
|
|
|
|
if (!livePatchAttempts.ContainsKey(host.uuid) || livePatchAttempts[host.uuid] == null)
|
|
|
|
|
livePatchAttempts[host.uuid] = new List<string>();
|
|
|
|
|
livePatchAttempts[host.uuid].Add(xenServerPatch.Uuid);
|
|
|
|
|
}
|
2016-04-28 16:56:45 +02:00
|
|
|
|
}
|
2019-07-12 15:43:48 +02:00
|
|
|
|
|
|
|
|
|
public static void RefreshUpdate(Host host, HostUpdateMapping mapping, Session session)
|
|
|
|
|
{
|
|
|
|
|
// re-introduce pool_update if needed
|
|
|
|
|
if (mapping is PoolUpdateMapping poolUpdateMapping
|
|
|
|
|
&& session.Connection.Cache.Pool_updates.FirstOrDefault(u => string.Equals(u.uuid, poolUpdateMapping.Pool_update.uuid, StringComparison.OrdinalIgnoreCase)) == null)
|
|
|
|
|
{
|
|
|
|
|
log.InfoFormat("Re-introduce update on '{0}'. Update = '{1}' (uuid = '{2}'; old opaque_ref = '{3}')",
|
|
|
|
|
host.Name(), poolUpdateMapping.Pool_update.Name(), poolUpdateMapping.Pool_update.uuid,
|
|
|
|
|
poolUpdateMapping.Pool_update.opaque_ref);
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var newUpdateRef = Pool_update.introduce(session, poolUpdateMapping.Pool_update.vdi.opaque_ref);
|
|
|
|
|
session.Connection.WaitForCache(newUpdateRef);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
if (e is Failure failure && failure.ErrorDescription != null && failure.ErrorDescription.Count > 1 && failure.ErrorDescription[0] == Failure.UPDATE_ALREADY_EXISTS)
|
|
|
|
|
{
|
|
|
|
|
log.InfoFormat("Update '{0}' already exists", poolUpdateMapping.Pool_update.Name());
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
log.Error("Failed to re-introduce the update", e);
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// refresh the update/patch record based on uuid
|
|
|
|
|
mapping.RefreshUpdate();
|
|
|
|
|
}
|
2016-08-19 11:55:18 +02:00
|
|
|
|
}
|
|
|
|
|
}
|