From: Jan Beulich Date: Wed, 3 Jan 2018 10:03:10 +0000 (+0100) Subject: x86/IRQ: conditionally preserve access permission on map error paths X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~872 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3443e68a778572a6e082d7dfcf9ce794eca62f5f;p=xen.git 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 Signed-off-by: Jan Beulich Acked-by: Andrew Cooper --- diff --git a/xen/arch/x86/irq.c b/xen/arch/x86/irq.c index 1c5213e9ac..87ef2e801f 100644 --- a/xen/arch/x86/irq.c +++ b/xen/arch/x86/irq.c @@ -1918,6 +1918,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)); @@ -1951,13 +1952,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); @@ -2042,10 +2047,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); @@ -2074,7 +2084,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); @@ -2105,7 +2116,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);