OSDN Git Service

KVM: arm64: Ensure user_mem_abort() return value is initialised
authorWill Deacon <will@kernel.org>
Wed, 30 Sep 2020 10:24:42 +0000 (11:24 +0100)
committerMarc Zyngier <maz@kernel.org>
Fri, 2 Oct 2020 08:25:25 +0000 (09:25 +0100)
commitffd1b63a5860968068e943eab33383a766d30f64
tree3b2450a4440c5d83fd1335df552a0ca69b4e5ee5
parentb259d137e91d80bf92eac453ffab179eb7941ede
KVM: arm64: Ensure user_mem_abort() return value is initialised

If a change in the MMU notifier sequence number forces user_mem_abort()
to return early when attempting to handle a stage-2 fault, we return
uninitialised stack to kvm_handle_guest_abort(), which could potentially
result in the injection of an external abort into the guest or a spurious
return to userspace. Neither or these are what we want to do.

Initialise 'ret' to 0 in user_mem_abort() so that bailing due to a
change in the MMU notrifier sequence number is treated as though the
fault was handled.

Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Will Deacon <will@kernel.org>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Reviewed-by: Alexandru Elisei <alexandru.elisei@arm.com>
Reviewed-by: Gavin Shan <gshan@redhat.com>
Cc: Gavin Shan <gshan@redhat.com>
Cc: Alexandru Elisei <alexandru.elisei@arm.com>
Link: https://lore.kernel.org/r/20200930102442.16142-1-will@kernel.org
arch/arm64/kvm/mmu.c