mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-20 22:54:55 +07:00
6e4ede698d
Commit 959bf2fd03
("arm64: percpu: Rewrite per-cpu ops to allow use of
LSE atomics") introduced alternative code sequences for the arm64 percpu
atomics, so that the LSE instructions can be patched in at runtime if
they are supported by the CPU.
Unfortunately, when patching in the LSE sequence for a value-returning
pcpu atomic, the argument registers are the wrong way round. The
implementation of this_cpu_add_return() therefore ends up adding
uninitialised stack to the percpu variable and returning garbage.
As it turns out, there aren't very many users of the value-returning
percpu atomics in mainline and we only spotted this due to a failure in
the kprobes selftests. In this case, when attempting to single-step over
the out-of-line instruction slot, the debug monitors would not be
enabled because calling this_cpu_inc_return() on the kernel debug
monitor refcount would fail to detect the transition from 0. We would
consequently execute past the slot and take an undefined instruction
exception from the kernel, resulting in a BUG:
| kernel BUG at arch/arm64/kernel/traps.c:421!
| PREEMPT SMP
| pc : do_undefinstr+0x268/0x278
| lr : do_undefinstr+0x124/0x278
| Process swapper/0 (pid: 1, stack limit = 0x(____ptrval____))
| Call trace:
| do_undefinstr+0x268/0x278
| el1_undef+0x10/0x78
| 0xffff00000803c004
| init_kprobes+0x150/0x180
| do_one_initcall+0x74/0x178
| kernel_init_freeable+0x188/0x224
| kernel_init+0x10/0x100
| ret_from_fork+0x10/0x1c
Fix the argument order to get the value-returning pcpu atomics working
correctly when implemented using the LSE instructions.
Reported-by: Catalin Marinas <catalin.marinas@arm.com>
Tested-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
242 lines
7.7 KiB
C
242 lines
7.7 KiB
C
/*
|
|
* Copyright (C) 2013 ARM Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef __ASM_PERCPU_H
|
|
#define __ASM_PERCPU_H
|
|
|
|
#include <linux/preempt.h>
|
|
|
|
#include <asm/alternative.h>
|
|
#include <asm/cmpxchg.h>
|
|
#include <asm/stack_pointer.h>
|
|
|
|
static inline void set_my_cpu_offset(unsigned long off)
|
|
{
|
|
asm volatile(ALTERNATIVE("msr tpidr_el1, %0",
|
|
"msr tpidr_el2, %0",
|
|
ARM64_HAS_VIRT_HOST_EXTN)
|
|
:: "r" (off) : "memory");
|
|
}
|
|
|
|
static inline unsigned long __my_cpu_offset(void)
|
|
{
|
|
unsigned long off;
|
|
|
|
/*
|
|
* We want to allow caching the value, so avoid using volatile and
|
|
* instead use a fake stack read to hazard against barrier().
|
|
*/
|
|
asm(ALTERNATIVE("mrs %0, tpidr_el1",
|
|
"mrs %0, tpidr_el2",
|
|
ARM64_HAS_VIRT_HOST_EXTN)
|
|
: "=r" (off) :
|
|
"Q" (*(const unsigned long *)current_stack_pointer));
|
|
|
|
return off;
|
|
}
|
|
#define __my_cpu_offset __my_cpu_offset()
|
|
|
|
#define PERCPU_RW_OPS(sz) \
|
|
static inline unsigned long __percpu_read_##sz(void *ptr) \
|
|
{ \
|
|
return READ_ONCE(*(u##sz *)ptr); \
|
|
} \
|
|
\
|
|
static inline void __percpu_write_##sz(void *ptr, unsigned long val) \
|
|
{ \
|
|
WRITE_ONCE(*(u##sz *)ptr, (u##sz)val); \
|
|
}
|
|
|
|
#define __PERCPU_OP_CASE(w, sfx, name, sz, op_llsc, op_lse) \
|
|
static inline void \
|
|
__percpu_##name##_case_##sz(void *ptr, unsigned long val) \
|
|
{ \
|
|
unsigned int loop; \
|
|
u##sz tmp; \
|
|
\
|
|
asm volatile (ARM64_LSE_ATOMIC_INSN( \
|
|
/* LL/SC */ \
|
|
"1: ldxr" #sfx "\t%" #w "[tmp], %[ptr]\n" \
|
|
#op_llsc "\t%" #w "[tmp], %" #w "[tmp], %" #w "[val]\n" \
|
|
" stxr" #sfx "\t%w[loop], %" #w "[tmp], %[ptr]\n" \
|
|
" cbnz %w[loop], 1b", \
|
|
/* LSE atomics */ \
|
|
#op_lse "\t%" #w "[val], %[ptr]\n" \
|
|
__nops(3)) \
|
|
: [loop] "=&r" (loop), [tmp] "=&r" (tmp), \
|
|
[ptr] "+Q"(*(u##sz *)ptr) \
|
|
: [val] "r" ((u##sz)(val))); \
|
|
}
|
|
|
|
#define __PERCPU_RET_OP_CASE(w, sfx, name, sz, op_llsc, op_lse) \
|
|
static inline u##sz \
|
|
__percpu_##name##_return_case_##sz(void *ptr, unsigned long val) \
|
|
{ \
|
|
unsigned int loop; \
|
|
u##sz ret; \
|
|
\
|
|
asm volatile (ARM64_LSE_ATOMIC_INSN( \
|
|
/* LL/SC */ \
|
|
"1: ldxr" #sfx "\t%" #w "[ret], %[ptr]\n" \
|
|
#op_llsc "\t%" #w "[ret], %" #w "[ret], %" #w "[val]\n" \
|
|
" stxr" #sfx "\t%w[loop], %" #w "[ret], %[ptr]\n" \
|
|
" cbnz %w[loop], 1b", \
|
|
/* LSE atomics */ \
|
|
#op_lse "\t%" #w "[val], %" #w "[ret], %[ptr]\n" \
|
|
#op_llsc "\t%" #w "[ret], %" #w "[ret], %" #w "[val]\n" \
|
|
__nops(2)) \
|
|
: [loop] "=&r" (loop), [ret] "=&r" (ret), \
|
|
[ptr] "+Q"(*(u##sz *)ptr) \
|
|
: [val] "r" ((u##sz)(val))); \
|
|
\
|
|
return ret; \
|
|
}
|
|
|
|
#define PERCPU_OP(name, op_llsc, op_lse) \
|
|
__PERCPU_OP_CASE(w, b, name, 8, op_llsc, op_lse) \
|
|
__PERCPU_OP_CASE(w, h, name, 16, op_llsc, op_lse) \
|
|
__PERCPU_OP_CASE(w, , name, 32, op_llsc, op_lse) \
|
|
__PERCPU_OP_CASE( , , name, 64, op_llsc, op_lse)
|
|
|
|
#define PERCPU_RET_OP(name, op_llsc, op_lse) \
|
|
__PERCPU_RET_OP_CASE(w, b, name, 8, op_llsc, op_lse) \
|
|
__PERCPU_RET_OP_CASE(w, h, name, 16, op_llsc, op_lse) \
|
|
__PERCPU_RET_OP_CASE(w, , name, 32, op_llsc, op_lse) \
|
|
__PERCPU_RET_OP_CASE( , , name, 64, op_llsc, op_lse)
|
|
|
|
PERCPU_RW_OPS(8)
|
|
PERCPU_RW_OPS(16)
|
|
PERCPU_RW_OPS(32)
|
|
PERCPU_RW_OPS(64)
|
|
PERCPU_OP(add, add, stadd)
|
|
PERCPU_OP(andnot, bic, stclr)
|
|
PERCPU_OP(or, orr, stset)
|
|
PERCPU_RET_OP(add, add, ldadd)
|
|
|
|
#undef PERCPU_RW_OPS
|
|
#undef __PERCPU_OP_CASE
|
|
#undef __PERCPU_RET_OP_CASE
|
|
#undef PERCPU_OP
|
|
#undef PERCPU_RET_OP
|
|
|
|
/*
|
|
* It would be nice to avoid the conditional call into the scheduler when
|
|
* re-enabling preemption for preemptible kernels, but doing that in a way
|
|
* which builds inside a module would mean messing directly with the preempt
|
|
* count. If you do this, peterz and tglx will hunt you down.
|
|
*/
|
|
#define this_cpu_cmpxchg_double_8(ptr1, ptr2, o1, o2, n1, n2) \
|
|
({ \
|
|
int __ret; \
|
|
preempt_disable_notrace(); \
|
|
__ret = cmpxchg_double_local( raw_cpu_ptr(&(ptr1)), \
|
|
raw_cpu_ptr(&(ptr2)), \
|
|
o1, o2, n1, n2); \
|
|
preempt_enable_notrace(); \
|
|
__ret; \
|
|
})
|
|
|
|
#define _pcp_protect(op, pcp, ...) \
|
|
({ \
|
|
preempt_disable_notrace(); \
|
|
op(raw_cpu_ptr(&(pcp)), __VA_ARGS__); \
|
|
preempt_enable_notrace(); \
|
|
})
|
|
|
|
#define _pcp_protect_return(op, pcp, args...) \
|
|
({ \
|
|
typeof(pcp) __retval; \
|
|
preempt_disable_notrace(); \
|
|
__retval = (typeof(pcp))op(raw_cpu_ptr(&(pcp)), ##args); \
|
|
preempt_enable_notrace(); \
|
|
__retval; \
|
|
})
|
|
|
|
#define this_cpu_read_1(pcp) \
|
|
_pcp_protect_return(__percpu_read_8, pcp)
|
|
#define this_cpu_read_2(pcp) \
|
|
_pcp_protect_return(__percpu_read_16, pcp)
|
|
#define this_cpu_read_4(pcp) \
|
|
_pcp_protect_return(__percpu_read_32, pcp)
|
|
#define this_cpu_read_8(pcp) \
|
|
_pcp_protect_return(__percpu_read_64, pcp)
|
|
|
|
#define this_cpu_write_1(pcp, val) \
|
|
_pcp_protect(__percpu_write_8, pcp, (unsigned long)val)
|
|
#define this_cpu_write_2(pcp, val) \
|
|
_pcp_protect(__percpu_write_16, pcp, (unsigned long)val)
|
|
#define this_cpu_write_4(pcp, val) \
|
|
_pcp_protect(__percpu_write_32, pcp, (unsigned long)val)
|
|
#define this_cpu_write_8(pcp, val) \
|
|
_pcp_protect(__percpu_write_64, pcp, (unsigned long)val)
|
|
|
|
#define this_cpu_add_1(pcp, val) \
|
|
_pcp_protect(__percpu_add_case_8, pcp, val)
|
|
#define this_cpu_add_2(pcp, val) \
|
|
_pcp_protect(__percpu_add_case_16, pcp, val)
|
|
#define this_cpu_add_4(pcp, val) \
|
|
_pcp_protect(__percpu_add_case_32, pcp, val)
|
|
#define this_cpu_add_8(pcp, val) \
|
|
_pcp_protect(__percpu_add_case_64, pcp, val)
|
|
|
|
#define this_cpu_add_return_1(pcp, val) \
|
|
_pcp_protect_return(__percpu_add_return_case_8, pcp, val)
|
|
#define this_cpu_add_return_2(pcp, val) \
|
|
_pcp_protect_return(__percpu_add_return_case_16, pcp, val)
|
|
#define this_cpu_add_return_4(pcp, val) \
|
|
_pcp_protect_return(__percpu_add_return_case_32, pcp, val)
|
|
#define this_cpu_add_return_8(pcp, val) \
|
|
_pcp_protect_return(__percpu_add_return_case_64, pcp, val)
|
|
|
|
#define this_cpu_and_1(pcp, val) \
|
|
_pcp_protect(__percpu_andnot_case_8, pcp, ~val)
|
|
#define this_cpu_and_2(pcp, val) \
|
|
_pcp_protect(__percpu_andnot_case_16, pcp, ~val)
|
|
#define this_cpu_and_4(pcp, val) \
|
|
_pcp_protect(__percpu_andnot_case_32, pcp, ~val)
|
|
#define this_cpu_and_8(pcp, val) \
|
|
_pcp_protect(__percpu_andnot_case_64, pcp, ~val)
|
|
|
|
#define this_cpu_or_1(pcp, val) \
|
|
_pcp_protect(__percpu_or_case_8, pcp, val)
|
|
#define this_cpu_or_2(pcp, val) \
|
|
_pcp_protect(__percpu_or_case_16, pcp, val)
|
|
#define this_cpu_or_4(pcp, val) \
|
|
_pcp_protect(__percpu_or_case_32, pcp, val)
|
|
#define this_cpu_or_8(pcp, val) \
|
|
_pcp_protect(__percpu_or_case_64, pcp, val)
|
|
|
|
#define this_cpu_xchg_1(pcp, val) \
|
|
_pcp_protect_return(xchg_relaxed, pcp, val)
|
|
#define this_cpu_xchg_2(pcp, val) \
|
|
_pcp_protect_return(xchg_relaxed, pcp, val)
|
|
#define this_cpu_xchg_4(pcp, val) \
|
|
_pcp_protect_return(xchg_relaxed, pcp, val)
|
|
#define this_cpu_xchg_8(pcp, val) \
|
|
_pcp_protect_return(xchg_relaxed, pcp, val)
|
|
|
|
#define this_cpu_cmpxchg_1(pcp, o, n) \
|
|
_pcp_protect_return(cmpxchg_relaxed, pcp, o, n)
|
|
#define this_cpu_cmpxchg_2(pcp, o, n) \
|
|
_pcp_protect_return(cmpxchg_relaxed, pcp, o, n)
|
|
#define this_cpu_cmpxchg_4(pcp, o, n) \
|
|
_pcp_protect_return(cmpxchg_relaxed, pcp, o, n)
|
|
#define this_cpu_cmpxchg_8(pcp, o, n) \
|
|
_pcp_protect_return(cmpxchg_relaxed, pcp, o, n)
|
|
|
|
#include <asm-generic/percpu.h>
|
|
|
|
#endif /* __ASM_PERCPU_H */
|