]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
KVM: x86: fix shift out of bounds reported by UBSAN
authorPaolo Bonzini <pbonzini@redhat.com>
Tue, 22 Dec 2020 10:20:43 +0000 (05:20 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 12 Jan 2021 19:10:24 +0000 (20:10 +0100)
commit 2f80d502d627f30257ba7e3655e71c373b7d1a5a upstream.

Since we know that e >= s, we can reassociate the left shift,
changing the shifted number from 1 to 2 in exchange for
decreasing the right hand side by 1.

Reported-by: syzbot+e87846c48bf72bc85311@syzkaller.appspotmail.com
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/x86/kvm/mmu.h

index 0b62c817f63f598e8518c15ea97e0f5c8a625729..05a02b8ace6ba5f5d9d2b3ff905f1455777c7447 100644 (file)
@@ -53,7 +53,7 @@ static inline u64 rsvd_bits(int s, int e)
        if (e < s)
                return 0;
 
-       return ((1ULL << (e - s + 1)) - 1) << s;
+       return ((2ULL << (e - s)) - 1) << s;
 }
 
 void kvm_mmu_set_mmio_spte_mask(u64 mmio_mask, u64 mmio_value);