Signals are standardized messages sent to a running
program to trigger specific behavior, such as quitting or error handling. They are a limited form of
inter-process communication
In computer science, interprocess communication (IPC) is the sharing of data between running Process (computing), processes in a computer system. Mechanisms for IPC may be provided by an operating system. Applications which use IPC are often cat ...
(IPC), typically used in
Unix
Unix (, ; trademarked as UNIX) is a family of multitasking, multi-user computer operating systems that derive from the original AT&T Unix, whose development started in 1969 at the Bell Labs research center by Ken Thompson, Dennis Ritchie, a ...
,
Unix-like
A Unix-like (sometimes referred to as UN*X, *nix or *NIX) operating system is one that behaves in a manner similar to a Unix system, although not necessarily conforming to or being certified to any version of the Single UNIX Specification. A Uni ...
, and other
POSIX
The Portable Operating System Interface (POSIX; ) is a family of standards specified by the IEEE Computer Society for maintaining compatibility between operating systems. POSIX defines application programming interfaces (APIs), along with comm ...
-compliant operating systems.
A signal is an
asynchronous notification sent to a
process
A process is a series or set of activities that interact to produce a result; it may occur once-only or be recurrent or periodic.
Things called a process include:
Business and management
* Business process, activities that produce a specific s ...
or to a specific
thread within the same process to notify it of an event. Common uses of signals are to interrupt, suspend, terminate or
kill a process. Signals originated in 1970s
Bell Labs
Nokia Bell Labs, commonly referred to as ''Bell Labs'', is an American industrial research and development company owned by Finnish technology company Nokia. With headquarters located in Murray Hill, New Jersey, Murray Hill, New Jersey, the compa ...
Unix and were later specified in the
POSIX
The Portable Operating System Interface (POSIX; ) is a family of standards specified by the IEEE Computer Society for maintaining compatibility between operating systems. POSIX defines application programming interfaces (APIs), along with comm ...
standard.
When a signal is sent, the operating system interrupts the target process's normal
flow of execution to deliver the signal. Execution can be interrupted during any
non-atomic instruction. If the process has previously registered a signal handler, that routine is executed. Otherwise, the default signal handler is executed.
Embedded programs may find signals useful for inter-process communications, as signals are notable for their
algorithmic efficiency.
Signals are similar to
interrupt
In digital computers, an interrupt (sometimes referred to as a trap) is a request for the processor to ''interrupt'' currently executing code (when permitted), so that the event can be processed in a timely manner. If the request is accepted ...
s, the difference being that interrupts are mediated by the
CPU and handled by the
kernel while signals are mediated by the kernel (possibly via system calls) and handled by individual
processes. The kernel may pass an interrupt as a signal to the process that caused it (typical examples are
SIGSEGV,
SIGBUS,
SIGILL and
SIGFPE
Signals are standardized messages sent to a running program to trigger specific behavior, such as quitting or error handling. They are a limited form of inter-process communication (IPC), typically used in Unix, Unix-like, and other POSIX-co ...
).
History
*
Version 1 Unix (1971) had separate
system call
In computing, a system call (syscall) is the programmatic way in which a computer program requests a service from the operating system on which it is executed. This may include hardware-related services (for example, accessing a hard disk drive ...
s to catch interrupts, quits, and machine traps.
* appeared in
Version 2 (1972).
*
Version 4 (1973) combined all traps into one call, .
*
Version 5 (1974) could send arbitrary signals.
* In
Version 7 (1979) each numbered trap received a symbolic name.
*
Plan 9 from Bell Labs
Plan 9 from Bell Labs is a distributed operating system which originated from the Computing Science Research Center (CSRC) at Bell Labs in the mid-1980s and built on UNIX concepts first developed there in the late 1960s. Since 2000, Plan 9 has ...
(late 80s) replaced signals with ''notes'', which permit sending short, arbitrary strings.
Sending signals
The system call sends a specified signal to a specified process, if permissions allow. Similarly, the command allows a user to send signals to processes. The library function sends the specified signal to the current process.
Exceptions such as
division by zero
In mathematics, division by zero, division (mathematics), division where the divisor (denominator) is 0, zero, is a unique and problematic special case. Using fraction notation, the general example can be written as \tfrac a0, where a is the di ...
,
segmentation violation (
SIGSEGV), and floating point exception (
SIGFPE
Signals are standardized messages sent to a running program to trigger specific behavior, such as quitting or error handling. They are a limited form of inter-process communication (IPC), typically used in Unix, Unix-like, and other POSIX-co ...
) will cause a
core dump
In computing, a core dump, memory dump, crash dump, storage dump, system dump, or ABEND dump consists of the recorded state of the working Computer storage, memory of a computer program at a specific time, generally when the program has crash (com ...
and terminate the program.
The kernel can generate signals to notify processes of events. For example,
SIGPIPE will be generated when a process writes to a pipe which has been closed by the reader; by default, this causes the process to terminate, which is convenient when constructing
shell pipelines.
Typing certain key combinations at the
controlling terminal of a running process causes the system to send it certain signals:
*
Ctrl-C (in older Unixes, DEL) sends an INT signal ("interrupt",
SIGINT); by default, this causes the process to terminate.
*
Ctrl-Z sends a TSTP signal ("terminal stop",
SIGTSTP); by default, this causes the process to suspend execution.
*
Ctrl-\ sends a QUIT signal (
SIGQUIT); by default, this causes the process to terminate and dump core.
*
Ctrl-T (not supported on all UNIXes) sends an INFO signal (
SIGINFO); by default, and if supported by the command, this causes the operating system to show information about the running command.
These default key combinations with modern operating systems can be changed with the command.
Handling signals
Signal handlers can be installed with the
or system call. If a signal handler is not installed for a particular signal, the default handler is used. Otherwise the signal is intercepted and the signal handler is invoked. The process can also specify two default behaviors, without creating a handler: ignore the signal (SIG_IGN) and use the default signal handler (SIG_DFL). There are two signals which cannot be intercepted and handled:
SIGKILL and
SIGSTOP.
Risks
Signal handling is vulnerable to
race condition
A race condition or race hazard is the condition of an electronics, software, or other system where the system's substantive behavior is dependent on the sequence or timing of other uncontrollable events, leading to unexpected or inconsistent ...
s. As signals are asynchronous, another signal (even of the same type) can be delivered to the process during execution of the signal handling routine.
The call can be used to block and unblock delivery of signals. Blocked signals are not delivered to the process until unblocked. Signals that cannot be ignored (SIGKILL and SIGSTOP) cannot be blocked.
Signals can cause the interruption of a system call in progress, leaving it to the application to manage a
non-transparent restart.
Signal handlers should be written in a way that does not result in any unwanted side-effects, e.g. alteration, signal mask alteration, signal disposition change, and other global
process
A process is a series or set of activities that interact to produce a result; it may occur once-only or be recurrent or periodic.
Things called a process include:
Business and management
* Business process, activities that produce a specific s ...
attribute changes. Use of non-
reentrant functions, e.g., or , inside signal handlers is also unsafe. In particular, the POSIX specification and the Linux man page require that all system functions directly or ''indirectly'' called from a signal function are ''async-signal safe''. The man page gives a list of such async-signal safe system functions (practically the
system call
In computing, a system call (syscall) is the programmatic way in which a computer program requests a service from the operating system on which it is executed. This may include hardware-related services (for example, accessing a hard disk drive ...
s), otherwise it is an
undefined behavior. It is suggested to simply set some variable in a signal handler, and to test it elsewhere.
Signal handlers can instead put the signal into a
queue and immediately return. The main thread will then continue "uninterrupted" until signals are taken from the queue, such as in an
event loop. "Uninterrupted" here means that operations that
block
Block or blocked may refer to:
Arts, entertainment and media Broadcasting
* Block programming, the result of a programming strategy in broadcasting
* W242BX, a radio station licensed to Greenville, South Carolina, United States known as ''96.3 ...
may return prematurely and
must be resumed, as mentioned above. Signals should be processed from the queue on the main thread and not by
worker pools, as that reintroduces the problem of asynchronicity. However, managing a queue is not possible in an async-signal safe way with only , as only single reads and writes to such variables are guaranteed to be atomic, not increments or (fetch-and)-decrements, as would be required for a queue. Thus, effectively, only one signal per handler can be queued safely with until it has been processed.
Relationship with hardware exceptions
A
process
A process is a series or set of activities that interact to produce a result; it may occur once-only or be recurrent or periodic.
Things called a process include:
Business and management
* Business process, activities that produce a specific s ...
's execution may result in the generation of a hardware
exception, for instance, if the process attempts to divide by zero or incurs a
page fault
In computing, a page fault is an exception that the memory management unit (MMU) raises when a process accesses a memory page without proper preparations. Accessing the page requires a mapping to be added to the process's virtual address space ...
.
In
Unix-like
A Unix-like (sometimes referred to as UN*X, *nix or *NIX) operating system is one that behaves in a manner similar to a Unix system, although not necessarily conforming to or being certified to any version of the Single UNIX Specification. A Uni ...
operating systems, this event automatically changes the processor
context to start executing a
kernel exception handler. In case of some exceptions, such as a
page fault
In computing, a page fault is an exception that the memory management unit (MMU) raises when a process accesses a memory page without proper preparations. Accessing the page requires a mapping to be added to the process's virtual address space ...
, the kernel has sufficient information to fully handle the event itself and resume the process's execution.
Other exceptions, however, the kernel cannot process intelligently and it must instead defer the exception handling operation to the faulting process. This deferral is achieved via the signal mechanism, wherein the kernel sends to the process a signal corresponding to the current exception. For example, if a process attempted integer divide by zero on an
x86
x86 (also known as 80x86 or the 8086 family) is a family of complex instruction set computer (CISC) instruction set architectures initially developed by Intel, based on the 8086 microprocessor and its 8-bit-external-bus variant, the 8088. Th ...
CPU, a ''divide error'' exception would be generated and cause the kernel to send the
SIGFPE
Signals are standardized messages sent to a running program to trigger specific behavior, such as quitting or error handling. They are a limited form of inter-process communication (IPC), typically used in Unix, Unix-like, and other POSIX-co ...
signal to the process.
Similarly, if the process attempted to access a memory address outside of its
virtual address space
In computing, a virtual address space (VAS) or address space is the set of ranges of virtual addresses that an operating system makes available to a process. The range of virtual addresses usually starts at a low address and can extend to the h ...
, the kernel would notify the process of this violation via a
SIGSEGV (
segmentation violation signal). The exact mapping between signal names and exceptions is obviously dependent upon the CPU, since exception types differ between architectures.
POSIX signals
The list below documents the signals specified in the
Single Unix Specification
The Single UNIX Specification (SUS) is a standard for computer operating systems, compliance with which is required to qualify for using the "UNIX" trademark. The standard specifies programming interfaces for the C language, a command-line shell, ...
Version 5. All signals are defined as macro constants in the
<signal.h>
header file. The name of the macro constant consists of a "SIG"
prefix
A prefix is an affix which is placed before the stem of a word. Particularly in the study of languages, a prefix is also called a preformative, because it alters the form of the word to which it is affixed.
Prefixes, like other affixes, can b ...
followed by a mnemonic name for the signal.
A process can define
how to handle incoming POSIX signals. If a process does not define a behaviour for a signal, then the ''default handler'' for that signal is being used. The table below lists some default actions for POSIX-compliant UNIX systems, such as
FreeBSD
FreeBSD is a free-software Unix-like operating system descended from the Berkeley Software Distribution (BSD). The first version was released in 1993 developed from 386BSD, one of the first fully functional and free Unix clones on affordable ...
,
OpenBSD
OpenBSD is a security-focused operating system, security-focused, free software, Unix-like operating system based on the Berkeley Software Distribution (BSD). Theo de Raadt created OpenBSD in 1995 by fork (software development), forking NetBSD ...
and
Linux
Linux ( ) is a family of open source Unix-like operating systems based on the Linux kernel, an kernel (operating system), operating system kernel first released on September 17, 1991, by Linus Torvalds. Linux is typically package manager, pac ...
.
; ''Portable number:''
: For most signals the corresponding signal number is implementation-defined. This column lists the numbers specified in the POSIX standard.
; ''Actions explained:''
: Terminate Abnormal termination of the process. The process is terminated with all the consequences of _exit() except that the status made available to wait() and waitpid() indicates abnormal termination by the specified signal.
: Terminate (core dump) Abnormal termination of the process. Additionally, implementation-defined abnormal termination actions, such as creation of a core file, may occur.
: Ignore Ignore the signal.
: Stop Stop (or suspend) the process.
: Continue Continue the process, if it is stopped; otherwise, ignore the signal.
; and
: The SIGABRT signal is sent to a process to tell it to
abort, i.e. to terminate. The signal is usually initiated by the process itself when it calls
abort()
function of the
C Standard Library
The C standard library, sometimes referred to as libc, is the standard library for the C (programming language), C programming language, as specified in the ISO C standard.International Organization for Standardization, ISO/International Electrote ...
, but it can be sent to the process from outside like any other signal.
: SIGIOT indicates that the CPU has executed an explicit "trap" instruction (without a defined function), or an unimplemented instruction (when emulation is unavailable).
::''Note: "input/output trap" is a misnomer for any CPU "trap" instruction. The term reflects early usage of such instructions, predominantly to implement I/O functions, but they are not inherently tied to device I/O and may be used for other purposes such as communication between virtual & real hosts.''
: SIGIOT and SIGABRT are typically the same signal, and receipt of that signal may indicate any of the conditions above.
; , and
: The SIGALRM, SIGVTALRM and SIGPROF signals are sent to a process when the corresponding time limit is reached. The process sets these time limits by calling
alarm
or
setitimer
. The time limit for SIGALRM is based on real or clock time; SIGVTALRM is based on CPU time used by the process; and SIGPROF is based on CPU time used by the process and by the system on its behalf (known as a ''profiling timer''). On some systems SIGALRM may be used internally by the implementation of the
sleep
function.
;
: The
SIGBUS signal is sent to a process when it causes a
bus error
In computing, a bus error is a Trap (computing), fault raised by hardware, notifying an operating system (OS) that a process is trying to access computer data storage, memory that the Central processing unit, CPU cannot physically address: an inva ...
. The conditions that lead to the signal being sent are, for example, incorrect memory access alignment or non-existent physical address.
;
: The
SIGCHLD signal is sent to a process when a
child process
A child process (CP) in computing is a process created by another process (the parent process). This technique pertains to multitasking operating systems, and is sometimes called a subprocess or traditionally a subtask.
There are two major proce ...
terminates, is stopped, or resumes after being stopped. One common usage of the signal is to instruct the operating system to clean up the resources used by a child process after its termination without an explicit call to the
wait
system call.
;
: The
SIGCONT signal instructs the operating system to continue (restart) a process previously paused by the SIGSTOP or SIGTSTP signal. One important use of this signal is in
job control in the
Unix shell
A Unix shell is a Command-line_interface#Command-line_interpreter, command-line interpreter or shell (computing), shell that provides a command line user interface for Unix-like operating systems. The shell is both an interactive command languag ...
.
;
: The SIGFPE signal is sent to a process when an exceptional (but not necessarily erroneous) condition has been detected in the floating-point or integer arithmetic hardware. This may include
division by zero
In mathematics, division by zero, division (mathematics), division where the divisor (denominator) is 0, zero, is a unique and problematic special case. Using fraction notation, the general example can be written as \tfrac a0, where a is the di ...
, floating-point underflow or overflow,
integer overflow
In computer programming, an integer overflow occurs when an arithmetic operation on integers attempts to create a numeric value that is outside of the range that can be represented with a given number of digits – either higher than the maximu ...
, an invalid operation or an inexact computation. Behaviour may differ depending on hardware.
;
: The
SIGHUP signal is sent to a process when its controlling terminal is closed. It was originally designed to notify the process of a
serial line drop (a hangup). In modern systems, this signal usually means that the controlling
pseudo or virtual terminal has been closed.
Many
daemons (who have no controlling terminal) interpret receipt of this signal as a request to reload their configuration files and flush/reopen their logfiles instead of exiting.
nohup is a command to make a command ignore the signal.
;
: The SIGILL signal is sent to a process when it attempts to execute an illegal, malformed, unknown, or privileged
instruction.
;
: The SIGINT signal is sent to a process by its controlling terminal when a user wishes to interrupt the process. This is typically initiated by pressing
, but on some systems, the "
delete" character or "
break" key can be used.
;
: The SIGKILL signal is sent to a process to cause it to terminate immediately (kill). In contrast to SIGTERM and SIGINT, this signal cannot be caught or ignored, and the receiving process cannot perform any clean-up upon receiving this signal. The following exceptions apply:
:*
Zombie process
On Unix and Unix-like computer operating systems, a zombie process or defunct process is a process that has completed execution (via the exit system call) but still has an entry in the process table: it is a process in the " terminated stat ...
es cannot be killed since they are already dead and waiting for their parent processes to reap them.
:* Processes that are in the blocked state will not die until they wake up again.
:* The ''
init
In Unix-based computer operating systems, init (short for ''initialization'') is the first process started during booting of the operating system. Init is a daemon process that continues running until the system is shut down. It is the direc ...
'' process is special: It does not get signals that it does not want to handle, and thus it can ignore SIGKILL. An exception from this rule is while init is
ptraced on Linux.
:* An
uninterruptibly sleeping process may not terminate (and free its resources) even when sent SIGKILL. This is one of the few cases in which a UNIX system may have to be rebooted to solve a temporary software problem.
:SIGKILL is used as a last resort when terminating processes in most system
shutdown procedures if it does not voluntarily exit in response to SIGTERM. To speed the computer shutdown procedure, Mac OS X 10.6, aka
Snow Leopard, will send SIGKILL to applications that have marked themselves "clean" resulting in faster shutdown times with, presumably, no ill effects. The command has a similar, while dangerous effect, when executed e.g. in Linux; it does not let programs save unsaved data. It has other options, and with none, uses the safer SIGTERM signal.
;
: The SIGPIPE signal is sent to a process when it attempts to write to a
pipe without a process connected to the other end.
;
: The SIGPOLL signal is sent when an event occurred on an explicitly watched file descriptor. Using it effectively leads to making
asynchronous I/O
In computer science, asynchronous I/O (also non-sequential I/O) is a form of input/output processing that permits other processing to continue before the I/O operation has finished. A name used for asynchronous I/O in the Windows API is '' over ...
requests since the kernel will poll the descriptor in place of the caller. It provides an alternative to active
polling.
; to
: The SIGRTMIN to SIGRTMAX signals are intended to be used for user-defined purposes. They are real-time signals.
;
: The SIGQUIT signal is sent to a process by its controlling terminal when the user requests that the process quit and perform a
core dump
In computing, a core dump, memory dump, crash dump, storage dump, system dump, or ABEND dump consists of the recorded state of the working Computer storage, memory of a computer program at a specific time, generally when the program has crash (com ...
.
;
: The
SIGSEGV signal is sent to a process when it makes an invalid virtual memory reference, or
segmentation fault, i.e. when it performs a segmentation violation.
;
: The
SIGSTOP signal instructs the operating system to stop a process for later resumption.
;
: The SIGSYS signal is sent to a process when it passes a bad argument to a
system call
In computing, a system call (syscall) is the programmatic way in which a computer program requests a service from the operating system on which it is executed. This may include hardware-related services (for example, accessing a hard disk drive ...
. In practice, this kind of signal is rarely encountered since applications rely on libraries (e.g.
libc
The C standard library, sometimes referred to as libc, is the standard library for the C programming language, as specified in the ISO C standard.ISO/ IEC (2018). '' ISO/IEC 9899:2018(E): Programming Languages - C §7'' Starting from the origina ...
) to make the call for them. SIGSYS can be received by applications violating the Linux
Seccomp security rules configured to restrict them. SIGSYS can also be used to emulate foreign system calls, e.g. emulate Windows system calls on Linux.
;
: The SIGTERM signal is sent to a process to request its termination. Unlike the SIGKILL signal, it can be caught and interpreted or ignored by the process. This allows the process to perform nice termination releasing resources and saving state if appropriate. SIGINT is nearly identical to SIGTERM.
;
: The
SIGTSTP signal is sent to a process by its controlling terminal to request it to stop (terminal stop). It is commonly initiated by the user pressing
. Unlike SIGSTOP, the process can register a signal handler for, or ignore, the signal.
; and
: The
SIGTTIN and
SIGTTOU signals are sent to a process when it attempts to read in or write out respectively from the
tty while in the
background. Typically, these signals are received only by processes under
job control;
daemons do not have controlling terminals and, therefore, should never receive these signals.
;
: The SIGTRAP signal is sent to a process when an exception (or trap) occurs: a condition that a
debugger
A debugger is a computer program used to test and debug other programs (the "target" programs). Common features of debuggers include the ability to run or halt the target program using breakpoints, step through code line by line, and display ...
has requested to be informed of for example, when a particular
function is executed, or when a particular
variable changes value.
;
: The
SIGURG signal is sent to a process when a
socket has urgent or
out-of-band data available to read.
; and
: The SIGUSR1 and SIGUSR2 signals are sent to a process to indicate user-defined conditions.
;
: The SIGXCPU signal is sent to a process when it has used up the
CPU for a duration that exceeds a certain predetermined user-settable value.
The arrival of a SIGXCPU signal provides the receiving process a chance to quickly save any intermediate results and to exit gracefully, before it is terminated by the operating system using the SIGKILL signal.
;
: The SIGXFSZ signal is sent to a process when it grows a file that exceeds the maximum allowed size.
;
: The SIGWINCH signal is sent to a process when its controlling terminal changes its size (a window change).
Miscellaneous signals
The following signals are not specified in the
POSIX
The Portable Operating System Interface (POSIX; ) is a family of standards specified by the IEEE Computer Society for maintaining compatibility between operating systems. POSIX defines application programming interfaces (APIs), along with comm ...
specification. They are, however, sometimes used on various systems.
;
: The SIGEMT signal is sent to a process when an emulator trap occurs. While an
emulator
In computing, an emulator is Computer hardware, hardware or software that enables one computer system (called the ''host'') to behave like another computer system (called the ''guest''). An emulator typically enables the host system to run sof ...
usually means software that executes other programs, in this case it means a program executed a
supervisor call instruction (EMT was the instruction for this purpose on the
DEC PDP-11 series of computers.)
;
: The SIGINFO signal is sent to a process when a status (info) request is received from the controlling terminal.
;
: The SIGPWR signal is sent to a process when the system experiences a
power failure
A power outage, also called a blackout, a power failure, a power blackout, a power loss, a power cut, or a power out is the complete loss of the electrical power network supply to an end user.
There are many causes of power failures in an el ...
.
;
: The SIGLOST signal is sent to a process when a file lock is lost.
;
: The SIGSTKFLT signal is sent to a process when the coprocessor experiences a stack fault (i.e. popping when the stack is empty or pushing when it is full).
It is defined by, but not used on Linux, where a
x87 coprocessor stack fault will generate SIGFPE instead.
;
: The SIGUNUSED signal is sent to a process when a system call with an unused system call number is made. It is synonymous with SIGSYS on most architectures.
;
: The SIGCLD signal is synonymous with SIGCHLD.
See also
*
Asynchronous procedure call (APC)
*
C signal handling
References
*
*
External links
Unix Signals Table, Ali Alanjawi, University of Pittsburgh* Introduction To Unix Signals Programming
Another Introduction to Unix Signals Programming(blog post, 2009)
* by Baris Simsek (stored by the
Internet Archive
The Internet Archive is an American 501(c)(3) organization, non-profit organization founded in 1996 by Brewster Kahle that runs a digital library website, archive.org. It provides free access to collections of digitized media including web ...
)
Signal Handlersby Henning Brauer
{{Inter-process communication
Inter-process communication
Control flow