mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
The commit 'sparc: Use Linux kABI for syscall return' (86c5d2cf0c
) did not take into account a subtle sparc syscall kABI constraint. For syscalls that might block indefinitely, on an interrupt (like SIGCONT) the kernel will set the instruction pointer to just before the syscall: arch/sparc/kernel/signal_64.c 476 static void do_signal(struct pt_regs *regs, unsigned long orig_i0) 477 { [...] 525 if (restart_syscall) { 526 switch (regs->u_regs[UREG_I0]) { 527 case ERESTARTNOHAND: 528 case ERESTARTSYS: 529 case ERESTARTNOINTR: 530 /* replay the system call when we are done */ 531 regs->u_regs[UREG_I0] = orig_i0; 532 regs->tpc -= 4; 533 regs->tnpc -= 4; 534 pt_regs_clear_syscall(regs); 535 fallthrough; 536 case ERESTART_RESTARTBLOCK: 537 regs->u_regs[UREG_G1] = __NR_restart_syscall; 538 regs->tpc -= 4; 539 regs->tnpc -= 4; 540 pt_regs_clear_syscall(regs); 541 } However, on a SIGCONT it seems that 'g1' register is being clobbered after the syscall returns. Before86c5d2cf0c
, the 'g1' was always placed jus before the 'ta' instruction which then reloads the syscall number and restarts the syscall. On master, where 'g1' might be placed before 'ta': $ cat test.c #include <unistd.h> int main () { pause (); } $ gcc test.c -o test $ strace -f ./t [...] ppoll(NULL, 0, NULL, NULL, 0 On another terminal $ kill -STOP 2262828 $ strace -f ./t [...] --- SIGSTOP {si_signo=SIGSTOP, si_code=SI_USER, si_pid=2521813, si_uid=8289} --- --- stopped by SIGSTOP --- And then $ kill -CONT 2262828 Results in: --- SIGCONT {si_signo=SIGCONT, si_code=SI_USER, si_pid=2521813, si_uid=8289} --- restart_syscall(<... resuming interrupted ppoll ...>) = -1 EINTR (Interrupted system call) Where the expected behaviour would be: $ strace -f ./t [...] ppoll(NULL, 0, NULL, NULL, 0) = ? ERESTARTNOHAND (To be restarted if no handler) --- SIGSTOP {si_signo=SIGSTOP, si_code=SI_USER, si_pid=2521813, si_uid=8289} --- --- stopped by SIGSTOP --- --- SIGCONT {si_signo=SIGCONT, si_code=SI_USER, si_pid=2521813, si_uid=8289} --- ppoll(NULL, 0, NULL, NULL, 0 Just moving the 'g1' setting near the syscall asm is not suffice, the compiler might optimize it away (as I saw on cancellation.c by trying this fix). Instead, I have change the inline asm to put the 'g1' setup in ithe asm block. This would require to change the asm constraint for INTERNAL_SYSCALL_NCS, since the syscall number is not constant. Checked on sparc64-linux-gnu. Reported-by: René Rebe <rene@exactcode.de> Tested-by: Sam James <sam@gentoo.org> Reviewed-by: Sam James <sam@gentoo.org>
212 lines
7.3 KiB
C
212 lines
7.3 KiB
C
/* Copyright (C) 2000-2024 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, see
|
|
<https://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef _LINUX_SPARC_SYSDEP_H
|
|
#define _LINUX_SPARC_SYSDEP_H 1
|
|
|
|
#include <sysdeps/unix/sysdep.h>
|
|
#include <sysdeps/unix/sysv/linux/sysdep.h>
|
|
#include <sysdeps/sparc/sysdep.h>
|
|
|
|
#ifdef __ASSEMBLER__
|
|
|
|
#define ret retl; nop
|
|
#define ret_NOERRNO retl; nop
|
|
#define ret_ERRVAL retl; nop
|
|
#define r0 %o0
|
|
#define r1 %o1
|
|
#define MOVE(x,y) mov x, y
|
|
|
|
#else /* __ASSEMBLER__ */
|
|
|
|
# define VDSO_NAME "LINUX_2.6"
|
|
# define VDSO_HASH 61765110
|
|
|
|
/* List of system calls which are supported as vsyscalls. */
|
|
# ifdef __arch64__
|
|
# define HAVE_CLOCK_GETTIME64_VSYSCALL "__vdso_clock_gettime"
|
|
# else
|
|
# define HAVE_CLOCK_GETTIME_VSYSCALL "__vdso_clock_gettime"
|
|
# endif
|
|
# define HAVE_GETTIMEOFDAY_VSYSCALL "__vdso_gettimeofday"
|
|
|
|
#undef INTERNAL_SYSCALL
|
|
#define INTERNAL_SYSCALL(name, nr, args...) \
|
|
internal_syscall##nr(__SYSCALL_STRING, __NR_##name, args)
|
|
|
|
#undef INTERNAL_SYSCALL_NCS
|
|
#define INTERNAL_SYSCALL_NCS(name, nr, args...) \
|
|
_internal_syscall##nr(__SYSCALL_STRING, "p", name, args)
|
|
|
|
#define _internal_syscall0(string,nc,name,dummy...) \
|
|
({ \
|
|
register long __o0 __asm__ ("o0"); \
|
|
long int _name = (long int) (name); \
|
|
__asm __volatile (string : "=r" (__o0) : \
|
|
[scn] nc (_name) : \
|
|
__SYSCALL_CLOBBERS); \
|
|
__o0; \
|
|
})
|
|
#define internal_syscall0(string,name,args...) \
|
|
_internal_syscall0(string, "i", name, args)
|
|
|
|
#define _internal_syscall1(string,nc,name,arg1) \
|
|
({ \
|
|
long int _arg1 = (long int) (arg1); \
|
|
long int _name = (long int) (name); \
|
|
register long int __o0 __asm__ ("o0") = _arg1; \
|
|
__asm __volatile (string : "+r" (__o0) : \
|
|
[scn] nc (_name) : \
|
|
__SYSCALL_CLOBBERS); \
|
|
__o0; \
|
|
})
|
|
#define internal_syscall1(string,name,args...) \
|
|
_internal_syscall1(string, "i", name, args)
|
|
|
|
#define _internal_syscall2(string,nc,name,arg1,arg2) \
|
|
({ \
|
|
long int _arg1 = (long int) (arg1); \
|
|
long int _arg2 = (long int) (arg2); \
|
|
long int _name = (long int) (name); \
|
|
register long int __o0 __asm__ ("o0") = _arg1; \
|
|
register long int __o1 __asm__ ("o1") = _arg2; \
|
|
__asm __volatile (string : "+r" (__o0) : \
|
|
[scn] nc (_name), "r" (__o1) : \
|
|
__SYSCALL_CLOBBERS); \
|
|
__o0; \
|
|
})
|
|
#define internal_syscall2(string,name,args...) \
|
|
_internal_syscall2(string, "i", name, args)
|
|
|
|
#define _internal_syscall3(string,nc,name,arg1,arg2,arg3) \
|
|
({ \
|
|
long int _arg1 = (long int) (arg1); \
|
|
long int _arg2 = (long int) (arg2); \
|
|
long int _arg3 = (long int) (arg3); \
|
|
long int _name = (long int) (name); \
|
|
register long int __o0 __asm__ ("o0") = _arg1; \
|
|
register long int __o1 __asm__ ("o1") = _arg2; \
|
|
register long int __o2 __asm__ ("o2") = _arg3; \
|
|
__asm __volatile (string : "+r" (__o0) : \
|
|
[scn] nc (_name), "r" (__o1), \
|
|
"r" (__o2) : \
|
|
__SYSCALL_CLOBBERS); \
|
|
__o0; \
|
|
})
|
|
#define internal_syscall3(string,name,args...) \
|
|
_internal_syscall3(string, "i", name, args)
|
|
|
|
#define _internal_syscall4(string,nc,name,arg1,arg2,arg3,arg4) \
|
|
({ \
|
|
long int _arg1 = (long int) (arg1); \
|
|
long int _arg2 = (long int) (arg2); \
|
|
long int _arg3 = (long int) (arg3); \
|
|
long int _arg4 = (long int) (arg4); \
|
|
long int _name = (long int) (name); \
|
|
register long int __o0 __asm__ ("o0") = _arg1; \
|
|
register long int __o1 __asm__ ("o1") = _arg2; \
|
|
register long int __o2 __asm__ ("o2") = _arg3; \
|
|
register long int __o3 __asm__ ("o3") = _arg4; \
|
|
__asm __volatile (string : "+r" (__o0) : \
|
|
[scn] nc (_name), "r" (__o1), \
|
|
"r" (__o2), "r" (__o3) : \
|
|
__SYSCALL_CLOBBERS); \
|
|
__o0; \
|
|
})
|
|
#define internal_syscall4(string,name,args...) \
|
|
_internal_syscall4(string, "i", name, args)
|
|
|
|
#define _internal_syscall5(string,nc,name,arg1,arg2,arg3,arg4,arg5) \
|
|
({ \
|
|
long int _arg1 = (long int) (arg1); \
|
|
long int _arg2 = (long int) (arg2); \
|
|
long int _arg3 = (long int) (arg3); \
|
|
long int _arg4 = (long int) (arg4); \
|
|
long int _arg5 = (long int) (arg5); \
|
|
long int _name = (long int) (name); \
|
|
register long int __o0 __asm__ ("o0") = _arg1; \
|
|
register long int __o1 __asm__ ("o1") = _arg2; \
|
|
register long int __o2 __asm__ ("o2") = _arg3; \
|
|
register long int __o3 __asm__ ("o3") = _arg4; \
|
|
register long int __o4 __asm__ ("o4") = _arg5; \
|
|
__asm __volatile (string : "+r" (__o0) : \
|
|
[scn] nc (_name), "r" (__o1), \
|
|
"r" (__o2), "r" (__o3), "r" (__o4) : \
|
|
__SYSCALL_CLOBBERS); \
|
|
__o0; \
|
|
})
|
|
#define internal_syscall5(string,name,args...) \
|
|
_internal_syscall5(string, "i", name, args)
|
|
|
|
#define _internal_syscall6(string,nc,name,arg1,arg2,arg3,arg4,arg5,arg6)\
|
|
({ \
|
|
long int _arg1 = (long int) (arg1); \
|
|
long int _arg2 = (long int) (arg2); \
|
|
long int _arg3 = (long int) (arg3); \
|
|
long int _arg4 = (long int) (arg4); \
|
|
long int _arg5 = (long int) (arg5); \
|
|
long int _arg6 = (long int) (arg6); \
|
|
long int _name = (long int) (name); \
|
|
register long int __o0 __asm__ ("o0") = _arg1; \
|
|
register long int __o1 __asm__ ("o1") = _arg2; \
|
|
register long int __o2 __asm__ ("o2") = _arg3; \
|
|
register long int __o3 __asm__ ("o3") = _arg4; \
|
|
register long int __o4 __asm__ ("o4") = _arg5; \
|
|
register long int __o5 __asm__ ("o5") = _arg6; \
|
|
__asm __volatile (string : "+r" (__o0) : \
|
|
[scn] nc (_name), "r" (__o1), \
|
|
"r" (__o2), "r" (__o3), "r" (__o4), \
|
|
"r" (__o5) : \
|
|
__SYSCALL_CLOBBERS); \
|
|
__o0; \
|
|
})
|
|
#define internal_syscall6(string,name,args...) \
|
|
_internal_syscall6(string, "i", name, args)
|
|
|
|
#define INLINE_CLONE_SYSCALL(arg1,arg2,arg3,arg4,arg5) \
|
|
({ \
|
|
long int _arg1 = (long int) (arg1); \
|
|
long int _arg2 = (long int) (arg2); \
|
|
long int _arg3 = (long int) (arg3); \
|
|
long int _arg4 = (long int) (arg4); \
|
|
long int _arg5 = (long int) (arg5); \
|
|
long int _name = __NR_clone; \
|
|
register long int __o0 __asm__ ("o0") = _arg1; \
|
|
register long int __o1 __asm__ ("o1") = _arg2; \
|
|
register long int __o2 __asm__ ("o2") = _arg3; \
|
|
register long int __o3 __asm__ ("o3") = _arg4; \
|
|
register long int __o4 __asm__ ("o4") = _arg5; \
|
|
__asm __volatile (__SYSCALL_STRING : \
|
|
"=r" (__o0), "=r" (__o1) : \
|
|
[scn] "i" (_name), "0" (__o0), "1" (__o1), \
|
|
"r" (__o2), "r" (__o3), "r" (__o4) : \
|
|
__SYSCALL_CLOBBERS); \
|
|
if (__glibc_unlikely ((unsigned long int) (__o0) > -4096UL)) \
|
|
{ \
|
|
__set_errno (-__o0); \
|
|
__o0 = -1L; \
|
|
} \
|
|
else \
|
|
{ \
|
|
__o0 &= (__o1 - 1); \
|
|
} \
|
|
__o0; \
|
|
})
|
|
|
|
#endif /* __ASSEMBLER__ */
|
|
|
|
#endif /* _LINUX_SPARC_SYSDEP_H */
|