mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
We have three architectures using function descriptors, each with its own type and name. Add a common typedef that can be used in generic code. Also add a stub typedef for architecture without function descriptors, to avoid a forest of #ifdefs. It replaces the similar 'func_desc_t' previously defined in arch/powerpc/kernel/module_64.c Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> Reviewed-by: Kees Cook <keescook@chromium.org> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Helge Deller <deller@gmx.de> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/f1f91b142b3c1082bdc1586ce71c9bac1e75213c.1644928018.git.christophe.leroy@csgroup.eu
52 lines
1.6 KiB
C
52 lines
1.6 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_IA64_SECTIONS_H
|
|
#define _ASM_IA64_SECTIONS_H
|
|
|
|
/*
|
|
* Copyright (C) 1998-2003 Hewlett-Packard Co
|
|
* David Mosberger-Tang <davidm@hpl.hp.com>
|
|
*/
|
|
|
|
#include <linux/elf.h>
|
|
#include <linux/uaccess.h>
|
|
|
|
typedef struct fdesc func_desc_t;
|
|
|
|
#include <asm-generic/sections.h>
|
|
|
|
extern char __phys_per_cpu_start[];
|
|
#ifdef CONFIG_SMP
|
|
extern char __cpu0_per_cpu[];
|
|
#endif
|
|
extern char __start___vtop_patchlist[], __end___vtop_patchlist[];
|
|
extern char __start___rse_patchlist[], __end___rse_patchlist[];
|
|
extern char __start___mckinley_e9_bundles[], __end___mckinley_e9_bundles[];
|
|
extern char __start___phys_stack_reg_patchlist[], __end___phys_stack_reg_patchlist[];
|
|
extern char __start_gate_section[];
|
|
extern char __start_gate_mckinley_e9_patchlist[], __end_gate_mckinley_e9_patchlist[];
|
|
extern char __start_gate_vtop_patchlist[], __end_gate_vtop_patchlist[];
|
|
extern char __start_gate_fsyscall_patchlist[], __end_gate_fsyscall_patchlist[];
|
|
extern char __start_gate_brl_fsys_bubble_down_patchlist[], __end_gate_brl_fsys_bubble_down_patchlist[];
|
|
extern char __start_unwind[], __end_unwind[];
|
|
extern char __start_ivt_text[], __end_ivt_text[];
|
|
|
|
#undef dereference_function_descriptor
|
|
static inline void *dereference_function_descriptor(void *ptr)
|
|
{
|
|
struct fdesc *desc = ptr;
|
|
void *p;
|
|
|
|
if (!get_kernel_nofault(p, (void *)&desc->addr))
|
|
ptr = p;
|
|
return ptr;
|
|
}
|
|
|
|
#undef dereference_kernel_function_descriptor
|
|
static inline void *dereference_kernel_function_descriptor(void *ptr)
|
|
{
|
|
if (ptr < (void *)__start_opd || ptr >= (void *)__end_opd)
|
|
return ptr;
|
|
return dereference_function_descriptor(ptr);
|
|
}
|
|
|
|
#endif /* _ASM_IA64_SECTIONS_H */
|