]> git.baikalelectronics.ru Git - kernel.git/commit
s390/kaslr: add support for R_390_JMP_SLOT relocation type
authorGerald Schaefer <gerald.schaefer@de.ibm.com>
Wed, 6 May 2020 11:45:52 +0000 (13:45 +0200)
committerVasily Gorbik <gor@linux.ibm.com>
Wed, 20 May 2020 08:13:27 +0000 (10:13 +0200)
commit4ccff669859d25efa4fb18f038dc4d2939718596
tree10a9330ab04f8e478652931c8ccd6526023cb140
parent31ffcb75015b07df79da5fb0ced4f3e9096f2f72
s390/kaslr: add support for R_390_JMP_SLOT relocation type

With certain kernel configurations, the R_390_JMP_SLOT relocation type
might be generated, which is not expected by the KASLR relocation code,
and the kernel stops with the message "Unknown relocation type".

This was found with a zfcpdump kernel config, where CONFIG_MODULES=n
and CONFIG_VFIO=n. In that case, symbol_get() is used on undefined
__weak symbols in virt/kvm/vfio.c, which results in the generation
of R_390_JMP_SLOT relocation types.

Fix this by handling R_390_JMP_SLOT similar to R_390_GLOB_DAT.

Fixes: 82680dc5a8eb ("s390/kernel: build a relocatable kernel")
Cc: <stable@vger.kernel.org> # v5.2+
Signed-off-by: Gerald Schaefer <gerald.schaefer@de.ibm.com>
Reviewed-by: Philipp Rudo <prudo@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
arch/s390/kernel/machine_kexec_reloc.c