]> xenbits.xensource.com Git - people/pauldu/linux.git/commit
KVM: s390: vsie: Fix length of facility list shadowed
authorNina Schoetterl-Glausch <nsg@linux.ibm.com>
Tue, 19 Dec 2023 14:08:51 +0000 (15:08 +0100)
committerJanosch Frank <frankja@linux.ibm.com>
Sat, 23 Dec 2023 09:41:09 +0000 (10:41 +0100)
commit682dbf430d27bc0e23d8d6921116b4f77f5dc9c6
tree7d15afcec67aafd2fd7027251e61c14c032adddf
parent2731d605d5478052a10ac5a7c80f7aa7e1788cc5
KVM: s390: vsie: Fix length of facility list shadowed

The length of the facility list accessed when interpretively executing
STFLE is the same as the hosts facility list (in case of format-0)
The memory following the facility list doesn't need to be accessible.
The current VSIE implementation accesses a fixed length that exceeds the
guest/host facility list length and can therefore wrongly inject a
validity intercept.
Instead, find out the host facility list length by running STFLE and
copy only as much as necessary when shadowing.

Acked-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
Acked-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Nina Schoetterl-Glausch <nsg@linux.ibm.com>
Reviewed-by: Janosch Frank <frankja@linux.ibm.com>
Link: https://lore.kernel.org/r/20231219140854.1042599-3-nsg@linux.ibm.com
Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
Message-ID: <20231219140854.1042599-3-nsg@linux.ibm.com>
arch/s390/include/asm/facility.h
arch/s390/kernel/Makefile
arch/s390/kernel/facility.c [new file with mode: 0644]
arch/s390/kvm/vsie.c