]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/sys/signalvar.h
xnu-3789.1.32.tar.gz
[apple/xnu.git] / bsd / sys / signalvar.h
index cd5c2d133e9b3daa2a8c3239a82ab570c753b713..f427f7215dc4c4d95bef34427ae3937179328ea8 100644 (file)
@@ -145,7 +145,7 @@ struct      sigacts {
 #define        SA_CANTMASK     0x40            /* non-maskable, catchable */
 
 #ifdef SIGPROP
-int sigprop[NSIG + 1] = {
+int sigprop[NSIG] = {
        0,                      /* unused */
        SA_KILL,                /* SIGHUP */
        SA_KILL,                /* SIGINT */
@@ -188,10 +188,16 @@ int sigprop[NSIG + 1] = {
 
 #define        sigcantmask     (sigmask(SIGKILL) | sigmask(SIGSTOP))
 
+#define SIGRESTRICTMASK (sigmask(SIGILL) | sigmask(SIGTRAP) | sigmask(SIGABRT) | \
+                         sigmask(SIGFPE) | sigmask(SIGBUS)  | sigmask(SIGSEGV) | \
+                         sigmask(SIGSYS))
+
+extern unsigned sigrestrict_arg;
+
 /*
  * Machine-independent functions:
  */
-int    coredump(struct proc *p, uint32_t reserve_mb, int ignore_ulimit);
+
 void   execsigs(struct proc *p, thread_t thread);
 void   gsignal(int pgid, int sig);
 int    issignal_locked(struct proc *p);
@@ -203,7 +209,9 @@ void        siginit(struct proc *p);
 void   trapsignal(struct proc *p, int sig, unsigned code);
 void   pt_setrunnable(struct proc *p);
 int    hassigprop(int sig, int prop);
+int setsigvec(proc_t, thread_t, int signum, struct __kern_sigaction *, boolean_t in_sigstart);
 
+struct os_reason;
 /*
  * Machine-dependent functions:
  */
@@ -211,17 +219,20 @@ void      sendsig(struct proc *, /*sig_t*/ user_addr_t  action, int sig,
        int returnmask, uint32_t code);
 
 void   psignal(struct proc *p, int sig);
+void   psignal_with_reason(struct proc *p, int sig, struct os_reason *signal_reason);
 void   psignal_locked(struct proc *, int);
+void   psignal_try_thread(proc_t, thread_t, int signum);
+void   psignal_try_thread_with_reason(proc_t, thread_t, int, struct os_reason*);
+void   psignal_uthread(thread_t, int);
 void   pgsignal(struct pgrp *pgrp, int sig, int checkctty);
 void   tty_pgsignal(struct tty * tp, int sig, int checkctty);
 void   threadsignal(thread_t sig_actthread, int signum, 
-               mach_exception_code_t code);
+               mach_exception_code_t code, boolean_t set_exitreason);
 int    thread_issignal(proc_t p, thread_t th, sigset_t mask);
 void   psignal_vfork(struct proc *p, task_t new_task, thread_t thread,
                int signum);
-void   psignal_vtalarm(struct proc *);
-void   psignal_xcpu(struct proc *);
-void   psignal_sigprof(struct proc *);
+void psignal_vfork_with_reason(proc_t p, task_t new_task, thread_t thread,
+               int signum, struct os_reason *signal_reason);
 void   signal_setast(thread_t sig_actthread);
 void   pgsigio(pid_t pgid, int signalnum);
 
@@ -230,4 +241,18 @@ int sig_try_locked(struct proc *p);
 
 #endif /* BSD_KERNEL_PRIVATE */
 
+
+#ifdef XNU_KERNEL_PRIVATE
+
+/* Functions exported to Mach as well */
+
+#define COREDUMP_IGNORE_ULIMIT  0x0001 /* Ignore the process's core file ulimit. */
+#define COREDUMP_FULLFSYNC      0x0002 /* Run F_FULLFSYNC on the core file's vnode */
+
+int    coredump(struct proc *p, uint32_t reserve_mb, int coredump_flags);
+void set_thread_exit_reason(void *th, void *reason, boolean_t proc_locked);
+
+#endif  /* XNU_KERNEL_PRIVATE */
+
+
 #endif /* !_SYS_SIGNALVAR_H_ */