]> git.baikalelectronics.ru Git - kernel.git/commit
arm64: Mark __stack_chk_guard as __ro_after_init
authorDan Li <ashimida@linux.alibaba.com>
Tue, 14 Sep 2021 09:44:02 +0000 (17:44 +0800)
committerCatalin Marinas <catalin.marinas@arm.com>
Thu, 16 Sep 2021 16:59:17 +0000 (17:59 +0100)
commit9e9732f9e44f7e9f8a485e21a24924b0be3d6aff
tree4209672be7c9ba83bf9eb91fdbac330258594ef8
parent09b8f550d344845bcba68ec00f6519c67230cc3f
arm64: Mark __stack_chk_guard as __ro_after_init

__stack_chk_guard is setup once while init stage and never changed
after that.

Although the modification of this variable at runtime will usually
cause the kernel to crash (so does the attacker), it should be marked
as __ro_after_init, and it should not affect performance if it is
placed in the ro_after_init section.

Signed-off-by: Dan Li <ashimida@linux.alibaba.com>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Link: https://lore.kernel.org/r/1631612642-102881-1-git-send-email-ashimida@linux.alibaba.com
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/kernel/process.c