]> xenbits.xensource.com Git - xen.git/commitdiff
xen/arm: vgic: Sanitize target mask used to send SGI
authorJulien Grall <julien.grall@arm.com>
Tue, 20 Jun 2017 14:44:06 +0000 (16:44 +0200)
committerJan Beulich <jbeulich@suse.com>
Tue, 20 Jun 2017 14:44:06 +0000 (16:44 +0200)
The current function vgic_to_sgi does not sanitize the target mask and
may therefore get an invalid vCPU ID. This will result to an out of
bound access of d->vcpu[...] as there is no check whether the vCPU ID is
within the maximum supported by the guest.

This was introduced by commit ea37fd2111 "xen/arm: split vgic driver
into generic and vgic-v2 driver".

Signed-off-by: Julien Grall <julien.grall@arm.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
master commit: 6fb94196730f30929f1e617fd1d05daf55376664
master date: 2017-06-20 14:47:07 +0200

xen/arch/arm/vgic.c

index a6835a806cd2a1b3a87313281cafc544b38f3b97..55efa7fef8e27a2f17c7183d2f0235a2019e5a5f 100644 (file)
@@ -340,7 +340,8 @@ int vgic_to_sgi(struct vcpu *v, register_t sgir, enum gic_sgi_mode irqmode, int
         for_each_set_bit( i, &bitmap, sizeof(target->list) * 8 )
         {
             vcpuid = base + i;
-            if ( d->vcpu[vcpuid] == NULL || !is_vcpu_online(d->vcpu[vcpuid]) )
+            if ( vcpuid >= d->max_vcpus || d->vcpu[vcpuid] == NULL ||
+                 !is_vcpu_online(d->vcpu[vcpuid]) )
             {
                 gprintk(XENLOG_WARNING, "VGIC: write r=%"PRIregister" \
                         target->list=%hx, wrong CPUTargetList \n",