sh: push extra copy of r0-r2 for syscall parameters
When invoking syscall handlers on sh32, the saved userspace registers are at the top of the stack. This seems to have been intentional, as it is an easy way to pass r0, r1, ... to the handler as parameters 5, 6, ... It causes problems, however, because the compiler is allowed to generate code for a function which clobbers that function's own parameters. For example, gcc generates the following code for clone: <SyS_clone>: mov.l 8c020714 <SyS_clone+0xc>,r1 ! 8c020540 <do_fork> mov.l r7,@r15 mov r6,r7 jmp @r1 mov #0,r6 nop .word 0x0540 .word 0x8c02 The `mov.l r7,@r15` clobbers the saved value of r0 passed from userspace. For most system calls, this might not be a problem, because we'll be overwriting r0 with the return value anyway. But in the case of clone, copy_thread will need the original value of r0 if the CLONE_SETTLS flag was specified. The first patch in this series fixes this issue for system calls by pushing to the stack and extra copy of r0-r2 before invoking the handler. We discard this copy before restoring the userspace registers, so it is not a problem if they are clobbered. Exception handlers also receive the userspace register values in a similar manner, and may hit the same problem. The second patch removes the do_fpu_error handler, which looks susceptible to this problem and which, as far as I can tell, has not been used in some time. The third patch addresses other exception handlers. This patch (of 3): The userspace registers are stored at the top of the stack when the syscall handler is invoked, which allows r0-r2 to act as parameters 5-7. Parameters passed on the stack may be clobbered by the syscall handler. The solution is to push an extra copy of the registers which might be used as syscall parameters to the stack, so that the authoritative set of saved register values does not get clobbered. A few system call handlers are also updated to get the userspace registers using current_pt_regs() instead of from the stack. Signed-off-by: Bobby Bingham <koorogi@koorogi.info> Cc: Paul Mundt <paul.mundt@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
d0df04f7cc
commit
abafe5d9b0
4 changed files with 20 additions and 26 deletions
|
@ -9,15 +9,9 @@
|
||||||
|
|
||||||
struct pt_regs;
|
struct pt_regs;
|
||||||
|
|
||||||
asmlinkage int sys_sigreturn(unsigned long r4, unsigned long r5,
|
asmlinkage int sys_sigreturn(void);
|
||||||
unsigned long r6, unsigned long r7,
|
asmlinkage int sys_rt_sigreturn(void);
|
||||||
struct pt_regs __regs);
|
asmlinkage int sys_sh_pipe(void);
|
||||||
asmlinkage int sys_rt_sigreturn(unsigned long r4, unsigned long r5,
|
|
||||||
unsigned long r6, unsigned long r7,
|
|
||||||
struct pt_regs __regs);
|
|
||||||
asmlinkage int sys_sh_pipe(unsigned long r4, unsigned long r5,
|
|
||||||
unsigned long r6, unsigned long r7,
|
|
||||||
struct pt_regs __regs);
|
|
||||||
asmlinkage ssize_t sys_pread_wrapper(unsigned int fd, char __user *buf,
|
asmlinkage ssize_t sys_pread_wrapper(unsigned int fd, char __user *buf,
|
||||||
size_t count, long dummy, loff_t pos);
|
size_t count, long dummy, loff_t pos);
|
||||||
asmlinkage ssize_t sys_pwrite_wrapper(unsigned int fd, const char __user *buf,
|
asmlinkage ssize_t sys_pwrite_wrapper(unsigned int fd, const char __user *buf,
|
||||||
|
|
|
@ -193,10 +193,10 @@ syscall_trace_entry:
|
||||||
! Reload R0-R4 from kernel stack, where the
|
! Reload R0-R4 from kernel stack, where the
|
||||||
! parent may have modified them using
|
! parent may have modified them using
|
||||||
! ptrace(POKEUSR). (Note that R0-R2 are
|
! ptrace(POKEUSR). (Note that R0-R2 are
|
||||||
! used by the system call handler directly
|
! reloaded from the kernel stack by syscall_call
|
||||||
! from the kernel stack anyway, so don't need
|
! below, so don't need to be reloaded here.)
|
||||||
! to be reloaded here.) This allows the parent
|
! This allows the parent to rewrite system calls
|
||||||
! to rewrite system calls and args on the fly.
|
! and args on the fly.
|
||||||
mov.l @(OFF_R4,r15), r4 ! arg0
|
mov.l @(OFF_R4,r15), r4 ! arg0
|
||||||
mov.l @(OFF_R5,r15), r5
|
mov.l @(OFF_R5,r15), r5
|
||||||
mov.l @(OFF_R6,r15), r6
|
mov.l @(OFF_R6,r15), r6
|
||||||
|
@ -357,8 +357,15 @@ syscall_call:
|
||||||
mov.l 3f, r8 ! Load the address of sys_call_table
|
mov.l 3f, r8 ! Load the address of sys_call_table
|
||||||
add r8, r3
|
add r8, r3
|
||||||
mov.l @r3, r8
|
mov.l @r3, r8
|
||||||
|
mov.l @(OFF_R2,r15), r2
|
||||||
|
mov.l @(OFF_R1,r15), r1
|
||||||
|
mov.l @(OFF_R0,r15), r0
|
||||||
|
mov.l r2, @-r15
|
||||||
|
mov.l r1, @-r15
|
||||||
|
mov.l r0, @-r15
|
||||||
jsr @r8 ! jump to specific syscall handler
|
jsr @r8 ! jump to specific syscall handler
|
||||||
nop
|
nop
|
||||||
|
add #12, r15
|
||||||
mov.l @(OFF_R0,r15), r12 ! save r0
|
mov.l @(OFF_R0,r15), r12 ! save r0
|
||||||
mov.l r0, @(OFF_R0,r15) ! save the return value
|
mov.l r0, @(OFF_R0,r15) ! save the return value
|
||||||
!
|
!
|
||||||
|
|
|
@ -148,11 +148,9 @@ restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc, int *r0_p
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
asmlinkage int sys_sigreturn(unsigned long r4, unsigned long r5,
|
asmlinkage int sys_sigreturn(void)
|
||||||
unsigned long r6, unsigned long r7,
|
|
||||||
struct pt_regs __regs)
|
|
||||||
{
|
{
|
||||||
struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
|
struct pt_regs *regs = current_pt_regs();
|
||||||
struct sigframe __user *frame = (struct sigframe __user *)regs->regs[15];
|
struct sigframe __user *frame = (struct sigframe __user *)regs->regs[15];
|
||||||
sigset_t set;
|
sigset_t set;
|
||||||
int r0;
|
int r0;
|
||||||
|
@ -180,11 +178,9 @@ badframe:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
asmlinkage int sys_rt_sigreturn(unsigned long r4, unsigned long r5,
|
asmlinkage int sys_rt_sigreturn(void)
|
||||||
unsigned long r6, unsigned long r7,
|
|
||||||
struct pt_regs __regs)
|
|
||||||
{
|
{
|
||||||
struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
|
struct pt_regs *regs = current_pt_regs();
|
||||||
struct rt_sigframe __user *frame = (struct rt_sigframe __user *)regs->regs[15];
|
struct rt_sigframe __user *frame = (struct rt_sigframe __user *)regs->regs[15];
|
||||||
sigset_t set;
|
sigset_t set;
|
||||||
int r0;
|
int r0;
|
||||||
|
|
|
@ -21,17 +21,14 @@
|
||||||
* sys_pipe() is the normal C calling standard for creating
|
* sys_pipe() is the normal C calling standard for creating
|
||||||
* a pipe. It's not the way Unix traditionally does this, though.
|
* a pipe. It's not the way Unix traditionally does this, though.
|
||||||
*/
|
*/
|
||||||
asmlinkage int sys_sh_pipe(unsigned long r4, unsigned long r5,
|
asmlinkage int sys_sh_pipe(void)
|
||||||
unsigned long r6, unsigned long r7,
|
|
||||||
struct pt_regs __regs)
|
|
||||||
{
|
{
|
||||||
struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
|
|
||||||
int fd[2];
|
int fd[2];
|
||||||
int error;
|
int error;
|
||||||
|
|
||||||
error = do_pipe_flags(fd, 0);
|
error = do_pipe_flags(fd, 0);
|
||||||
if (!error) {
|
if (!error) {
|
||||||
regs->regs[1] = fd[1];
|
current_pt_regs()->regs[1] = fd[1];
|
||||||
return fd[0];
|
return fd[0];
|
||||||
}
|
}
|
||||||
return error;
|
return error;
|
||||||
|
|
Loading…
Reference in a new issue