2017-01-16 20:59:50 +01:00
/ * Copyright ( c ) Citrix Systems , Inc .
2013-06-24 13:41:48 +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 .
* /
using System ;
using System.Collections.Generic ;
2014-07-14 17:00:43 +02:00
using XenAdmin.Diagnostics.Problems.PoolProblem ;
2013-06-24 13:41:48 +02:00
using XenAdmin.Network ;
using XenAPI ;
using XenAdmin.Diagnostics.Problems ;
using XenAdmin.Core ;
using XenAdmin.Diagnostics.Problems.VMProblem ;
using XenAdmin.Diagnostics.Problems.HostProblem ;
using System.Linq ;
2016-08-23 19:16:33 +02:00
using XenAdmin.Wizards.PatchingWizard ;
2013-06-24 13:41:48 +02:00
namespace XenAdmin.Diagnostics.Checks
{
public class AssertCanEvacuateCheck : Check
{
private static readonly log4net . ILog log = log4net . LogManager . GetLogger ( System . Reflection . MethodBase . GetCurrentMethod ( ) . DeclaringType ) ;
2016-10-20 18:19:42 +02:00
private readonly Dictionary < string , livepatch_status > livePatchCodesByHost ;
2016-08-23 19:16:33 +02:00
2016-10-20 18:19:42 +02:00
public AssertCanEvacuateCheck ( Host host , Dictionary < string , livepatch_status > livePatchCodesByHost )
2016-08-23 19:16:33 +02:00
: base ( host )
{
this . livePatchCodesByHost = livePatchCodesByHost ;
}
2013-06-24 13:41:48 +02:00
public AssertCanEvacuateCheck ( Host host )
: base ( host )
{
}
2016-06-07 18:40:59 +02:00
protected List < Problem > CheckHost ( )
2013-06-24 13:41:48 +02:00
{
2016-08-23 19:16:33 +02:00
// when livepatching is available, no restart is expected, so this check is not needed
2016-10-20 18:19:42 +02:00
if ( livePatchCodesByHost ! = null & & livePatchCodesByHost . ContainsKey ( Host . uuid ) & & livePatchCodesByHost [ Host . uuid ] = = livepatch_status . ok_livepatch_complete )
2016-08-23 19:16:33 +02:00
{
log . DebugFormat ( "Check not needed for host {0}, because pool_patch.Precheck() returned PATCH_PRECHECK_LIVEPATCH_COMPLETE for update." , Host ) ;
return new List < Problem > ( ) ;
}
2016-06-07 18:40:59 +02:00
var problems = new List < Problem > ( ) ;
2016-06-14 14:38:12 +02:00
var restrictMigration = Helpers . FeatureForbidden ( Host . Connection , Host . RestrictIntraPoolMigrate ) ;
2016-06-07 18:40:59 +02:00
var VMsWithProblems = new List < string > ( ) ;
2013-06-24 13:41:48 +02:00
var residentVMs = Host . Connection . ResolveAll ( Host . resident_VMs ) ;
foreach ( var residentVM in residentVMs )
{
if ( residentVM . AutoPowerOn )
2016-06-07 18:40:59 +02:00
{
problems . Add ( new AutoStartEnabled ( this , residentVM ) ) ;
VMsWithProblems . Add ( residentVM . opaque_ref ) ;
continue ;
}
2013-06-24 13:41:48 +02:00
SR sr = residentVM . FindVMCDROMSR ( ) ;
if ( sr ! = null & & sr . IsToolsSR )
2016-06-07 18:40:59 +02:00
{
problems . Add ( new ToolsCD ( this , residentVM ) ) ;
VMsWithProblems . Add ( residentVM . opaque_ref ) ;
}
else if ( sr ! = null & & sr . content_type = = SR . Content_Type_ISO )
{
problems . Add ( new LocalCD ( this , residentVM ) ) ;
VMsWithProblems . Add ( residentVM . opaque_ref ) ;
}
2016-06-14 14:38:12 +02:00
if ( restrictMigration & & residentVM . is_a_real_vm & & ! VMsWithProblems . Contains ( residentVM . opaque_ref ) )
{
2017-05-22 12:16:22 +02:00
problems . Add ( new CannotMigrateVM ( this , residentVM , CannotMigrateVM . CannotMigrateVMReason . LicenseRestriction ) ) ;
2016-06-14 14:38:12 +02:00
VMsWithProblems . Add ( residentVM . opaque_ref ) ;
}
2013-06-24 13:41:48 +02:00
}
2016-06-14 14:38:12 +02:00
// if VM migration is restricted, then we are already forcing all VMs to be shutdown/suspended, so there is not need to call get_vms_which_prevent_evacuation
if ( restrictMigration )
return problems ;
2013-06-24 13:41:48 +02:00
Session session = Host . Connection . DuplicateSession ( ) ;
Dictionary < XenRef < VM > , String [ ] > vms =
Host . get_vms_which_prevent_evacuation ( session , Host . opaque_ref ) ;
foreach ( KeyValuePair < XenRef < VM > , String [ ] > kvp in vms )
{
String [ ] exception = kvp . Value ;
XenRef < VM > vmRef = kvp . Key ;
2016-06-07 18:40:59 +02:00
if ( VMsWithProblems . Contains ( vmRef ) )
continue ;
2013-06-24 13:41:48 +02:00
try
{
2016-06-07 18:40:59 +02:00
Problem p = GetProblem ( Host . Connection , vmRef , exception ) ;
if ( p ! = null )
problems . Add ( p ) ;
2013-06-24 13:41:48 +02:00
}
catch ( Exception e )
{
log . Debug ( "Didn't recognise reason" , e ) ;
log . Debug ( exception ) ;
log . Debug ( e , e ) ;
VM vm = Host . Connection . Resolve ( kvp . Key ) ;
if ( vm ! = null )
2016-06-07 18:40:59 +02:00
problems . Add ( new CannotMigrateVM ( this , vm ) ) ;
2013-06-24 13:41:48 +02:00
}
}
2016-06-07 18:40:59 +02:00
return problems ;
2013-06-24 13:41:48 +02:00
}
private Problem GetProblem ( IXenConnection connection , XenRef < VM > vmRef , string [ ] exception )
{
try
{
System . Diagnostics . Trace . Assert ( exception . Length > 0 ) ;
2017-06-02 17:07:09 +02:00
var vm = connection . Resolve < VM > ( vmRef ) ;
if ( vm = = null )
{
throw new NullReferenceException ( exception [ 0 ] ) ;
}
2013-06-24 13:41:48 +02:00
switch ( exception [ 0 ] )
{
case Failure . VM_REQUIRES_SR :
XenRef < SR > srRef = new XenRef < SR > ( exception [ 2 ] ) ;
SR sr = connection . Resolve < SR > ( srRef ) ;
if ( sr = = null )
throw new NullReferenceException ( Failure . VM_REQUIRES_SR ) ;
if ( sr . content_type = = SR . Content_Type_ISO )
{
return new LocalCD ( this , vm ) ;
}
else if ( ! sr . shared )
{
// Only show the problem if it is really local storage
// As the pbd-plug checks will pick up broken storage.
return new LocalStorage ( this , vm ) ;
}
return null ;
case Failure . VM_MISSING_PV_DRIVERS :
return new NoPVDrivers ( this , vm ) ;
2017-05-22 12:16:22 +02:00
case Failure . VM_LACKS_FEATURE :
return new CannotMigrateVM ( this , vm , CannotMigrateVM . CannotMigrateVMReason . LacksFeature ) ;
case Failure . VM_LACKS_FEATURE_SUSPEND :
return new CannotMigrateVM ( this , vm , CannotMigrateVM . CannotMigrateVMReason . LacksFeatureSuspend ) ;
2013-06-24 13:41:48 +02:00
case "VM_OLD_PV_DRIVERS" :
return new PVDriversOutOfDate ( this , vm ) ;
case Failure . NO_HOSTS_AVAILABLE :
//CA-63531: Boston server will come here in case of single host pool or standalone host
return new NoHosts ( this , vm ) ;
case Failure . HOST_NOT_ENOUGH_FREE_MEMORY :
Pool pool = Helpers . GetPool ( vm . Connection ) ;
if ( pool = = null | | pool . Connection . Cache . HostCount = = 1 )
{
//CA-63531: Cowley server will come here in case of single host pool or standalone host
return new NoHosts ( this , vm ) ;
}
Host host = vm . Connection . Resolve ( vm . resident_on ) ;
return new NotEnoughMem ( this , host ) ;
case Failure . VM_REQUIRES_NETWORK :
XenRef < XenAPI . Network > netRef = new XenRef < XenAPI . Network > ( exception [ 2 ] ) ;
XenAPI . Network network = connection . Resolve ( netRef ) ;
if ( network = = null )
throw new NullReferenceException ( Failure . VM_REQUIRES_NETWORK ) ;
return new VMCannotSeeNetwork ( this , vm , network ) ;
2013-12-11 11:41:54 +01:00
case Failure . VM_HAS_VGPU :
return new VmHasVgpu ( this , vm ) ;
2013-06-24 13:41:48 +02:00
default :
throw new NullReferenceException ( exception [ 0 ] ) ;
}
}
catch ( Exception e )
{
log . Debug ( "Exception parsing exception" , e ) ;
log . Debug ( e , e ) ;
throw new Failure ( new List < String > ( exception ) ) ;
}
}
2016-06-07 18:40:59 +02:00
// This function only tests certain host-wide conditions.
// Further per-VM conditions are in CheckHost().
// See RunAllChecks() for how we combine them.
protected override Problem RunCheck ( )
2013-06-24 13:41:48 +02:00
{
if ( ! Host . IsLive )
2014-07-14 17:00:43 +02:00
return new HostNotLiveWarning ( this , Host ) ;
Pool pool = Helpers . GetPool ( Host . Connection ) ;
if ( pool ! = null )
{
if ( pool . ha_enabled )
return new HAEnabledWarning ( this , pool , Host ) ;
if ( Helpers . WlbEnabled ( pool . Connection ) )
return new WLBEnabledWarning ( this , pool , Host ) ;
}
2016-06-07 18:40:59 +02:00
return null ;
}
public override List < Problem > RunAllChecks ( )
{
var list = base . RunAllChecks ( ) ;
if ( list . Count > 0 )
return list ;
else
return CheckHost ( ) ;
2013-06-24 13:41:48 +02:00
}
public override string Description
{
get { return Messages . ASSERT_CAN_EVACUATE_CHECK_DESCRIPTION ; }
}
}
}