.\" $OpenBSD: signal.3,v 1.34 2007/05/31 19:19:28 jmc Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 .\" The Regents of the University of California. All rights reserved. .\" .\" Redistribution and use in source and binary forms, with or without .\" modification, are permitted provided that the following conditions .\" are met: .\" 1. Redistributions of source code must retain the above copyright .\" notice, this list of conditions and the following disclaimer. .\" 2. Redistributions in binary form must reproduce the above copyright .\" notice, this list of conditions and the following disclaimer in the .\" documentation and/or other materials provided with the distribution. .\" 3. Neither the name of the University nor the names of its contributors .\" may be used to endorse or promote products derived from this software .\" without specific prior written permission. .\" .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" .Dd $Mdocdate: May 31 2007 $ .Dt SIGNAL 3 .Os .Sh NAME .Nm signal .Nd simplified software signal facilities .Sh SYNOPSIS .Fd #include .\" The following is Quite Ugly, but syntactically correct. .\" Don't try to fix it. .Ft void .Fn \*(lp*signal "int sigcatch" "void \*(lp*func\*(rp\*(lpint sigraised\*(rp\*(rp\*(rp\*(lpint" .Ft void .Fn \*(lp*bsd_signal "int sigcatch" "void \*(lp*func\*(rp\*(lpint sigraised\*(rp\*(rp\*(rp\*(lpint" .Sh DESCRIPTION The .Fn signal and .Fn bsd_signal facilities are simplified interfaces to the more general .Xr sigaction 2 facility. The .Fn bsd_signal interface is provided for source compatibility only. It is mainly used on systems where the standard .Fn signal does not have .Bx semantics. On .Ox the two interfaces are identical. .Pp Signals allow the manipulation of a process from outside its domain as well as allowing the process to manipulate itself or copies of itself (children). There are two general types of signals: those that cause termination of a process and those that do not. Signals which cause termination of a program might result from an irrecoverable error or might be the result of a user at a terminal typing the .Dq interrupt character. .Pp Signals are used when a process is stopped because it wishes to access its control terminal while in the background (see .Xr tty 4 ) . Signals are optionally generated when a process resumes after being stopped, when the status of child processes changes, or when input is ready at the control terminal. Most signals result in the termination of the process receiving them if no action is taken; some signals instead cause the process receiving them to be stopped, or are simply discarded if the process has not requested otherwise. .Pp Except for the .Dv SIGKILL and .Dv SIGSTOP signals, the .Fn signal function allows for any signal to be caught, to be ignored, or to generate an interrupt. These signals are defined in the file .Aq Pa signal.h : .Bl -column SIGVTALA "create core imag" .It Sy "Name Default Action Description" .It Dv SIGHUP No " terminate process" " terminal line hangup" .It Dv SIGINT No " terminate process" " interrupt program" .It Dv SIGQUIT No " create core image" " quit program" .It Dv SIGILL No " create core image" " illegal instruction" .It Dv SIGTRAP No " create core image" " trace trap" .It Dv SIGABRT No " create core image" Xr abort 3 call (formerly .Dv SIGIOT ) .It Dv SIGEMT No " create core image" " emulate instruction executed" .It Dv SIGFPE No " create core image" " floating-point exception" .It Dv SIGKILL No " terminate process" " kill program" .It Dv SIGBUS No " create core image" " bus error" .It Dv SIGSEGV No " create core image" " segmentation violation" .It Dv SIGSYS No " create core image" " system call given invalid argument" .It Dv SIGPIPE No " terminate process" " write on a pipe with no reader" .It Dv SIGALRM No " terminate process" " real-time timer expired" .It Dv SIGTERM No " terminate process" " software termination signal" .It Dv SIGURG No " discard signal" " urgent condition present on socket" .It Dv SIGSTOP No " stop process" " stop (cannot be caught or ignored)" .It Dv SIGTSTP No " stop process" " stop signal generated from keyboard" .It Dv SIGCONT No " discard signal" " continue after stop" .It Dv SIGCHLD No " discard signal" " child status has changed" .It Dv SIGTTIN No " stop process" " background read attempted from control terminal" .It Dv SIGTTOU No " stop process" " background write attempted to control terminal" .It Dv SIGIO No " discard signal" Tn " I/O" is possible on a descriptor (see .Xr fcntl 2 ) .It Dv SIGXCPU No " terminate process" " CPU time limit exceeded (see" .Xr setrlimit 2 ) .It Dv SIGXFSZ No " terminate process" " file size limit exceeded (see" .Xr setrlimit 2 ) .It Dv SIGVTALRM No " terminate process" " virtual time alarm (see" .Xr setitimer 2 ) .It Dv SIGPROF No " terminate process" " profiling timer alarm (see" .Xr setitimer 2 ) .It Dv SIGWINCH No " discard signal" " window size change" .It Dv SIGINFO No " discard signal" " status request from keyboard" .It Dv SIGUSR1 No " terminate process" " user-defined signal 1" .It Dv SIGUSR2 No " terminate process" " user-defined signal 2" .El .Pp The .Fa func argument is a function to be called as the action upon receipt of the signal .Fa sigcatch . The function will be called with one argument, .Fa sigraised , which is the signal raised (thus the same function, .Fa func , can be used by more than one signal). To set the default action of the signal to occur as listed above, .Fa func should be .Dv SIG_DFL . A .Dv SIG_DFL resets the default action. To ignore the signal, .Fa func should be .Dv SIG_IGN . This will cause subsequent instances of the signal to be ignored and pending instances to be discarded. If .Dv SIG_IGN is not used, further occurrences of the signal are automatically blocked and .Fa func is called. .Pp If the .Fa func is set to .Dv SIG_IGN for the .Dv SIGCHLD signal, the system will not create zombie processes when children of the calling process exit. If the calling process subsequently issues a .Xr wait 2 (or equivalent), it blocks until all of the calling process's child processes terminate, and then returns a value of \-1 with .Va errno set to .Dv ECHILD . .Bf -symbolic This differs from historical .Bx behavior but is consistent with .At V as well as the .St -xpg4.2 . .Ef .Pp The handled signal is unblocked when .Fa func returns and the process continues from where it left off when the signal occurred. .Bf -symbolic Unlike previous signal facilities, the handler func() remains installed after a signal has been delivered. .Ef .Pp For some system calls, if a signal is caught while the call is executing and the call is prematurely terminated, the call is automatically restarted. (The handler is installed using the .Dv SA_RESTART flag with .Xr sigaction 2 . ) The affected system calls include .Xr read 2 , .Xr write 2 , .Xr sendto 2 , .Xr recvfrom 2 , .Xr sendmsg 2 , and .Xr recvmsg 2 on a communications channel or a low-speed device and during a .Xr ioctl 2 or .Xr wait 2 . However, calls that have already committed are not restarted, but instead return a partial success (for example, a short read count). The .Xr siginterrupt 3 function can be used to change the system call restart behavior for a specific signal. .Pp When a process which has installed signal handlers forks, the child process inherits the signals. All caught signals may be reset to their default action by a call to the .Xr execve 2 function; ignored signals remain ignored. .Pp The following functions are either reentrant or not interruptible by signals and are asynchronous-signal safe. Therefore applications may invoke them, without restriction, from signal-catching functions: .Pp Base Interfaces: .Pp .Fn _exit , .Fn access , .Fn alarm , .Fn cfgetispeed , .Fn cfgetospeed , .Fn cfsetispeed , .Fn cfsetospeed , .Fn chdir , .Fn chmod , .Fn chown , .Fn close , .Fn creat , .Fn dup , .Fn dup2 , .Fn execle , .Fn execve , .Fn fcntl , .Fn fork , .Fn fpathconf , .Fn fstat , .Fn fsync , .Fn getegid , .Fn geteuid , .Fn getgid , .Fn getgroups , .Fn getpgrp , .Fn getpid , .Fn getppid , .Fn getuid , .Fn kill , .Fn link , .Fn lseek , .Fn mkdir , .Fn mkfifo , .Fn open , .Fn pathconf , .Fn pause , .Fn pipe , .Fn raise , .Fn read , .Fn rename , .Fn rmdir , .Fn setgid , .Fn setpgid , .Fn setsid , .Fn setuid , .Fn sigaction , .Fn sigaddset , .Fn sigdelset , .Fn sigemptyset , .Fn sigfillset , .Fn sigismember , .Fn signal , .Fn sigpending , .Fn sigprocmask , .Fn sigsuspend , .Fn sleep , .Fn stat , .Fn sysconf , .Fn tcdrain , .Fn tcflow , .Fn tcflush , .Fn tcgetattr , .Fn tcgetpgrp , .Fn tcsendbreak , .Fn tcsetattr , .Fn tcsetpgrp , .Fn time , .Fn times , .Fn umask , .Fn uname , .Fn unlink , .Fn utime , .Fn wait , .Fn waitpid , .Fn write . .Pp Realtime Interfaces: .Pp .Fn aio_error , .Fn clock_gettime , .Fn sigpause , .Fn timer_getoverrun , .Fn aio_return , .Fn fdatasync , .Fn sigqueue , .Fn timer_gettime , .Fn aio_suspend , .Fn sem_post , .Fn sigset , .Fn timer_settime . .Pp ANSI C Interfaces: .Pp .Fn strcpy , .Fn strcat , .Fn strncpy , .Fn strncat , and perhaps some others. .Pp Extension Interfaces: .Pp .Fn strlcpy , .Fn strlcat . .Pp Most functions not in the above lists are considered to be unsafe with respect to signals. That is to say, the behaviour of such functions when called from a signal handler is undefined. In general though, signal handlers should do little more than set a flag; most other actions are not safe. .Pp Additionally, inside the signal handler it is also considered more safe to make a copy of the global variable .Va errno and restore it before returning from the signal handler. .Pp A few other functions are signal race safe in .Ox but probably not on other systems: .Pp .Bl -tag -offset indent -compact -width foofoofoofoo .It Fn snprintf Safe. .It Fn vsnprintf Safe. .It Fn syslog_r Safe if the .Va syslog_data struct is initialized as a local variable. .El .Sh RETURN VALUES The previous action is returned on a successful call. Otherwise, .Dv SIG_ERR is returned and the global variable .Va errno is set to indicate the error. .Sh ERRORS .Fn signal will fail and no action will take place if one of the following occurs: .Bl -tag -width Er .It Bq Er EINVAL A specified signal is not a valid signal number. .It Bq Er EINVAL An attempt is made to ignore or supply a handler for .Dv SIGKILL or .Dv SIGSTOP . .El .Sh SEE ALSO .Xr kill 1 , .Xr kill 2 , .Xr ptrace 2 , .Xr sigaction 2 , .Xr sigaltstack 2 , .Xr sigprocmask 2 , .Xr sigsuspend 2 , .Xr setjmp 3 , .Xr siginterrupt 3 , .Xr tty 4 .Sh HISTORY This .Fn signal facility appeared in .Bx 4.0 .