signal.h revision 1.19
11.19Schristos/* $NetBSD: signal.h,v 1.19 2003/09/10 16:48:16 christos Exp $ */ 21.3Scgd 31.1Sbrezak/* 41.1Sbrezak * Copyright (c) 1982, 1986, 1989, 1991 Regents of the University of California. 51.1Sbrezak * All rights reserved. 61.1Sbrezak * 71.1Sbrezak * Redistribution and use in source and binary forms, with or without 81.1Sbrezak * modification, are permitted provided that the following conditions 91.1Sbrezak * are met: 101.1Sbrezak * 1. Redistributions of source code must retain the above copyright 111.1Sbrezak * notice, this list of conditions and the following disclaimer. 121.1Sbrezak * 2. Redistributions in binary form must reproduce the above copyright 131.1Sbrezak * notice, this list of conditions and the following disclaimer in the 141.1Sbrezak * documentation and/or other materials provided with the distribution. 151.17Sagc * 3. Neither the name of the University nor the names of its contributors 161.1Sbrezak * may be used to endorse or promote products derived from this software 171.1Sbrezak * without specific prior written permission. 181.1Sbrezak * 191.1Sbrezak * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 201.1Sbrezak * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 211.1Sbrezak * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 221.1Sbrezak * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 231.1Sbrezak * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 241.1Sbrezak * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 251.1Sbrezak * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 261.1Sbrezak * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 271.1Sbrezak * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 281.1Sbrezak * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 291.1Sbrezak * SUCH DAMAGE. 301.1Sbrezak * 311.3Scgd * @(#)signal.h 7.16 (Berkeley) 3/17/91 321.1Sbrezak */ 331.1Sbrezak 341.2Smycroft#ifndef _I386_SIGNAL_H_ 351.2Smycroft#define _I386_SIGNAL_H_ 361.1Sbrezak 371.16Sbjh21#include <sys/featuretest.h> 381.16Sbjh21 391.1Sbrezaktypedef int sig_atomic_t; 401.18Schristos 411.18Schristos#define __HAVE_SIGINFO 421.1Sbrezak 431.16Sbjh21#if defined(_NETBSD_SOURCE) 441.1Sbrezak/* 451.1Sbrezak * Get the "code" values 461.1Sbrezak */ 471.1Sbrezak#include <machine/trap.h> 481.1Sbrezak 491.1Sbrezak/* 501.1Sbrezak * Information pushed on stack when a signal is delivered. 511.1Sbrezak * This is used by the kernel to restore state following 521.1Sbrezak * execution of the signal handler. It is also made available 531.1Sbrezak * to the handler to allow it to restore state properly if 541.1Sbrezak * a non-standard exit is performed. 551.1Sbrezak */ 561.12Sthorpej#if defined(__LIBC12_SOURCE__) || defined(_KERNEL) 571.10Smycroftstruct sigcontext13 { 581.5Smycroft int sc_gs; 591.5Smycroft int sc_fs; 601.2Smycroft int sc_es; 611.2Smycroft int sc_ds; 621.2Smycroft int sc_edi; 631.2Smycroft int sc_esi; 641.2Smycroft int sc_ebp; 651.2Smycroft int sc_ebx; 661.2Smycroft int sc_edx; 671.2Smycroft int sc_ecx; 681.2Smycroft int sc_eax; 691.6Smycroft /* XXX */ 701.2Smycroft int sc_eip; 711.2Smycroft int sc_cs; 721.2Smycroft int sc_eflags; 731.2Smycroft int sc_esp; 741.2Smycroft int sc_ss; 751.5Smycroft 761.5Smycroft int sc_onstack; /* sigstack state to restore */ 771.13Sthorpej int sc_mask; /* signal mask to restore (old style) */ 781.6Smycroft 791.6Smycroft int sc_trapno; /* XXX should be above */ 801.6Smycroft int sc_err; 811.10Smycroft}; 821.10Smycroft#endif 831.9Smycroft 841.19Schristos#if defined(COMPAT_16) || defined(_KERNEL) 851.19Schristos/* 861.19Schristos * We limit this to kernel use only, so that legacy code will break. 871.19Schristos * XXX: We need to fix vm86 syscall, not to use sigcontext but __gregset_t 881.19Schristos * + sigset_t, but that is an API change. 891.19Schristos */ 901.10Smycroftstruct sigcontext { 911.10Smycroft int sc_gs; 921.10Smycroft int sc_fs; 931.10Smycroft int sc_es; 941.10Smycroft int sc_ds; 951.10Smycroft int sc_edi; 961.10Smycroft int sc_esi; 971.10Smycroft int sc_ebp; 981.10Smycroft int sc_ebx; 991.10Smycroft int sc_edx; 1001.10Smycroft int sc_ecx; 1011.10Smycroft int sc_eax; 1021.10Smycroft /* XXX */ 1031.10Smycroft int sc_eip; 1041.10Smycroft int sc_cs; 1051.10Smycroft int sc_eflags; 1061.10Smycroft int sc_esp; 1071.10Smycroft int sc_ss; 1081.10Smycroft 1091.10Smycroft int sc_onstack; /* sigstack state to restore */ 1101.14Sthorpej int __sc_mask13; /* signal mask to restore (old style) */ 1111.10Smycroft 1121.10Smycroft int sc_trapno; /* XXX should be above */ 1131.10Smycroft int sc_err; 1141.10Smycroft 1151.10Smycroft sigset_t sc_mask; /* signal mask to restore (new style) */ 1161.1Sbrezak}; 1171.15Sthorpej 1181.15Sthorpej/* 1191.15Sthorpej * The following macros are used to convert from a ucontext to sigcontext, 1201.15Sthorpej * and vice-versa. This is for building a sigcontext to deliver to old-style 1211.15Sthorpej * signal handlers, and converting back (in the event the handler modifies 1221.15Sthorpej * the context). 1231.15Sthorpej */ 1241.15Sthorpej#define _MCONTEXT_TO_SIGCONTEXT(uc, sc) \ 1251.15Sthorpejdo { \ 1261.15Sthorpej (sc)->sc_gs = (uc)->uc_mcontext.__gregs[_REG_GS]; \ 1271.15Sthorpej (sc)->sc_fs = (uc)->uc_mcontext.__gregs[_REG_FS]; \ 1281.15Sthorpej (sc)->sc_es = (uc)->uc_mcontext.__gregs[_REG_ES]; \ 1291.15Sthorpej (sc)->sc_ds = (uc)->uc_mcontext.__gregs[_REG_DS]; \ 1301.15Sthorpej (sc)->sc_edi = (uc)->uc_mcontext.__gregs[_REG_EDI]; \ 1311.15Sthorpej (sc)->sc_esi = (uc)->uc_mcontext.__gregs[_REG_ESI]; \ 1321.15Sthorpej (sc)->sc_ebp = (uc)->uc_mcontext.__gregs[_REG_EBP]; \ 1331.15Sthorpej (sc)->sc_ebx = (uc)->uc_mcontext.__gregs[_REG_EBX]; \ 1341.15Sthorpej (sc)->sc_edx = (uc)->uc_mcontext.__gregs[_REG_EDX]; \ 1351.15Sthorpej (sc)->sc_ecx = (uc)->uc_mcontext.__gregs[_REG_ECX]; \ 1361.15Sthorpej (sc)->sc_eax = (uc)->uc_mcontext.__gregs[_REG_EAX]; \ 1371.15Sthorpej (sc)->sc_eip = (uc)->uc_mcontext.__gregs[_REG_EIP]; \ 1381.15Sthorpej (sc)->sc_cs = (uc)->uc_mcontext.__gregs[_REG_CS]; \ 1391.15Sthorpej (sc)->sc_eflags = (uc)->uc_mcontext.__gregs[_REG_EFL]; \ 1401.15Sthorpej (sc)->sc_esp = (uc)->uc_mcontext.__gregs[_REG_UESP]; \ 1411.15Sthorpej (sc)->sc_ss = (uc)->uc_mcontext.__gregs[_REG_SS]; \ 1421.15Sthorpej (sc)->sc_trapno = (uc)->uc_mcontext.__gregs[_REG_TRAPNO]; \ 1431.15Sthorpej (sc)->sc_err = (uc)->uc_mcontext.__gregs[_REG_ERR]; \ 1441.15Sthorpej} while (/*CONSTCOND*/0) 1451.15Sthorpej 1461.15Sthorpej#define _SIGCONTEXT_TO_MCONTEXT(sc, uc) \ 1471.15Sthorpejdo { \ 1481.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_GS] = (sc)->sc_gs; \ 1491.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_FS] = (sc)->sc_fs; \ 1501.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_ES] = (sc)->sc_es; \ 1511.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_DS] = (sc)->sc_ds; \ 1521.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_EDI] = (sc)->sc_edi; \ 1531.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_ESI] = (sc)->sc_esi; \ 1541.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_EBP] = (sc)->sc_ebp; \ 1551.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_EBX] = (sc)->sc_ebx; \ 1561.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_EDX] = (sc)->sc_edx; \ 1571.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_ECX] = (sc)->sc_ecx; \ 1581.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_EAX] = (sc)->sc_eax; \ 1591.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_EIP] = (sc)->sc_eip; \ 1601.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_CS] = (sc)->sc_cs; \ 1611.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_EFL] = (sc)->sc_eflags; \ 1621.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_UESP] = (sc)->sc_esp; \ 1631.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_UESP] = (sc)->sc_esp; \ 1641.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_SS] = (sc)->sc_ss; \ 1651.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_TRAPNO] = (sc)->sc_trapno; \ 1661.15Sthorpej (uc)->uc_mcontext.__gregs[_REG_ERR] = (sc)->sc_err; \ 1671.15Sthorpej} while (/*CONSTCOND*/0) 1681.19Schristos#endif 1691.1Sbrezak 1701.1Sbrezak#define sc_sp sc_esp 1711.1Sbrezak#define sc_fp sc_ebp 1721.1Sbrezak#define sc_pc sc_eip 1731.2Smycroft#define sc_ps sc_eflags 1741.1Sbrezak 1751.16Sbjh21#endif /* _NETBSD_SOURCE */ 1761.4Sjtc#endif /* !_I386_SIGNAL_H_ */ 177