2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2011-08-18 19:10:39 +00:00
|
|
|
* Copyright (C) 2003 PathScale, Inc.
|
|
|
|
* Copyright (C) 2003 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
2005-04-16 22:20:36 +00:00
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
2011-08-18 19:10:39 +00:00
|
|
|
|
|
|
|
#include <linux/personality.h>
|
2008-01-30 12:31:08 +00:00
|
|
|
#include <linux/ptrace.h>
|
2011-08-18 19:10:39 +00:00
|
|
|
#include <linux/kernel.h>
|
2024-04-23 12:58:52 +00:00
|
|
|
#include <linux/syscalls.h>
|
2008-01-30 12:31:08 +00:00
|
|
|
#include <asm/unistd.h>
|
2016-12-24 19:46:01 +00:00
|
|
|
#include <linux/uaccess.h>
|
2008-01-30 12:31:08 +00:00
|
|
|
#include <asm/ucontext.h>
|
2012-10-08 02:27:32 +00:00
|
|
|
#include <frame_kern.h>
|
2021-09-20 21:32:50 +00:00
|
|
|
#include <registers.h>
|
2012-10-08 02:27:32 +00:00
|
|
|
#include <skas.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2024-10-23 09:41:20 +00:00
|
|
|
#include <linux/regset.h>
|
|
|
|
#include <asm/sigframe.h>
|
2007-10-16 08:27:15 +00:00
|
|
|
|
2024-10-23 09:41:20 +00:00
|
|
|
#ifdef CONFIG_X86_32
|
|
|
|
struct _xstate_64 {
|
|
|
|
struct _fpstate_64 fpstate;
|
|
|
|
struct _header xstate_hdr;
|
|
|
|
struct _ymmh_state ymmh;
|
|
|
|
/* New processor state extensions go here: */
|
|
|
|
};
|
|
|
|
#else
|
|
|
|
#define _xstate_64 _xstate
|
2011-08-18 19:10:39 +00:00
|
|
|
#endif
|
|
|
|
|
2007-10-16 08:26:58 +00:00
|
|
|
static int copy_sc_from_user(struct pt_regs *regs,
|
|
|
|
struct sigcontext __user *from)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2024-10-23 09:41:20 +00:00
|
|
|
struct _xstate_64 __user *from_fp64;
|
2007-10-16 08:27:15 +00:00
|
|
|
struct sigcontext sc;
|
2024-03-28 09:06:34 +00:00
|
|
|
int err;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-04-22 07:27:28 +00:00
|
|
|
/* Always make any pending restarted system calls return -EINTR */
|
2015-02-12 23:01:14 +00:00
|
|
|
current->restart_block.fn = do_no_restart_syscall;
|
2012-04-22 07:27:28 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
err = copy_from_user(&sc, from, sizeof(sc));
|
2007-10-16 08:27:00 +00:00
|
|
|
if (err)
|
2007-05-06 21:51:24 +00:00
|
|
|
return err;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-08-18 19:00:49 +00:00
|
|
|
#define GETREG(regno, regname) regs->regs.gp[HOST_##regno] = sc.regname
|
|
|
|
|
2011-08-18 19:10:39 +00:00
|
|
|
#ifdef CONFIG_X86_32
|
2011-08-18 19:00:49 +00:00
|
|
|
GETREG(GS, gs);
|
|
|
|
GETREG(FS, fs);
|
|
|
|
GETREG(ES, es);
|
|
|
|
GETREG(DS, ds);
|
2011-08-18 19:10:39 +00:00
|
|
|
#endif
|
2011-08-18 19:10:09 +00:00
|
|
|
GETREG(DI, di);
|
|
|
|
GETREG(SI, si);
|
|
|
|
GETREG(BP, bp);
|
2011-08-18 19:00:49 +00:00
|
|
|
GETREG(SP, sp);
|
2011-08-18 19:10:09 +00:00
|
|
|
GETREG(BX, bx);
|
|
|
|
GETREG(DX, dx);
|
|
|
|
GETREG(CX, cx);
|
|
|
|
GETREG(AX, ax);
|
2011-08-18 19:00:49 +00:00
|
|
|
GETREG(IP, ip);
|
2011-08-18 19:10:39 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_X86_64
|
|
|
|
GETREG(R8, r8);
|
|
|
|
GETREG(R9, r9);
|
|
|
|
GETREG(R10, r10);
|
|
|
|
GETREG(R11, r11);
|
|
|
|
GETREG(R12, r12);
|
|
|
|
GETREG(R13, r13);
|
|
|
|
GETREG(R14, r14);
|
|
|
|
GETREG(R15, r15);
|
|
|
|
#endif
|
|
|
|
|
2011-08-18 19:00:49 +00:00
|
|
|
GETREG(CS, cs);
|
|
|
|
GETREG(EFLAGS, flags);
|
2011-08-18 19:10:39 +00:00
|
|
|
#ifdef CONFIG_X86_32
|
2011-08-18 19:00:49 +00:00
|
|
|
GETREG(SS, ss);
|
2011-08-18 19:10:39 +00:00
|
|
|
#endif
|
2011-08-18 19:00:49 +00:00
|
|
|
|
|
|
|
#undef GETREG
|
2011-08-18 19:10:39 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_X86_32
|
2024-10-31 14:20:16 +00:00
|
|
|
from_fp64 = ((void __user *)sc.fpstate) +
|
|
|
|
offsetof(struct _fpstate_32, _fxsr_env);
|
2024-09-13 13:38:45 +00:00
|
|
|
#else
|
2024-10-31 14:20:16 +00:00
|
|
|
from_fp64 = (void __user *)sc.fpstate;
|
2024-10-23 09:41:20 +00:00
|
|
|
#endif
|
2024-09-13 13:38:45 +00:00
|
|
|
|
2024-10-23 09:41:20 +00:00
|
|
|
err = copy_from_user(regs->regs.fp, from_fp64, host_fp_size);
|
|
|
|
if (err)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
#ifdef CONFIG_X86_32
|
|
|
|
/* Data is duplicated and this copy is the important one */
|
|
|
|
err = copy_regset_from_user(current,
|
|
|
|
task_user_regset_view(current),
|
|
|
|
REGSET_FP_LEGACY, 0,
|
|
|
|
sizeof(struct user_i387_struct),
|
2024-10-31 14:20:16 +00:00
|
|
|
(void __user *)sc.fpstate);
|
2024-10-23 09:41:20 +00:00
|
|
|
if (err < 0)
|
|
|
|
return err;
|
2024-09-13 13:38:45 +00:00
|
|
|
#endif
|
2024-10-23 09:41:20 +00:00
|
|
|
|
2007-05-06 21:51:24 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2007-10-16 08:26:58 +00:00
|
|
|
static int copy_sc_to_user(struct sigcontext __user *to,
|
2016-03-19 16:58:40 +00:00
|
|
|
struct _xstate __user *to_fp, struct pt_regs *regs,
|
2011-08-18 19:10:39 +00:00
|
|
|
unsigned long mask)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2024-10-23 09:41:20 +00:00
|
|
|
struct _xstate_64 __user *to_fp64;
|
2007-10-16 08:27:00 +00:00
|
|
|
struct sigcontext sc;
|
[PATCH] uml: S390 preparation, abstract host page fault data
This patch removes the arch-specific fault/trap-infos from thread and
skas-regs.
It adds a new struct faultinfo, that is arch-specific defined in
sysdep/faultinfo.h.
The structure is inserted in thread.arch and thread.regs.skas and
thread.regs.tt
Now, segv and other trap-handlers can copy the contents from regs.X.faultinfo
to thread.arch.faultinfo with one simple assignment.
Also, the number of macros necessary is reduced to
FAULT_ADDRESS(struct faultinfo)
extracts the faulting address from faultinfo
FAULT_WRITE(struct faultinfo)
extracts the "is_write" flag
SEGV_IS_FIXABLE(struct faultinfo)
is true for the fixable segvs, i.e. (TRAP == 14)
on i386
UPT_FAULTINFO(regs)
result is (struct faultinfo *) to the faultinfo
in regs->skas.faultinfo
GET_FAULTINFO_FROM_SC(struct faultinfo, struct sigcontext *)
copies the relevant parts of the sigcontext to
struct faultinfo.
On SIGSEGV, call user_signal() instead of handle_segv(), if the architecture
provides the information needed in PTRACE_FAULTINFO, or if PTRACE_FAULTINFO is
missing, because segv-stub will provide the info.
The benefit of the change is, that in case of a non-fixable SIGSEGV, we can
give user processes a SIGSEGV, instead of possibly looping on pagefault
handling.
Since handle_segv() sikked arch_fixup() implicitly by passing ip==0 to segv(),
I changed segv() to call arch_fixup() only, if !is_user.
Signed-off-by: Bodo Stroesser <bstroesser@fujitsu-siemens.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-05-05 23:15:31 +00:00
|
|
|
struct faultinfo * fi = ¤t->thread.arch.faultinfo;
|
2024-03-28 09:06:34 +00:00
|
|
|
int err;
|
2011-08-18 19:00:49 +00:00
|
|
|
memset(&sc, 0, sizeof(struct sigcontext));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-08-18 19:10:39 +00:00
|
|
|
#define PUTREG(regno, regname) sc.regname = regs->regs.gp[HOST_##regno]
|
|
|
|
|
|
|
|
#ifdef CONFIG_X86_32
|
|
|
|
PUTREG(GS, gs);
|
|
|
|
PUTREG(FS, fs);
|
|
|
|
PUTREG(ES, es);
|
|
|
|
PUTREG(DS, ds);
|
|
|
|
#endif
|
|
|
|
PUTREG(DI, di);
|
|
|
|
PUTREG(SI, si);
|
|
|
|
PUTREG(BP, bp);
|
|
|
|
PUTREG(SP, sp);
|
|
|
|
PUTREG(BX, bx);
|
|
|
|
PUTREG(DX, dx);
|
|
|
|
PUTREG(CX, cx);
|
|
|
|
PUTREG(AX, ax);
|
|
|
|
#ifdef CONFIG_X86_64
|
|
|
|
PUTREG(R8, r8);
|
|
|
|
PUTREG(R9, r9);
|
|
|
|
PUTREG(R10, r10);
|
|
|
|
PUTREG(R11, r11);
|
|
|
|
PUTREG(R12, r12);
|
|
|
|
PUTREG(R13, r13);
|
|
|
|
PUTREG(R14, r14);
|
|
|
|
PUTREG(R15, r15);
|
|
|
|
#endif
|
|
|
|
|
2007-10-16 08:27:00 +00:00
|
|
|
sc.cr2 = fi->cr2;
|
|
|
|
sc.err = fi->error_code;
|
|
|
|
sc.trapno = fi->trap_no;
|
2011-08-18 19:10:39 +00:00
|
|
|
PUTREG(IP, ip);
|
|
|
|
PUTREG(CS, cs);
|
|
|
|
PUTREG(EFLAGS, flags);
|
|
|
|
#ifdef CONFIG_X86_32
|
|
|
|
PUTREG(SP, sp_at_signal);
|
|
|
|
PUTREG(SS, ss);
|
|
|
|
#endif
|
|
|
|
#undef PUTREG
|
|
|
|
sc.oldmask = mask;
|
2015-11-29 20:13:50 +00:00
|
|
|
sc.fpstate = (unsigned long)to_fp;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-08-18 19:10:39 +00:00
|
|
|
err = copy_to_user(to, &sc, sizeof(struct sigcontext));
|
|
|
|
if (err)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
#ifdef CONFIG_X86_32
|
2024-10-23 09:41:20 +00:00
|
|
|
err = copy_regset_to_user(current,
|
|
|
|
task_user_regset_view(current),
|
|
|
|
REGSET_FP_LEGACY, 0,
|
|
|
|
sizeof(struct _fpstate_32), to_fp);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
2007-10-16 08:27:15 +00:00
|
|
|
|
2024-10-23 09:41:20 +00:00
|
|
|
__put_user(X86_FXSR_MAGIC, &to_fp->fpstate.magic);
|
2007-10-16 08:27:15 +00:00
|
|
|
|
2024-10-23 09:41:20 +00:00
|
|
|
BUILD_BUG_ON(offsetof(struct _xstate, xstate_hdr) !=
|
|
|
|
offsetof(struct _xstate_64, xstate_hdr) +
|
|
|
|
offsetof(struct _fpstate_32, _fxsr_env));
|
2024-10-31 14:20:16 +00:00
|
|
|
to_fp64 = (void __user *)to_fp +
|
|
|
|
offsetof(struct _fpstate_32, _fxsr_env);
|
2024-09-13 13:38:45 +00:00
|
|
|
#else
|
2024-10-23 09:41:20 +00:00
|
|
|
to_fp64 = to_fp;
|
|
|
|
#endif /* CONFIG_X86_32 */
|
|
|
|
|
|
|
|
if (copy_to_user(to_fp64, regs->regs.fp, host_fp_size))
|
2024-09-13 13:38:45 +00:00
|
|
|
return 1;
|
2024-10-23 09:41:20 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Put magic/size values for userspace. We do not bother to verify them
|
|
|
|
* later on, however, userspace needs them should it try to read the
|
|
|
|
* XSTATE data. And ptrace does not fill in these parts.
|
2024-12-04 07:48:27 +00:00
|
|
|
*
|
|
|
|
* Skip this if we do not have an XSTATE frame.
|
2024-10-23 09:41:20 +00:00
|
|
|
*/
|
2024-12-04 07:48:27 +00:00
|
|
|
if (host_fp_size <= sizeof(to_fp64->fpstate))
|
|
|
|
return 0;
|
|
|
|
|
2024-10-23 09:41:20 +00:00
|
|
|
BUILD_BUG_ON(sizeof(int) != FP_XSTATE_MAGIC2_SIZE);
|
|
|
|
#ifdef CONFIG_X86_32
|
|
|
|
__put_user(offsetof(struct _fpstate_32, _fxsr_env) +
|
|
|
|
host_fp_size + FP_XSTATE_MAGIC2_SIZE,
|
|
|
|
&to_fp64->fpstate.sw_reserved.extended_size);
|
|
|
|
#else
|
|
|
|
__put_user(host_fp_size + FP_XSTATE_MAGIC2_SIZE,
|
|
|
|
&to_fp64->fpstate.sw_reserved.extended_size);
|
2024-09-13 13:38:45 +00:00
|
|
|
#endif
|
2024-10-23 09:41:20 +00:00
|
|
|
__put_user(host_fp_size, &to_fp64->fpstate.sw_reserved.xstate_size);
|
|
|
|
|
|
|
|
__put_user(FP_XSTATE_MAGIC1, &to_fp64->fpstate.sw_reserved.magic1);
|
2024-10-31 14:20:16 +00:00
|
|
|
__put_user(FP_XSTATE_MAGIC2,
|
|
|
|
(int __user *)((void __user *)to_fp64 + host_fp_size));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-08-18 19:10:39 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2011-08-18 19:10:39 +00:00
|
|
|
#ifdef CONFIG_X86_32
|
2007-10-16 08:27:00 +00:00
|
|
|
static int copy_ucontext_to_user(struct ucontext __user *uc,
|
2016-03-19 16:58:40 +00:00
|
|
|
struct _xstate __user *fp, sigset_t *set,
|
2007-10-16 08:27:00 +00:00
|
|
|
unsigned long sp)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int err = 0;
|
|
|
|
|
2012-11-20 19:24:26 +00:00
|
|
|
err |= __save_altstack(&uc->uc_stack, sp);
|
2011-08-18 19:10:39 +00:00
|
|
|
err |= copy_sc_to_user(&uc->uc_mcontext, fp, ¤t->thread.regs, 0);
|
2005-04-16 22:20:36 +00:00
|
|
|
err |= copy_to_user(&uc->uc_sigmask, set, sizeof(*set));
|
2007-05-06 21:51:24 +00:00
|
|
|
return err;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2013-10-06 19:57:10 +00:00
|
|
|
int setup_signal_stack_sc(unsigned long stack_top, struct ksignal *ksig,
|
|
|
|
struct pt_regs *regs, sigset_t *mask)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2024-10-23 09:41:20 +00:00
|
|
|
size_t math_size = offsetof(struct _fpstate_32, _fxsr_env) +
|
|
|
|
host_fp_size + FP_XSTATE_MAGIC2_SIZE;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct sigframe __user *frame;
|
2006-03-31 10:30:15 +00:00
|
|
|
void __user *restorer;
|
2013-10-06 19:57:10 +00:00
|
|
|
int err = 0, sig = ksig->sig;
|
2024-10-23 09:41:20 +00:00
|
|
|
unsigned long fp_to;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-01-30 22:36:17 +00:00
|
|
|
/* This is the same calculation as i386 - ((sp + 4) & 15) == 0 */
|
|
|
|
stack_top = ((stack_top + 4) & -16UL) - 4;
|
2006-03-31 10:30:15 +00:00
|
|
|
frame = (struct sigframe __user *) stack_top - 1;
|
Remove 'type' argument from access_ok() function
Nobody has actually used the type (VERIFY_READ vs VERIFY_WRITE) argument
of the user address range verification function since we got rid of the
old racy i386-only code to walk page tables by hand.
It existed because the original 80386 would not honor the write protect
bit when in kernel mode, so you had to do COW by hand before doing any
user access. But we haven't supported that in a long time, and these
days the 'type' argument is a purely historical artifact.
A discussion about extending 'user_access_begin()' to do the range
checking resulted this patch, because there is no way we're going to
move the old VERIFY_xyz interface to that model. And it's best done at
the end of the merge window when I've done most of my merges, so let's
just get this done once and for all.
This patch was mostly done with a sed-script, with manual fix-ups for
the cases that weren't of the trivial 'access_ok(VERIFY_xyz' form.
There were a couple of notable cases:
- csky still had the old "verify_area()" name as an alias.
- the iter_iov code had magical hardcoded knowledge of the actual
values of VERIFY_{READ,WRITE} (not that they mattered, since nothing
really used it)
- microblaze used the type argument for a debug printout
but other than those oddities this should be a total no-op patch.
I tried to fix up all architectures, did fairly extensive grepping for
access_ok() uses, and the changes are trivial, but I may have missed
something. Any missed conversion should be trivially fixable, though.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2019-01-04 02:57:57 +00:00
|
|
|
if (!access_ok(frame, sizeof(*frame)))
|
2005-04-16 22:20:36 +00:00
|
|
|
return 1;
|
|
|
|
|
2024-10-23 09:41:20 +00:00
|
|
|
/* Add required space for math frame */
|
|
|
|
frame = (struct sigframe __user *)((unsigned long)frame - math_size);
|
|
|
|
|
2006-03-31 10:30:15 +00:00
|
|
|
restorer = frame->retcode;
|
2013-10-06 19:57:10 +00:00
|
|
|
if (ksig->ka.sa.sa_flags & SA_RESTORER)
|
|
|
|
restorer = ksig->ka.sa.sa_restorer;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2024-10-31 14:20:17 +00:00
|
|
|
err |= __put_user(restorer, (void __user * __user *)&frame->pretcode);
|
2005-04-16 22:20:36 +00:00
|
|
|
err |= __put_user(sig, &frame->sig);
|
2024-10-23 09:41:20 +00:00
|
|
|
|
|
|
|
fp_to = (unsigned long)frame + sizeof(*frame);
|
|
|
|
|
|
|
|
err |= copy_sc_to_user(&frame->sc,
|
|
|
|
(struct _xstate __user *)fp_to,
|
|
|
|
regs, mask->sig[0]);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (_NSIG_WORDS > 1)
|
|
|
|
err |= __copy_to_user(&frame->extramask, &mask->sig[1],
|
|
|
|
sizeof(frame->extramask));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is popl %eax ; movl $,%eax ; int $0x80
|
|
|
|
*
|
|
|
|
* WE DO NOT USE IT ANY MORE! It's only left here for historical
|
|
|
|
* reasons and because gdb uses it as a signature to notice
|
|
|
|
* signal handler stack frames.
|
|
|
|
*/
|
|
|
|
err |= __put_user(0xb858, (short __user *)(frame->retcode+0));
|
|
|
|
err |= __put_user(__NR_sigreturn, (int __user *)(frame->retcode+2));
|
|
|
|
err |= __put_user(0x80cd, (short __user *)(frame->retcode+6));
|
|
|
|
|
2007-10-16 08:27:00 +00:00
|
|
|
if (err)
|
2011-08-18 19:10:29 +00:00
|
|
|
return err;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
PT_REGS_SP(regs) = (unsigned long) frame;
|
2013-10-06 19:57:10 +00:00
|
|
|
PT_REGS_IP(regs) = (unsigned long) ksig->ka.sa.sa_handler;
|
2012-05-20 04:05:58 +00:00
|
|
|
PT_REGS_AX(regs) = (unsigned long) sig;
|
|
|
|
PT_REGS_DX(regs) = (unsigned long) 0;
|
|
|
|
PT_REGS_CX(regs) = (unsigned long) 0;
|
2006-03-27 09:14:38 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2013-10-06 19:57:10 +00:00
|
|
|
int setup_signal_stack_si(unsigned long stack_top, struct ksignal *ksig,
|
|
|
|
struct pt_regs *regs, sigset_t *mask)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2024-10-23 09:41:20 +00:00
|
|
|
size_t math_size = offsetof(struct _fpstate_32, _fxsr_env) +
|
|
|
|
host_fp_size + FP_XSTATE_MAGIC2_SIZE;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct rt_sigframe __user *frame;
|
2006-03-31 10:30:15 +00:00
|
|
|
void __user *restorer;
|
2013-10-06 19:57:10 +00:00
|
|
|
int err = 0, sig = ksig->sig;
|
2024-10-23 09:41:20 +00:00
|
|
|
unsigned long fp_to;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
stack_top &= -8UL;
|
2006-03-31 10:30:15 +00:00
|
|
|
frame = (struct rt_sigframe __user *) stack_top - 1;
|
Remove 'type' argument from access_ok() function
Nobody has actually used the type (VERIFY_READ vs VERIFY_WRITE) argument
of the user address range verification function since we got rid of the
old racy i386-only code to walk page tables by hand.
It existed because the original 80386 would not honor the write protect
bit when in kernel mode, so you had to do COW by hand before doing any
user access. But we haven't supported that in a long time, and these
days the 'type' argument is a purely historical artifact.
A discussion about extending 'user_access_begin()' to do the range
checking resulted this patch, because there is no way we're going to
move the old VERIFY_xyz interface to that model. And it's best done at
the end of the merge window when I've done most of my merges, so let's
just get this done once and for all.
This patch was mostly done with a sed-script, with manual fix-ups for
the cases that weren't of the trivial 'access_ok(VERIFY_xyz' form.
There were a couple of notable cases:
- csky still had the old "verify_area()" name as an alias.
- the iter_iov code had magical hardcoded knowledge of the actual
values of VERIFY_{READ,WRITE} (not that they mattered, since nothing
really used it)
- microblaze used the type argument for a debug printout
but other than those oddities this should be a total no-op patch.
I tried to fix up all architectures, did fairly extensive grepping for
access_ok() uses, and the changes are trivial, but I may have missed
something. Any missed conversion should be trivially fixable, though.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2019-01-04 02:57:57 +00:00
|
|
|
if (!access_ok(frame, sizeof(*frame)))
|
2005-04-16 22:20:36 +00:00
|
|
|
return 1;
|
|
|
|
|
2024-10-23 09:41:20 +00:00
|
|
|
/* Add required space for math frame */
|
|
|
|
frame = (struct rt_sigframe __user *)((unsigned long)frame - math_size);
|
|
|
|
|
2006-03-31 10:30:15 +00:00
|
|
|
restorer = frame->retcode;
|
2013-10-06 19:57:10 +00:00
|
|
|
if (ksig->ka.sa.sa_flags & SA_RESTORER)
|
|
|
|
restorer = ksig->ka.sa.sa_restorer;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2024-10-31 14:20:17 +00:00
|
|
|
err |= __put_user(restorer, (void __user * __user *)&frame->pretcode);
|
2005-04-16 22:20:36 +00:00
|
|
|
err |= __put_user(sig, &frame->sig);
|
2024-10-31 14:20:17 +00:00
|
|
|
err |= __put_user(&frame->info, (void __user * __user *)&frame->pinfo);
|
|
|
|
err |= __put_user(&frame->uc, (void __user * __user *)&frame->puc);
|
2013-10-06 19:57:10 +00:00
|
|
|
err |= copy_siginfo_to_user(&frame->info, &ksig->info);
|
2024-10-23 09:41:20 +00:00
|
|
|
|
|
|
|
fp_to = (unsigned long)frame + sizeof(*frame);
|
|
|
|
|
|
|
|
err |= copy_ucontext_to_user(&frame->uc, (struct _xstate __user *)fp_to,
|
|
|
|
mask, PT_REGS_SP(regs));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This is movl $,%eax ; int $0x80
|
|
|
|
*
|
|
|
|
* WE DO NOT USE IT ANY MORE! It's only left here for historical
|
|
|
|
* reasons and because gdb uses it as a signature to notice
|
|
|
|
* signal handler stack frames.
|
|
|
|
*/
|
|
|
|
err |= __put_user(0xb8, (char __user *)(frame->retcode+0));
|
|
|
|
err |= __put_user(__NR_rt_sigreturn, (int __user *)(frame->retcode+1));
|
|
|
|
err |= __put_user(0x80cd, (short __user *)(frame->retcode+5));
|
|
|
|
|
2007-10-16 08:27:00 +00:00
|
|
|
if (err)
|
2011-08-18 19:10:29 +00:00
|
|
|
return err;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-08-18 19:10:29 +00:00
|
|
|
PT_REGS_SP(regs) = (unsigned long) frame;
|
2013-10-06 19:57:10 +00:00
|
|
|
PT_REGS_IP(regs) = (unsigned long) ksig->ka.sa.sa_handler;
|
2012-05-20 04:05:58 +00:00
|
|
|
PT_REGS_AX(regs) = (unsigned long) sig;
|
|
|
|
PT_REGS_DX(regs) = (unsigned long) &frame->info;
|
|
|
|
PT_REGS_CX(regs) = (unsigned long) &frame->uc;
|
2006-03-27 09:14:38 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2024-04-23 12:58:52 +00:00
|
|
|
SYSCALL_DEFINE0(sigreturn)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
unsigned long sp = PT_REGS_SP(¤t->thread.regs);
|
2006-03-31 10:30:15 +00:00
|
|
|
struct sigframe __user *frame = (struct sigframe __user *)(sp - 8);
|
2005-04-16 22:20:36 +00:00
|
|
|
sigset_t set;
|
|
|
|
struct sigcontext __user *sc = &frame->sc;
|
|
|
|
int sig_size = (_NSIG_WORDS - 1) * sizeof(unsigned long);
|
|
|
|
|
2015-12-22 20:44:01 +00:00
|
|
|
if (copy_from_user(&set.sig[0], &sc->oldmask, sizeof(set.sig[0])) ||
|
2015-11-29 20:13:50 +00:00
|
|
|
copy_from_user(&set.sig[1], frame->extramask, sig_size))
|
2005-04-16 22:20:36 +00:00
|
|
|
goto segfault;
|
|
|
|
|
2011-08-18 19:00:19 +00:00
|
|
|
set_current_blocked(&set);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-10-16 08:27:00 +00:00
|
|
|
if (copy_sc_from_user(¤t->thread.regs, sc))
|
2005-04-16 22:20:36 +00:00
|
|
|
goto segfault;
|
|
|
|
|
|
|
|
/* Avoid ERESTART handling */
|
|
|
|
PT_REGS_SYSCALL_NR(¤t->thread.regs) = -1;
|
2007-05-06 21:51:24 +00:00
|
|
|
return PT_REGS_SYSCALL_RET(¤t->thread.regs);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
segfault:
|
2019-05-23 15:17:27 +00:00
|
|
|
force_sig(SIGSEGV);
|
2005-04-16 22:20:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-18 19:10:39 +00:00
|
|
|
#else
|
|
|
|
|
2013-10-06 19:57:10 +00:00
|
|
|
int setup_signal_stack_si(unsigned long stack_top, struct ksignal *ksig,
|
|
|
|
struct pt_regs *regs, sigset_t *set)
|
2011-08-18 19:10:39 +00:00
|
|
|
{
|
2024-10-23 09:41:20 +00:00
|
|
|
unsigned long math_size = host_fp_size + FP_XSTATE_MAGIC2_SIZE;
|
2011-08-18 19:10:39 +00:00
|
|
|
struct rt_sigframe __user *frame;
|
2013-10-06 19:57:10 +00:00
|
|
|
int err = 0, sig = ksig->sig;
|
2015-11-29 20:13:50 +00:00
|
|
|
unsigned long fp_to;
|
2011-08-18 19:10:39 +00:00
|
|
|
|
2025-01-07 13:35:09 +00:00
|
|
|
frame = (void __user *)stack_top - sizeof(struct rt_sigframe);
|
2024-10-23 09:41:20 +00:00
|
|
|
|
|
|
|
/* Add required space for math frame */
|
2025-01-07 13:35:09 +00:00
|
|
|
frame = (void __user *)((unsigned long)frame - math_size);
|
|
|
|
|
|
|
|
/* ABI requires 16 byte boundary alignment */
|
|
|
|
frame = (void __user *)round_down((unsigned long)frame, 16);
|
2024-10-23 09:41:20 +00:00
|
|
|
|
2011-08-18 19:10:39 +00:00
|
|
|
/* Subtract 128 for a red zone and 8 for proper alignment */
|
|
|
|
frame = (struct rt_sigframe __user *) ((unsigned long) frame - 128 - 8);
|
|
|
|
|
2024-10-23 09:41:20 +00:00
|
|
|
if (!access_ok(frame, sizeof(*frame) + math_size))
|
2011-08-18 19:10:39 +00:00
|
|
|
goto out;
|
|
|
|
|
2013-10-06 19:57:10 +00:00
|
|
|
if (ksig->ka.sa.sa_flags & SA_SIGINFO) {
|
|
|
|
err |= copy_siginfo_to_user(&frame->info, &ksig->info);
|
2011-08-18 19:10:39 +00:00
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create the ucontext. */
|
|
|
|
err |= __put_user(0, &frame->uc.uc_flags);
|
2024-10-31 14:20:17 +00:00
|
|
|
err |= __put_user(NULL, &frame->uc.uc_link);
|
2012-11-20 19:24:26 +00:00
|
|
|
err |= __save_altstack(&frame->uc.uc_stack, PT_REGS_SP(regs));
|
2015-11-29 20:13:50 +00:00
|
|
|
|
2024-10-23 09:41:20 +00:00
|
|
|
fp_to = (unsigned long)frame + sizeof(*frame);
|
|
|
|
|
|
|
|
err |= copy_sc_to_user(&frame->uc.uc_mcontext,
|
|
|
|
(struct _xstate __user *)fp_to,
|
|
|
|
regs, set->sig[0]);
|
2015-11-29 20:13:50 +00:00
|
|
|
|
|
|
|
err |= __put_user(fp_to, &frame->uc.uc_mcontext.fpstate);
|
2011-08-18 19:10:39 +00:00
|
|
|
if (sizeof(*set) == 16) {
|
2012-04-22 20:34:27 +00:00
|
|
|
err |= __put_user(set->sig[0], &frame->uc.uc_sigmask.sig[0]);
|
|
|
|
err |= __put_user(set->sig[1], &frame->uc.uc_sigmask.sig[1]);
|
2011-08-18 19:10:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
err |= __copy_to_user(&frame->uc.uc_sigmask, set,
|
|
|
|
sizeof(*set));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up to return from userspace. If provided, use a stub
|
|
|
|
* already in userspace.
|
|
|
|
*/
|
|
|
|
/* x86-64 should always use SA_RESTORER. */
|
2013-10-06 19:57:10 +00:00
|
|
|
if (ksig->ka.sa.sa_flags & SA_RESTORER)
|
2024-10-31 14:20:17 +00:00
|
|
|
err |= __put_user((void __user *)ksig->ka.sa.sa_restorer,
|
2015-05-13 21:02:14 +00:00
|
|
|
&frame->pretcode);
|
2011-08-18 19:10:39 +00:00
|
|
|
else
|
|
|
|
/* could use a vstub here */
|
|
|
|
return err;
|
|
|
|
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
PT_REGS_SP(regs) = (unsigned long) frame;
|
2012-05-20 04:05:58 +00:00
|
|
|
PT_REGS_DI(regs) = sig;
|
2011-08-18 19:10:39 +00:00
|
|
|
/* In case the signal handler was declared without prototypes */
|
2012-05-20 04:05:58 +00:00
|
|
|
PT_REGS_AX(regs) = 0;
|
2011-08-18 19:10:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This also works for non SA_SIGINFO handlers because they expect the
|
|
|
|
* next argument after the signal number on the stack.
|
|
|
|
*/
|
2012-05-20 04:05:58 +00:00
|
|
|
PT_REGS_SI(regs) = (unsigned long) &frame->info;
|
|
|
|
PT_REGS_DX(regs) = (unsigned long) &frame->uc;
|
2013-10-06 19:57:10 +00:00
|
|
|
PT_REGS_IP(regs) = (unsigned long) ksig->ka.sa.sa_handler;
|
2011-08-18 19:10:39 +00:00
|
|
|
out:
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2024-04-23 12:58:52 +00:00
|
|
|
SYSCALL_DEFINE0(rt_sigreturn)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-03-31 10:30:15 +00:00
|
|
|
unsigned long sp = PT_REGS_SP(¤t->thread.regs);
|
2007-10-16 08:27:00 +00:00
|
|
|
struct rt_sigframe __user *frame =
|
2011-08-18 19:10:39 +00:00
|
|
|
(struct rt_sigframe __user *)(sp - sizeof(long));
|
2005-04-16 22:20:36 +00:00
|
|
|
struct ucontext __user *uc = &frame->uc;
|
2011-08-18 19:10:39 +00:00
|
|
|
sigset_t set;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-08-18 19:10:39 +00:00
|
|
|
if (copy_from_user(&set, &uc->uc_sigmask, sizeof(set)))
|
2005-04-16 22:20:36 +00:00
|
|
|
goto segfault;
|
|
|
|
|
2011-08-18 19:00:19 +00:00
|
|
|
set_current_blocked(&set);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-10-16 08:27:00 +00:00
|
|
|
if (copy_sc_from_user(¤t->thread.regs, &uc->uc_mcontext))
|
2005-04-16 22:20:36 +00:00
|
|
|
goto segfault;
|
|
|
|
|
|
|
|
/* Avoid ERESTART handling */
|
|
|
|
PT_REGS_SYSCALL_NR(¤t->thread.regs) = -1;
|
2007-05-06 21:51:24 +00:00
|
|
|
return PT_REGS_SYSCALL_RET(¤t->thread.regs);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
segfault:
|
2019-05-23 15:17:27 +00:00
|
|
|
force_sig(SIGSEGV);
|
2005-04-16 22:20:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|