2a83afe72a
The ppc_inst_as_str() macro tries to make printing variable length, aka "prefixed", instructions convenient. It mostly succeeds, but it does hide an on-stack buffer, which triggers stack protector. More problematically it doesn't compile at all with GCC 12, with -Wdangling-pointer, due to the fact that it returns the char buffer declared inside the macro: arch/powerpc/kernel/trace/ftrace.c: In function '__ftrace_modify_call': ./include/linux/printk.h:475:44: error: using a dangling pointer to '__str' [-Werror=dangling-pointer=] 475 | #define printk(fmt, ...) printk_index_wrap(_printk, fmt, ##__VA_ARGS__) ... arch/powerpc/kernel/trace/ftrace.c:567:17: note: in expansion of macro 'pr_err' 567 | pr_err("Not expected bl: opcode is %s\n", ppc_inst_as_str(op)); | ^~~~~~ ./arch/powerpc/include/asm/inst.h:156:14: note: '__str' declared here 156 | char __str[PPC_INST_STR_LEN]; \ | ^~~~~ This could be fixed by having the caller declare the buffer, but in some places there'd need to be two buffers. In all cases where ppc_inst_as_str() is used the output is not really meant for user consumption, it's almost always indicative of a kernel bug. A simpler solution is to just print the value as an unsigned long. For normal instructions the output is identical. For prefixed instructions the value is printed as a single 64-bit quantity, whereas previously the low half was printed first. But that is good enough for debug output, especially as prefixed instructions will be rare in kernel code in practice. Old: c000000000111170 60420000 ori r2,r2,0 c000000000111174 04100001 e580fb00 .long 0xe580fb0004100001 New: c00000000010f90c 60420000 ori r2,r2,0 c00000000010f910 e580fb0004100001 .long 0xe580fb0004100001 Reported-by: Bagas Sanjaya <bagasdotme@gmail.com> Reported-by: Petr Mladek <pmladek@suse.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Tested-by: Bagas Sanjaya <bagasdotme@gmail.com> Link: https://lore.kernel.org/r/20220531065936.3674348-1-mpe@ellerman.id.au
171 lines
3.9 KiB
C
171 lines
3.9 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
#ifndef _ASM_POWERPC_INST_H
|
|
#define _ASM_POWERPC_INST_H
|
|
|
|
#include <asm/ppc-opcode.h>
|
|
#include <asm/reg.h>
|
|
#include <asm/disassemble.h>
|
|
#include <asm/uaccess.h>
|
|
|
|
#define ___get_user_instr(gu_op, dest, ptr) \
|
|
({ \
|
|
long __gui_ret; \
|
|
u32 __user *__gui_ptr = (u32 __user *)ptr; \
|
|
ppc_inst_t __gui_inst; \
|
|
unsigned int __prefix, __suffix; \
|
|
\
|
|
__chk_user_ptr(ptr); \
|
|
__gui_ret = gu_op(__prefix, __gui_ptr); \
|
|
if (__gui_ret == 0) { \
|
|
if (IS_ENABLED(CONFIG_PPC64) && (__prefix >> 26) == OP_PREFIX) { \
|
|
__gui_ret = gu_op(__suffix, __gui_ptr + 1); \
|
|
__gui_inst = ppc_inst_prefix(__prefix, __suffix); \
|
|
} else { \
|
|
__gui_inst = ppc_inst(__prefix); \
|
|
} \
|
|
if (__gui_ret == 0) \
|
|
(dest) = __gui_inst; \
|
|
} \
|
|
__gui_ret; \
|
|
})
|
|
|
|
#define get_user_instr(x, ptr) ___get_user_instr(get_user, x, ptr)
|
|
|
|
#define __get_user_instr(x, ptr) ___get_user_instr(__get_user, x, ptr)
|
|
|
|
/*
|
|
* Instruction data type for POWER
|
|
*/
|
|
|
|
#if defined(CONFIG_PPC64) || defined(__CHECKER__)
|
|
static inline u32 ppc_inst_val(ppc_inst_t x)
|
|
{
|
|
return x.val;
|
|
}
|
|
|
|
#define ppc_inst(x) ((ppc_inst_t){ .val = (x) })
|
|
|
|
#else
|
|
static inline u32 ppc_inst_val(ppc_inst_t x)
|
|
{
|
|
return x;
|
|
}
|
|
#define ppc_inst(x) (x)
|
|
#endif
|
|
|
|
static inline int ppc_inst_primary_opcode(ppc_inst_t x)
|
|
{
|
|
return ppc_inst_val(x) >> 26;
|
|
}
|
|
|
|
#ifdef CONFIG_PPC64
|
|
#define ppc_inst_prefix(x, y) ((ppc_inst_t){ .val = (x), .suffix = (y) })
|
|
|
|
static inline u32 ppc_inst_suffix(ppc_inst_t x)
|
|
{
|
|
return x.suffix;
|
|
}
|
|
|
|
#else
|
|
#define ppc_inst_prefix(x, y) ((void)y, ppc_inst(x))
|
|
|
|
static inline u32 ppc_inst_suffix(ppc_inst_t x)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
#endif /* CONFIG_PPC64 */
|
|
|
|
static inline ppc_inst_t ppc_inst_read(const u32 *ptr)
|
|
{
|
|
if (IS_ENABLED(CONFIG_PPC64) && (*ptr >> 26) == OP_PREFIX)
|
|
return ppc_inst_prefix(*ptr, *(ptr + 1));
|
|
else
|
|
return ppc_inst(*ptr);
|
|
}
|
|
|
|
static inline bool ppc_inst_prefixed(ppc_inst_t x)
|
|
{
|
|
return IS_ENABLED(CONFIG_PPC64) && ppc_inst_primary_opcode(x) == OP_PREFIX;
|
|
}
|
|
|
|
static inline ppc_inst_t ppc_inst_swab(ppc_inst_t x)
|
|
{
|
|
return ppc_inst_prefix(swab32(ppc_inst_val(x)), swab32(ppc_inst_suffix(x)));
|
|
}
|
|
|
|
static inline bool ppc_inst_equal(ppc_inst_t x, ppc_inst_t y)
|
|
{
|
|
if (ppc_inst_val(x) != ppc_inst_val(y))
|
|
return false;
|
|
if (!ppc_inst_prefixed(x))
|
|
return true;
|
|
return ppc_inst_suffix(x) == ppc_inst_suffix(y);
|
|
}
|
|
|
|
static inline int ppc_inst_len(ppc_inst_t x)
|
|
{
|
|
return ppc_inst_prefixed(x) ? 8 : 4;
|
|
}
|
|
|
|
/*
|
|
* Return the address of the next instruction, if the instruction @value was
|
|
* located at @location.
|
|
*/
|
|
static inline u32 *ppc_inst_next(u32 *location, u32 *value)
|
|
{
|
|
ppc_inst_t tmp;
|
|
|
|
tmp = ppc_inst_read(value);
|
|
|
|
return (void *)location + ppc_inst_len(tmp);
|
|
}
|
|
|
|
static inline unsigned long ppc_inst_as_ulong(ppc_inst_t x)
|
|
{
|
|
if (IS_ENABLED(CONFIG_PPC32))
|
|
return ppc_inst_val(x);
|
|
else if (IS_ENABLED(CONFIG_CPU_LITTLE_ENDIAN))
|
|
return (u64)ppc_inst_suffix(x) << 32 | ppc_inst_val(x);
|
|
else
|
|
return (u64)ppc_inst_val(x) << 32 | ppc_inst_suffix(x);
|
|
}
|
|
|
|
static inline void ppc_inst_write(u32 *ptr, ppc_inst_t x)
|
|
{
|
|
if (!ppc_inst_prefixed(x))
|
|
*ptr = ppc_inst_val(x);
|
|
else
|
|
*(u64 *)ptr = ppc_inst_as_ulong(x);
|
|
}
|
|
|
|
static inline int __copy_inst_from_kernel_nofault(ppc_inst_t *inst, u32 *src)
|
|
{
|
|
unsigned int val, suffix;
|
|
|
|
/* See https://github.com/ClangBuiltLinux/linux/issues/1521 */
|
|
#if defined(CONFIG_CC_IS_CLANG) && CONFIG_CLANG_VERSION < 140000
|
|
val = suffix = 0;
|
|
#endif
|
|
__get_kernel_nofault(&val, src, u32, Efault);
|
|
if (IS_ENABLED(CONFIG_PPC64) && get_op(val) == OP_PREFIX) {
|
|
__get_kernel_nofault(&suffix, src + 1, u32, Efault);
|
|
*inst = ppc_inst_prefix(val, suffix);
|
|
} else {
|
|
*inst = ppc_inst(val);
|
|
}
|
|
return 0;
|
|
Efault:
|
|
return -EFAULT;
|
|
}
|
|
|
|
static inline int copy_inst_from_kernel_nofault(ppc_inst_t *inst, u32 *src)
|
|
{
|
|
if (unlikely(!is_kernel_addr((unsigned long)src)))
|
|
return -ERANGE;
|
|
|
|
return __copy_inst_from_kernel_nofault(inst, src);
|
|
}
|
|
|
|
#endif /* _ASM_POWERPC_INST_H */
|