mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-06 19:28:29 +00:00
Ignore SIGSYS on BSD by default
This commit is contained in:
parent
179e048bba
commit
37d40e087f
7 changed files with 48 additions and 16 deletions
|
@ -1,2 +1,2 @@
|
|||
.include "o/libc/sysv/macros.internal.inc"
|
||||
.scall sys_bogus,0x5005005002500500,globl
|
||||
.scall sys_bogus,0x00b5005002500500,globl
|
||||
|
|
|
@ -372,7 +372,7 @@ scall sys_io_uring_register 0xfffffffffffff1ab globl
|
|||
#────────────────────────RHEL CLOUD────────────────────────── # ←──────┬─ red hat terminates community release of enterprise linux circa 2020
|
||||
scall sys_pledge 0xfff06cffffffffff globl hidden # └─ online linux services ban the president of united states of america
|
||||
scall sys_msyscall 0xfff025ffffffffff globl # no wrapper
|
||||
scall sys_bogus 0x5005005002500500 globl
|
||||
scall sys_bogus 0x00b5005002500500 globl
|
||||
scall sys_open_tree 0xfffffffffffff1ac globl # no wrapper
|
||||
scall sys_move_mount 0xfffffffffffff1ad globl # no wrapper
|
||||
scall sys_fsopen 0xfffffffffffff1ae globl # no wrapper
|
||||
|
|
|
@ -20,8 +20,11 @@
|
|||
#include "libc/dce.h"
|
||||
#include "libc/macros.internal.h"
|
||||
#include "libc/nexgen32e/macros.h"
|
||||
#include "libc/sysv/consts/sig.h"
|
||||
#include "libc/sysv/consts/nr.h"
|
||||
|
||||
#define SIG_IGN 1
|
||||
|
||||
/* ▄▄▄
|
||||
▄▄▄ ▀▓▓▒▄
|
||||
▄▓▒▒░ ▀▓▒▒▒▄
|
||||
|
@ -363,6 +366,31 @@ _init_systemfive_pid:
|
|||
1: stosq
|
||||
.endfn _init_systemfive_pid
|
||||
#endif
|
||||
#if SupportsBsd() && !defined(TINY)
|
||||
_init_systemfive_sigsys:
|
||||
testb IsBsd() # BSDs will trap SIGSYS!
|
||||
jz 1f # We want ENOSYS instead
|
||||
push %rdi # XNU removed some calls
|
||||
push %rsi # in past, so this makes
|
||||
xor %eax,%eax # troubleshooting easier
|
||||
push %rax # but it's non-essential
|
||||
push %rax
|
||||
push %rax
|
||||
push %rax
|
||||
push %rax
|
||||
push $SIG_IGN # sigaction_meta size 48
|
||||
mov __NR_sigaction,%eax # mag
|
||||
mov SIGSYS,%edi # sig
|
||||
mov %rsp,%rsi # new
|
||||
xor %edx,%edx # old
|
||||
mov $8,%r10d # for linux
|
||||
xor %r8d,%r8d # for netbsd
|
||||
syscall
|
||||
add $6*8,%rsp
|
||||
pop %rsi
|
||||
pop %rdi
|
||||
1: .endfn _init_systemfive_sigsys
|
||||
#endif
|
||||
#if SupportsSystemv() && !defined(TINY)
|
||||
_init_systemfive_syscall:
|
||||
mov __NR_msyscall,%eax # syscall origin protect
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue