0891920741
51e517e6-AMD-IOMMU-allocate-IRTEs.patch 51e5183f-AMD-IOMMU-untie-remap-and-vector-maps.patch 51e63df6-VMX-fix-interaction-of-APIC-V-and-Viridian-emulation.patch 52146070-ACPI-fix-acpi_os_map_memory.patch 5214d26a-VT-d-warn-about-CFI-being-enabled-by-firmware.patch 5215d094-Nested-VMX-Check-whether-interrupt-is-blocked-by-TPR.patch 5215d0c5-Nested-VMX-Force-check-ISR-when-L2-is-running.patch 5215d135-Nested-VMX-Clear-APIC-v-control-bit-in-vmcs02.patch 5215d2d5-Nested-VMX-Update-APIC-v-RVI-SVI-when-vmexit-to-L1.patch 5215d8b0-Correct-X2-APIC-HVM-emulation.patch - Dropped 520d417d-xen-Add-stdbool.h-workaround-for-BSD.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=267
51 lines
1.8 KiB
Diff
51 lines
1.8 KiB
Diff
# Commit c9c6abab583d27fdca1d979a7f1d18ae30f54e9b
|
|
# Date 2013-08-21 16:44:58 +0200
|
|
# Author Jan Beulich <jbeulich@suse.com>
|
|
# Committer Jan Beulich <jbeulich@suse.com>
|
|
VT-d: warn about Compatibility Format Interrupts being enabled by firmware
|
|
|
|
... as being insecure.
|
|
|
|
Also drop the second (redundant) read DMAR_GSTS_REG from enable_intremap().
|
|
|
|
Signed-off-by: Jan Beulich <jbeulich@suse.com>
|
|
Acked-by Xiantao Zhang <xiantao.zhang@intel.com>
|
|
|
|
--- a/xen/drivers/passthrough/vtd/intremap.c
|
|
+++ b/xen/drivers/passthrough/vtd/intremap.c
|
|
@@ -706,8 +706,8 @@ int enable_intremap(struct iommu *iommu,
|
|
|
|
if ( !platform_supports_intremap() )
|
|
{
|
|
- dprintk(XENLOG_ERR VTDPREFIX,
|
|
- "Platform firmware does not support interrupt remapping\n");
|
|
+ printk(XENLOG_ERR VTDPREFIX
|
|
+ " Platform firmware does not support interrupt remapping\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
@@ -718,15 +718,19 @@ int enable_intremap(struct iommu *iommu,
|
|
if ( (sts & DMA_GSTS_IRES) && ir_ctrl->iremap_maddr )
|
|
return 0;
|
|
|
|
- sts = dmar_readl(iommu->reg, DMAR_GSTS_REG);
|
|
if ( !(sts & DMA_GSTS_QIES) )
|
|
{
|
|
- dprintk(XENLOG_ERR VTDPREFIX,
|
|
- "Queued invalidation is not enabled, should not enable "
|
|
- "interrupt remapping\n");
|
|
+ printk(XENLOG_ERR VTDPREFIX
|
|
+ " Queued invalidation is not enabled on IOMMU #%u:"
|
|
+ " Should not enable interrupt remapping\n", iommu->index);
|
|
return -EINVAL;
|
|
}
|
|
|
|
+ if ( !eim && (sts & DMA_GSTS_CFIS) )
|
|
+ printk(XENLOG_WARNING VTDPREFIX
|
|
+ " Compatibility Format Interrupts permitted on IOMMU #%u:"
|
|
+ " Device pass-through will be insecure\n", iommu->index);
|
|
+
|
|
if ( ir_ctrl->iremap_maddr == 0 )
|
|
{
|
|
drhd = iommu_to_drhd(iommu);
|