mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 14:27:26 +01:00
71a8fde3c6
Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
227 lines
8.9 KiB
C#
227 lines
8.9 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.ComponentModel;
|
|
using System.Windows.Forms;
|
|
using XenAdmin.Core;
|
|
using XenAdmin.Network;
|
|
using XenAPI;
|
|
using BootMode = XenAdmin.Actions.VMActions.BootMode;
|
|
|
|
namespace XenAdmin.Wizards
|
|
{
|
|
public partial class BootModesControl : UserControl
|
|
{
|
|
private VM _templateVM;
|
|
private IXenConnection _connection;
|
|
|
|
public BootModesControl()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public VM TemplateVM
|
|
{
|
|
get => _templateVM;
|
|
set
|
|
{
|
|
if (_templateVM == value)
|
|
return;
|
|
|
|
_templateVM = value;
|
|
|
|
if (_templateVM != null)
|
|
_connection = _templateVM.Connection;
|
|
|
|
UpdateControls();
|
|
UpdateTpmControls();
|
|
}
|
|
}
|
|
|
|
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public IXenConnection Connection
|
|
{
|
|
get => _connection;
|
|
set
|
|
{
|
|
if (_connection == value)
|
|
return;
|
|
|
|
_connection = value;
|
|
UpdateControls();
|
|
UpdateTpmControls();
|
|
}
|
|
}
|
|
|
|
public BootMode SelectedOption =>
|
|
radioButtonUEFISecureBoot.Checked
|
|
? BootMode.UEFI_SECURE_BOOT
|
|
: radioButtonUEFIBoot.Checked
|
|
? BootMode.UEFI_BOOT
|
|
: BootMode.BIOS_BOOT;
|
|
|
|
public bool AssignVtpm => !IsVtpmTemplate && checkBoxVtpm.Checked;
|
|
|
|
private bool IsVtpmTemplate => _templateVM != null && _templateVM.is_a_template &&
|
|
_templateVM.platform.TryGetValue("vtpm", out var result) &&
|
|
result.ToLower() == "true";
|
|
|
|
public void CheckBIOSBootMode()
|
|
{
|
|
radioButtonBIOSBoot.Checked = true;
|
|
}
|
|
|
|
private void UpdateControls()
|
|
{
|
|
radioButtonBIOSBoot.Enabled = true;
|
|
radioButtonUEFIBoot.Visible = !Helpers.FeatureForbidden(_connection, Host.UefiBootDisabled);
|
|
radioButtonUEFISecureBoot.Visible = !Helpers.FeatureForbidden(_connection, Host.UefiSecureBootDisabled);
|
|
|
|
// ensure that a visible option is selected
|
|
if (radioButtonUEFIBoot.Checked && !radioButtonUEFIBoot.Visible)
|
|
radioButtonBIOSBoot.Checked = true;
|
|
|
|
if (radioButtonUEFISecureBoot.Checked && !radioButtonUEFISecureBoot.Visible)
|
|
radioButtonBIOSBoot.Checked = true;
|
|
|
|
if (_templateVM != null)
|
|
{
|
|
radioButtonUEFIBoot.Enabled = _templateVM.CanSupportUEFIBoot();
|
|
radioButtonUEFISecureBoot.Enabled = _templateVM.CanSupportUEFISecureBoot();
|
|
|
|
if (_templateVM.IsUEFIEnabled())
|
|
{
|
|
if (_templateVM.IsSecureBootEnabled())
|
|
radioButtonUEFISecureBoot.Checked = true;
|
|
else
|
|
radioButtonUEFIBoot.Checked = true;
|
|
|
|
if (!_templateVM.CanChangeBootMode() || IsVtpmTemplate)
|
|
radioButtonBIOSBoot.Enabled = false;
|
|
}
|
|
else
|
|
{
|
|
radioButtonBIOSBoot.Checked = true;
|
|
|
|
if (!_templateVM.CanChangeBootMode())
|
|
radioButtonUEFIBoot.Enabled = radioButtonUEFISecureBoot.Enabled = false;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
radioButtonBIOSBoot.Checked = true;
|
|
radioButtonUEFIBoot.Checked = false;
|
|
radioButtonUEFISecureBoot.Checked = false;
|
|
}
|
|
|
|
ShowTemplateWarning();
|
|
}
|
|
|
|
private void UpdateTpmControls()
|
|
{
|
|
if (_templateVM != null)
|
|
{
|
|
var vtpmSupported = !Helpers.FeatureForbidden(_connection, Host.RestrictVtpm) &&
|
|
Helpers.XapiEqualOrGreater_22_26_0(_connection) &&
|
|
(radioButtonUEFIBoot.Visible || radioButtonUEFISecureBoot.Visible) &&
|
|
(radioButtonUEFIBoot.Enabled || radioButtonUEFISecureBoot.Enabled);
|
|
|
|
groupBoxDevSecurity.Visible = vtpmSupported;
|
|
checkBoxVtpm.Enabled = vtpmSupported && !radioButtonBIOSBoot.Checked && !IsVtpmTemplate &&
|
|
_templateVM.VTPMs.Count < VM.MAX_ALLOWED_VTPMS;
|
|
checkBoxVtpm.Checked = vtpmSupported && !radioButtonBIOSBoot.Checked && IsVtpmTemplate &&
|
|
_templateVM.VTPMs.Count < VM.MAX_ALLOWED_VTPMS;
|
|
|
|
if (_templateVM.VTPMs.Count == VM.MAX_ALLOWED_VTPMS)
|
|
labelTpm.Text = _templateVM.VTPMs.Count == 1
|
|
? string.Format(Messages.VTPM_MAX_REACHED_CUSTOM_TEMPLATE_ONE, VM.MAX_ALLOWED_VTPMS)
|
|
: string.Format(Messages.VTPM_MAX_REACHED_CUSTOM_TEMPLATE_MANY, VM.MAX_ALLOWED_VTPMS);
|
|
else if (radioButtonBIOSBoot.Checked)
|
|
labelTpm.Text = Messages.COMMAND_VTPM_DISABLED_NON_UEFI;
|
|
}
|
|
else
|
|
{
|
|
groupBoxDevSecurity.Visible = false;
|
|
checkBoxVtpm.Enabled = false;
|
|
checkBoxVtpm.Checked = false;
|
|
}
|
|
|
|
labelTpm.Visible = imgTpm.Visible = groupBoxDevSecurity.Visible && !checkBoxVtpm.Enabled && !checkBoxVtpm.Checked;
|
|
}
|
|
|
|
private void ShowTemplateWarning()
|
|
{
|
|
if (_templateVM == null)
|
|
{
|
|
imgUnsupported.Visible = labelUnsupported.Visible = false;
|
|
return;
|
|
}
|
|
|
|
if (radioButtonBIOSBoot.Visible && !radioButtonBIOSBoot.Enabled)
|
|
{
|
|
imgUnsupported.Visible = labelUnsupported.Visible = true;
|
|
labelUnsupported.Text = Messages.BIOS_BOOT_MODE_UNSUPPORTED_WARNING;
|
|
return;
|
|
}
|
|
|
|
var uefiNotSupported = radioButtonUEFIBoot.Visible && !radioButtonUEFIBoot.Enabled;
|
|
var uefiSecureNotSupported = radioButtonUEFISecureBoot.Visible && !radioButtonUEFISecureBoot.Enabled;
|
|
if (uefiNotSupported || uefiSecureNotSupported)
|
|
{
|
|
imgUnsupported.Visible = labelUnsupported.Visible = true;
|
|
labelUnsupported.Text = uefiNotSupported && uefiSecureNotSupported
|
|
? Messages.GUEFI_BOOT_MODES_UNSUPPORTED_WARNING
|
|
: uefiNotSupported
|
|
? Messages.GUEFI_BOOT_MODE_UNSUPPORTED_WARNING
|
|
: Messages.GUEFI_SECUREBOOT_MODE_UNSUPPORTED_WARNING;
|
|
}
|
|
else
|
|
{
|
|
imgUnsupported.Visible = labelUnsupported.Visible = false;
|
|
}
|
|
}
|
|
|
|
public static bool ShowBootModeOptions(IXenConnection connection)
|
|
{
|
|
return Helpers.NaplesOrGreater(connection) &&
|
|
(!Helpers.FeatureForbidden(connection, Host.UefiBootDisabled) || !Helpers.FeatureForbidden(connection, Host.UefiSecureBootDisabled));
|
|
}
|
|
|
|
private void radioButtonBIOSBoot_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
UpdateTpmControls();
|
|
}
|
|
}
|
|
}
|