File:  [DVB] / dietlibc / x86_64 / sigaction.c
Revision 1.3: download - view: text, annotated - select for diffs
Mon Jun 6 12:15:31 2016 UTC (8 years ago) by leitner
Branches: MAIN
CVS tags: HEAD
  SECURITY: x32 fixes: one of them could lead to memory corruption because struct stat was declared too short (Christian Seiler)

#include <signal.h>
#include <stdlib.h>
#include <string.h>
#include <syscalls.h>

int __rt_sigaction(int signum, const struct sigaction *act, struct sigaction *oldact, long nr);

#if 0
static void __restore_rt(void) {
  asm volatile ("syscall" : : "a" (__NR_rt_sigreturn));
}
#else
/* exactly match MD_FALLBACK_FRAME_STATE_FOR in gcc-3.4/gcc/config/i386/linux64.h */
void __restore_rt(void);
asm(".text\n" ".align 16\n"
    "__restore_rt:"
#ifdef __ILP32__
    "movq $0x40000201, %rax\n"
#else
    "movq $15, %rax\n"
#endif
    "syscall\n" "hlt\n");
#endif

int __libc_sigaction(int signum, const struct sigaction *act, struct sigaction *oldact);
int __libc_sigaction(int signum, const struct sigaction *act, struct sigaction *oldact) {
  struct sigaction *newact = (struct sigaction *)act;
  if (act) {
	newact = alloca(sizeof(*newact));
	newact->sa_handler = act->sa_handler;
	newact->sa_flags = act->sa_flags | SA_RESTORER;
	newact->sa_restorer = &__restore_rt;
	newact->sa_mask = act->sa_mask;
  }
  return __rt_sigaction(signum, newact, oldact, _NSIG/8);
}

int sigaction(int signum, const struct sigaction *act, struct sigaction *oldact)
__attribute__((weak,alias("__libc_sigaction")));

LinuxTV legacy CVS <linuxtv.org/cvs>