]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
KVM: s390: Initialize KVM_S390_GET_CMMA_BITS memory
authorChristian Borntraeger <borntraeger@linux.ibm.com>
Thu, 11 Jun 2026 10:50:36 +0000 (12:50 +0200)
committerClaudio Imbrenda <imbrenda@linux.ibm.com>
Thu, 11 Jun 2026 13:09:53 +0000 (15:09 +0200)
kvm_s390_get_cmma_bits() allocates its output buffer with vmalloc(),
which does not zero the returned pages:

values = vmalloc(args->count);

In the non-peek (migration) path, dat_get_cmma() reports a byte count
spanning from the first to the last dirty page, but __dat_get_cmma_pte()
writes values[gfn - start] only for pages whose CMMA dirty bit is set.
The walk uses DAT_WALK_IGN_HOLES, so clean and unmapped pages that lie
between two dirty pages within the reported span are visited but never
store their byte.  Those gaps (up to KVM_S390_MAX_BIT_DISTANCE pages
each) stay uninitialized yet fall inside [0, count) and are copied out
by copy_to_user(), disclosing stale kernel memory to user space.

Before the switch to the new gmap implementation the buffer was fully
populated for every gfn in the span, so no uninitialized bytes were
exposed; the dirty-only walk introduced the leak.

Use vzalloc() so the gaps read back as zero.

Fixes: e38c884df921 ("KVM: s390: Switch to new gmap")
Cc: stable@vger.kernel.org
Signed-off-by: Christian Borntraeger <borntraeger@linux.ibm.com>
Reviewed-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
Signed-off-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
Message-ID: <20260611105036.11491-1-borntraeger@linux.ibm.com>

arch/s390/kvm/kvm-s390.c

index 6de36421548c2b2ae1b5acfa1ed1d75d83610a2f..d503e4d0072a7a2c8202df94ab3d8e16aa1792fc 100644 (file)
@@ -2263,7 +2263,7 @@ static int kvm_s390_get_cmma_bits(struct kvm *kvm,
                return 0;
        }
 
-       values = vmalloc(args->count);
+       values = vzalloc(args->count);
        if (!values)
                return -ENOMEM;