File 5a4caa5e-x86-IRQ-conditionally-preserve-access-perm.patch of Package xen.7317
# Commit 3443e68a778572a6e082d7dfcf9ce794eca62f5f
# Date 2018-01-03 11:03:10 +0100
# Author Jan Beulich <jbeulich@suse.com>
# Committer Jan Beulich <jbeulich@suse.com>
x86/IRQ: conditionally preserve access permission on map error paths
Permissions that had been granted before should not be revoked when
handling unrelated errors.
Reported-by: HW42 <hw42@ipsumj.de>
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
--- a/xen/arch/x86/irq.c
+++ b/xen/arch/x86/irq.c
@@ -1902,6 +1902,7 @@ int map_domain_pirq(
struct irq_desc *desc;
unsigned long flags;
DECLARE_BITMAP(prepared, MAX_MSI_IRQS) = {};
+ DECLARE_BITMAP(granted, MAX_MSI_IRQS) = {};
ASSERT(spin_is_locked(&d->event_lock));
@@ -1935,13 +1936,17 @@ int map_domain_pirq(
return ret;
}
- ret = irq_permit_access(d, irq);
- if ( ret )
+ if ( likely(!irq_access_permitted(d, irq)) )
{
- printk(XENLOG_G_ERR
- "dom%d: could not permit access to IRQ%d (pirq %d)\n",
- d->domain_id, irq, pirq);
- return ret;
+ ret = irq_permit_access(d, irq);
+ if ( ret )
+ {
+ printk(XENLOG_G_ERR
+ "dom%d: could not permit access to IRQ%d (pirq %d)\n",
+ d->domain_id, irq, pirq);
+ return ret;
+ }
+ __set_bit(0, granted);
}
ret = prepare_domain_irq_pirq(d, irq, pirq, &info);
@@ -2026,10 +2031,15 @@ int map_domain_pirq(
__set_bit(nr, prepared);
msi_desc[nr].irq = irq;
- if ( irq_permit_access(d, irq) != 0 )
- printk(XENLOG_G_WARNING
- "dom%d: could not permit access to IRQ%d (pirq %d)\n",
- d->domain_id, irq, pirq);
+ if ( likely(!irq_access_permitted(d, irq)) )
+ {
+ if ( irq_permit_access(d, irq) )
+ printk(XENLOG_G_WARNING
+ "dom%d: could not permit access to IRQ%d (pirq %d)\n",
+ d->domain_id, irq, pirq);
+ else
+ __set_bit(nr, granted);
+ }
desc = irq_to_desc(irq);
spin_lock_irqsave(&desc->lock, flags);
@@ -2058,7 +2068,8 @@ int map_domain_pirq(
}
while ( nr )
{
- if ( irq >= 0 && irq_deny_access(d, irq) )
+ if ( irq >= 0 && test_bit(nr, granted) &&
+ irq_deny_access(d, irq) )
printk(XENLOG_G_ERR
"dom%d: could not revoke access to IRQ%d (pirq %d)\n",
d->domain_id, irq, pirq);
@@ -2089,7 +2100,7 @@ done:
if ( test_bit(0, prepared) )
cleanup_domain_irq_pirq(d, irq, info);
revoke:
- if ( irq_deny_access(d, irq) )
+ if ( test_bit(0, granted) && irq_deny_access(d, irq) )
printk(XENLOG_G_ERR
"dom%d: could not revoke access to IRQ%d (pirq %d)\n",
d->domain_id, irq, pirq);