📄 winsig.c
字号:
/***
*winsig.c - C signal support
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
* Defines signal(), raise() and supporting functions.
*
*******************************************************************************/
#include <cruntime.h>
#include <errno.h>
#include <float.h>
#include <malloc.h>
#include <mtdll.h>
#include <oscalls.h>
#include <signal.h>
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
#include <dbgint.h>
#include <internal.h>
/*
* look up the first entry in the exception-action table corresponding to
* the given signal
*/
static struct _XCPT_ACTION * __cdecl siglookup(int, struct _XCPT_ACTION *);
/*
* variables holding action codes (and code pointers) for SIGINT, SIGBRK,
* SIGABRT and SIGTERM.
*
* note that the disposition (i.e., action to be taken upon receipt) of
* these signals is defined on a per-process basis (not per-thread)!!
*/
static _PHNDLR ctrlc_action = SIG_DFL; /* SIGINT */
static _PHNDLR ctrlbreak_action = SIG_DFL; /* SIGBREAK */
static _PHNDLR abort_action = SIG_DFL; /* SIGABRT */
static _PHNDLR term_action = SIG_DFL; /* SIGTERM */
/*
* flag indicated whether or not a handler has been installed to capture
* ^C and ^Break events.
*/
static int ConsoleCtrlHandler_Installed = 0;
#define _SIGHUP_IGNORE 1
#define _SIGQUIT_IGNORE 3
#define _SIGPIPE_IGNORE 13
#define _SIGIOINT_IGNORE 16
#define _SIGSTOP_IGNORE 17
void __cdecl _initp_misc_winsig(void* enull)
{
ctrlc_action = (_PHNDLR) enull; /* SIGINT */
ctrlbreak_action = (_PHNDLR) enull; /* SIGBREAK */
abort_action = (_PHNDLR) enull; /* SIGABRT */
term_action = (_PHNDLR) enull; /* SIGTERM */
}
/***
*static BOOL WINAPI ctrlevent_capture(DWORD CtrlType) - capture ^C and ^Break events
*
*Purpose:
* Capture ^C and ^Break events from the console and dispose of them
* according the values in ctrlc_action and ctrlbreak_action, resp.
* This is the routine that evokes the user-defined action for SIGINT
* (^C) or SIGBREAK (^Break) installed by a call to signal().
*
*Entry:
* DWORD CtrlType - indicates type of event, two values:
* CTRL_C_EVENT
* CTRL_BREAK_EVENT
*
*Exit:
* Returns TRUE to indicate the event (signal) has been handled.
* Otherwise, returns FALSE.
*
*Exceptions:
*
*******************************************************************************/
static BOOL WINAPI ctrlevent_capture (
DWORD CtrlType
)
{
_PHNDLR ctrl_action;
_PHNDLR *pctrl_action;
int sigcode;
_mlock(_SIGNAL_LOCK);
__try {
/*
* Identify the type of event and fetch the corresponding action
* description.
*/
if ( CtrlType == CTRL_C_EVENT ) {
pctrl_action = &ctrlc_action;
ctrl_action = (_PHNDLR) DecodePointer(*pctrl_action);
sigcode = SIGINT;
}
else {
pctrl_action = &ctrlbreak_action;
ctrl_action = (_PHNDLR) DecodePointer(*pctrl_action);
sigcode = SIGBREAK;
}
if ( !(ctrl_action == SIG_DFL) && !(ctrl_action == SIG_IGN) )
/*
* Reset the action to be SIG_DFL
*/
*pctrl_action = (_PHNDLR) _encoded_null();
}
__finally {
_munlock(_SIGNAL_LOCK);
}
if ( ctrl_action == SIG_DFL )
/*
* return FALSE, indicating the event has NOT been handled
*/
return FALSE;
if ( ctrl_action != SIG_IGN ) {
(*ctrl_action)(sigcode);
}
/*
* Return TRUE, indicating the event has been handled (which may
* mean it's being ignored)
*/
return TRUE;
}
/***
*_PHNDLR signal(signum, sigact) - Define a signal handler
*
*Purpose:
* The signal routine allows the user to define what action should
* be taken when various signals occur. The Win32/Dosx32 implementation
* supports seven signals, divided up into three general groups
*
* 1. Signals corresponding to OS exceptions. These are:
* SIGFPE
* SIGILL
* SIGSEGV
* Signal actions for these signals are installed by altering the
* XcptAction and SigAction fields for the appropriate entry in the
* exception-action table (XcptActTab[]).
*
* 2. Signals corresponding to ^C and ^Break. These are:
* SIGINT
* SIGBREAK
* Signal actions for these signals are installed by altering the
* _ctrlc_action and _ctrlbreak_action variables.
*
* 3. Signals which are implemented only in the runtime. That is, they
* occur only as the result of a call to raise().
* SIGABRT
* SIGTERM
*
*
*Entry:
* int signum signal type. recognized signal types are:
*
* SIGABRT (ANSI)
* SIGBREAK
* SIGFPE (ANSI)
* SIGILL (ANSI)
* SIGINT (ANSI)
* SIGSEGV (ANSI)
* SIGTERM (ANSI)
* SIGABRT_COMPAT
*
* _PHNDLR sigact signal handling function or action code. the action
* codes are:
*
* SIG_DFL - take the default action, whatever that may
* be, upon receipt of this type type of signal.
*
* SIG_DIE - *** ILLEGAL ***
* special code used in the XcptAction field of an
* XcptActTab[] entry to indicate that the runtime is
* to terminate the process upon receipt of the exception.
* not accepted as a value for sigact.
*
* SIG_IGN - ignore this type of signal
*
* [function address] - transfer control to this address
* when a signal of this type occurs.
*
*Exit:
* Good return:
* Signal returns the previous value of the signal handling function
* (e.g., SIG_DFL, SIG_IGN, etc., or [function address]). This value is
* returned in DX:AX.
*
* Error return:
* Signal returns -1 and errno is set to EINVAL. The error return is
* generally taken if the user submits bogus input values.
*
*Exceptions:
* None.
*
*******************************************************************************/
_PHNDLR __cdecl signal(
int signum,
_PHNDLR sigact
)
{
struct _XCPT_ACTION *pxcptact;
_PHNDLR oldsigact;
int Error=0;
_ptiddata ptd;
BOOL SetConsoleCtrlError = FALSE;
/*
* Check for values of sigact supported on other platforms but not
* on this one. Also, make sure sigact is not SIG_DIE
*/
if ( (sigact == SIG_ACK) || (sigact == SIG_SGE) )
goto sigreterror;
/*
* Take care of all signals which do not correspond to exceptions
* in the host OS. Those are:
*
* SIGINT
* SIGBREAK
* SIGABRT
* SIGTERM
*
*/
if ( (signum == SIGINT) || (signum == SIGBREAK) || (signum == SIGABRT)
|| (signum == SIGABRT_COMPAT) || (signum == SIGTERM) ) {
_mlock( _SIGNAL_LOCK );
__try {
/*
* if SIGINT or SIGBREAK, make sure the handler is installed
* to capture ^C and ^Break events.
*/
if ( ((signum == SIGINT) || (signum == SIGBREAK)) &&
!ConsoleCtrlHandler_Installed )
{
if ( SetConsoleCtrlHandler(ctrlevent_capture, TRUE)
== TRUE )
{
ConsoleCtrlHandler_Installed = TRUE;
}
else
{
_doserrno = GetLastError();
SetConsoleCtrlError=TRUE;
}
}
switch (signum) {
case SIGINT:
oldsigact = (_PHNDLR) DecodePointer(ctrlc_action);
if(sigact!=SIG_GET)
{
ctrlc_action = (_PHNDLR) EncodePointer(sigact);
}
break;
case SIGBREAK:
oldsigact = (_PHNDLR) DecodePointer(ctrlbreak_action);
if(sigact!=SIG_GET)
{
ctrlbreak_action = (_PHNDLR) EncodePointer(sigact);
}
break;
case SIGABRT:
case SIGABRT_COMPAT:
oldsigact = (_PHNDLR) DecodePointer(abort_action);
if(sigact!=SIG_GET)
{
abort_action = (_PHNDLR) EncodePointer(sigact);
}
break;
case SIGTERM:
oldsigact = (_PHNDLR) DecodePointer(term_action);
if(sigact!=SIG_GET)
{
term_action = (_PHNDLR) EncodePointer(sigact);
}
break;
}
}
__finally {
_munlock( _SIGNAL_LOCK );
}
if (SetConsoleCtrlError) {
goto sigreterror;
}
goto sigretok;
}
/*
* If we reach here, signum is supposed to be one the signals which
* correspond to exceptions in the host OS. Those are:
*
* SIGFPE
* SIGILL
* SIGSEGV
*/
/*
* Make sure signum is one of the remaining supported signals.
*/
if ( (signum != SIGFPE) && (signum != SIGILL) && (signum != SIGSEGV) )
goto sigreterror;
/*
* Fetch the tid data table entry for this thread
*/
ptd = _getptd_noexit();
if (!ptd)
goto sigreterror;
/*
* Check that there a per-thread instance of the exception-action
* table for this thread. if there isn't, create one.
*/
if ( ptd->_pxcptacttab == _XcptActTab )
/*
* allocate space for an exception-action table
*/
if ( (ptd->_pxcptacttab = _malloc_crt(_XcptActTabSize)) != NULL )
/*
* initialize the table by copying over the contents
* of _XcptActTab[]
*/
(void) memcpy(ptd->_pxcptacttab, _XcptActTab,
_XcptActTabSize);
else
/*
* cannot create exception-action table, return
* error to caller
*/
goto sigreterror;
/*
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -