]> git.baikalelectronics.ru Git - kernel.git/commit
arm64: kernel: Don't toggle PAN on systems with UAO
authorJames Morse <james.morse@arm.com>
Fri, 5 Feb 2016 14:58:50 +0000 (14:58 +0000)
committerCatalin Marinas <catalin.marinas@arm.com>
Thu, 18 Feb 2016 17:27:05 +0000 (17:27 +0000)
commit6cdbc9cbf5191d8db69e51242795853ad9cb4009
treef24a8ab766c2e44e3aa5eaa49c852836023db055
parent36ec4f2c9f273942251e363fdebd4d6c510d0b75
arm64: kernel: Don't toggle PAN on systems with UAO

If a CPU supports both Privileged Access Never (PAN) and User Access
Override (UAO), we don't need to disable/re-enable PAN round all
copy_to_user() like calls.

UAO alternatives cause these calls to use the 'unprivileged' load/store
instructions, which are overridden to be the privileged kind when
fs==KERNEL_DS.

This patch changes the copy_to_user() calls to have their PAN toggling
depend on a new composite 'feature' ARM64_ALT_PAN_NOT_UAO.

If both features are detected, PAN will be enabled, but the copy_to_user()
alternatives will not be applied. This means PAN will be enabled all the
time for these functions. If only PAN is detected, the toggling will be
enabled as normal.

This will save the time taken to disable/re-enable PAN, and allow us to
catch copy_to_user() accesses that occur with fs==KERNEL_DS.

Futex and swp-emulation code continue to hang their PAN toggling code on
ARM64_HAS_PAN.

Signed-off-by: James Morse <james.morse@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/include/asm/cpufeature.h
arch/arm64/include/asm/uaccess.h
arch/arm64/kernel/cpufeature.c
arch/arm64/lib/clear_user.S
arch/arm64/lib/copy_from_user.S
arch/arm64/lib/copy_in_user.S
arch/arm64/lib/copy_to_user.S
arch/arm64/mm/fault.c