]> xenbits.xensource.com Git - xen.git/commitdiff
passthrough/x86: stop pirq iteration immediately in case of error
authorJulien Grall <jgrall@amazon.com>
Tue, 25 Jan 2022 13:47:33 +0000 (14:47 +0100)
committerJan Beulich <jbeulich@suse.com>
Tue, 25 Jan 2022 13:47:33 +0000 (14:47 +0100)
pt_pirq_iterate() will iterate in batch over all the PIRQs. The outer
loop will bail out if 'rc' is non-zero but the inner loop will continue.

This means 'rc' will get clobbered and we may miss any errors (such as
-ERESTART in the case of the callback pci_clean_dpci_irq()).

This is CVE-2022-23035 / XSA-395.

Fixes: c24536b636f2 ("replace d->nr_pirqs sized arrays with radix tree")
Fixes: f6dd295381f4 ("dpci: replace tasklet with softirq")
Signed-off-by: Julien Grall <jgrall@amazon.com>
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Roger Pau Monné <roger.pau@citrix.com>
master commit: 9480a1a519cf016623f657dc544cb372a82b5708
master date: 2022-01-25 13:27:02 +0100

xen/drivers/passthrough/io.c

index 4290c7c710566c2875dfa71e9a074f3270852c5f..d613d1e049bc0e2cf11886c8b324ea3fe3b7636b 100644 (file)
@@ -803,7 +803,11 @@ int pt_pirq_iterate(struct domain *d,
 
             pirq = pirqs[i]->pirq;
             if ( (pirq_dpci->flags & HVM_IRQ_DPCI_MAPPED) )
+            {
                 rc = cb(d, pirq_dpci, arg);
+                if ( rc )
+                    break;
+            }
         }
     } while ( !rc && ++pirq < d->nr_pirqs && n == ARRAY_SIZE(pirqs) );