mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
ea64d5acc8
Among the existing architecture specific versions of copy_siginfo_to_user32 there are several different implementation problems. Some architectures fail to handle all of the cases in in the siginfo union. Some architectures perform a blind copy of the siginfo union when the si_code is negative. A blind copy suggests the data is expected to be in 32bit siginfo format, which means that receiving such a signal via signalfd won't work, or that the data is in 64bit siginfo and the code is copying nonsense to userspace. Create a single instance of copy_siginfo_to_user32 that all of the architectures can share, and teach it to handle all of the cases in the siginfo union correctly, with the assumption that siginfo is stored internally to the kernel is 64bit siginfo format. A special case is made for x86 x32 format. This is needed as presence of both x32 and ia32 on x86_64 results in two different 32bit signal formats. By allowing this small special case there winds up being exactly one code base that needs to be maintained between all of the architectures. Vastly increasing the testing base and the chances of finding bugs. As the x86 copy of copy_siginfo_to_user32 the call of the x86 signal_compat_build_tests were moved into sigaction_compat_abi, so that they will keep running. Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
35 lines
1.0 KiB
C
35 lines
1.0 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* x86 FPU signal frame handling methods:
|
|
*/
|
|
#ifndef _ASM_X86_FPU_SIGNAL_H
|
|
#define _ASM_X86_FPU_SIGNAL_H
|
|
|
|
#ifdef CONFIG_X86_64
|
|
# include <uapi/asm/sigcontext.h>
|
|
# include <asm/user32.h>
|
|
struct ksignal;
|
|
int ia32_setup_rt_frame(int sig, struct ksignal *ksig,
|
|
compat_sigset_t *set, struct pt_regs *regs);
|
|
int ia32_setup_frame(int sig, struct ksignal *ksig,
|
|
compat_sigset_t *set, struct pt_regs *regs);
|
|
#else
|
|
# define user_i387_ia32_struct user_i387_struct
|
|
# define user32_fxsr_struct user_fxsr_struct
|
|
# define ia32_setup_frame __setup_frame
|
|
# define ia32_setup_rt_frame __setup_rt_frame
|
|
#endif
|
|
|
|
extern void convert_from_fxsr(struct user_i387_ia32_struct *env,
|
|
struct task_struct *tsk);
|
|
extern void convert_to_fxsr(struct task_struct *tsk,
|
|
const struct user_i387_ia32_struct *env);
|
|
|
|
unsigned long
|
|
fpu__alloc_mathframe(unsigned long sp, int ia32_frame,
|
|
unsigned long *buf_fx, unsigned long *size);
|
|
|
|
extern void fpu__init_prepare_fx_sw_frame(void);
|
|
|
|
#endif /* _ASM_X86_FPU_SIGNAL_H */
|