]> git.saurik.com Git - apple/xnu.git/blame - bsd/man/man2/sigaction.2
xnu-344.49.tar.gz
[apple/xnu.git] / bsd / man / man2 / sigaction.2
CommitLineData
9bccf70c
A
1.\" $NetBSD: sigaction.2,v 1.7 1995/10/12 15:41:16 jtc Exp $
2.\"
3.\" Copyright (c) 1980, 1990, 1993
4.\" The Regents of the University of California. All rights reserved.
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
9.\" 1. Redistributions of source code must retain the above copyright
10.\" notice, this list of conditions and the following disclaimer.
11.\" 2. Redistributions in binary form must reproduce the above copyright
12.\" notice, this list of conditions and the following disclaimer in the
13.\" documentation and/or other materials provided with the distribution.
14.\" 3. All advertising materials mentioning features or use of this software
15.\" must display the following acknowledgement:
16.\" This product includes software developed by the University of
17.\" California, Berkeley and its contributors.
18.\" 4. Neither the name of the University nor the names of its contributors
19.\" may be used to endorse or promote products derived from this software
20.\" without specific prior written permission.
21.\"
22.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32.\" SUCH DAMAGE.
33.\"
34.\" @(#)sigaction.2 8.2 (Berkeley) 4/3/94
35.\"
36.Dd April 3, 1994
37.Dt SIGACTION 2
38.Os
39.Sh NAME
40.Nm sigaction
41.Nd software signal facilities
42.Sh SYNOPSIS
43.Fd #include <signal.h>
44.Bd -literal
45struct sigaction {
46 void (*sa_handler)();
47 sigset_t sa_mask;
48 int sa_flags;
49};
50.Ed
51.Ft int
52.Fn sigaction "int sig" "const struct sigaction *act" "struct sigaction *oact"
53.Sh DESCRIPTION
54The system defines a set of signals that may be delivered to a process.
55Signal delivery resembles the occurrence of a hardware interrupt:
56the signal is blocked from further occurrence, the current process
57context is saved, and a new one is built. A process may specify a
58.Em handler
59to which a signal is delivered, or specify that a signal is to be
60.Em ignored .
61A process may also specify that a default action is to be taken
62by the system when a signal occurs.
63A signal may also be
64.Em blocked ,
65in which case its delivery is postponed until it is
66.Em unblocked .
67The action to be taken on delivery is determined at the time
68of delivery.
69Normally, signal handlers execute on the current stack
70of the process. This may be changed, on a per-handler basis,
71so that signals are taken on a special
72.Em "signal stack" .
73.Pp
74Signal routines execute with the signal that caused their
75invocation
76.Em blocked ,
77but other signals may yet occur.
78A global
79.Em "signal mask"
80defines the set of signals currently blocked from delivery
81to a process. The signal mask for a process is initialized
82from that of its parent (normally empty). It
83may be changed with a
84.Xr sigprocmask 2
85call, or when a signal is delivered to the process.
86.Pp
87When a signal
88condition arises for a process, the signal is added to a set of
89signals pending for the process.
90If the signal is not currently
91.Em blocked
92by the process then it is delivered to the process.
93Signals may be delivered any time a process enters the operating system
94(e.g., during a system call, page fault or trap, or clock interrupt).
95If multiple signals are ready to be delivered at the same time,
96any signals that could be caused by traps are delivered first.
97Additional signals may be processed at the same time, with each
98appearing to interrupt the handlers for the previous signals
99before their first instructions.
100The set of pending signals is returned by the
101.Xr sigpending 2
102function.
103When a caught signal
104is delivered, the current state of the process is saved,
105a new signal mask is calculated (as described below),
106and the signal handler is invoked. The call to the handler
107is arranged so that if the signal handling routine returns
108normally the process will resume execution in the context
109from before the signal's delivery.
110If the process wishes to resume in a different context, then it
111must arrange to restore the previous context itself.
112.Pp
113When a signal is delivered to a process a new signal mask is
114installed for the duration of the process' signal handler
115(or until a
116.Xr sigprocmask
117call is made).
118This mask is formed by taking the union of the current signal mask set,
119the signal to be delivered, and
120the signal mask associated with the handler to be invoked.
121.Pp
122.Fn Sigaction
123assigns an action for a specific signal.
124If
125.Fa act
126is non-zero, it
127specifies an action
128.Pf ( Dv SIG_DFL ,
129.Dv SIG_IGN ,
130or a handler routine) and mask
131to be used when delivering the specified signal.
132If
133.Fa oact
134is non-zero, the previous handling information for the signal
135is returned to the user.
136.Pp
137Once a signal handler is installed, it remains installed
138until another
139.Fn sigaction
140call is made, or an
141.Xr execve 2
142is performed.
143A signal-specific default action may be reset by
144setting
145.Fa sa_handler
146to
147.Dv SIG_DFL .
148The defaults are process termination, possibly with core dump;
149no action; stopping the process; or continuing the process.
150See the signal list below for each signal's default action.
151If
152.Fa sa_handler
153is
154.Dv SIG_DFL ,
155the default action for the signal is to discard the signal,
156and if a signal is pending,
157the pending signal is discarded even if the signal is masked.
158If
159.Fa sa_handler
160is set to
161.Dv SIG_IGN
162current and pending instances
163of the signal are ignored and discarded.
164.Pp
165Options may be specified by setting
166.Em sa_flags .
167If the
168.Dv SA_NOCLDSTOP
169bit is set when installing a catching function
170for the
171.Dv SIGCHLD
172signal,
173the
174.Dv SIGCHLD
175signal will be generated only when a child process exits,
176not when a child process stops.
177Further, if the
178.Dv SA_ONSTACK
179bit is set in
180.Em sa_flags ,
181the system will deliver the signal to the process on a
182.Em "signal stack" ,
183specified with
184.Xr sigstack 2 .
185.Pp
186Finally, the
187.Dv SA_SIGINFO
188option causes the 2nd argument for the signal handler to be a pointer
189to a
190.Em siginfo_t
191as described in
192.Pa <sys/siginfo.h> .
193The
194.Em siginfo_t
195is a part of
196.St -p1003.1b .
197and provides much more information about the causes and
198attributes of the signal that is being delivered.
199.Pp
200If a signal is caught during the system calls listed below,
201the call may be forced to terminate
202with the error
203.Dv EINTR ,
204the call may return with a data transfer shorter than requested,
205or the call may be restarted.
206Restart of pending calls is requested
207by setting the
208.Dv SA_RESTART
209bit in
210.Ar sa_flags .
211The affected system calls include
212.Xr open 2 ,
213.Xr read 2 ,
214.Xr write 2 ,
215.Xr sendto 2 ,
216.Xr recvfrom 2 ,
217.Xr sendmsg 2
218and
219.Xr recvmsg 2
220on a communications channel or a slow device (such as a terminal,
221but not a regular file)
222and during a
223.Xr wait 2
224or
225.Xr ioctl 2 .
226However, calls that have already committed are not restarted,
227but instead return a partial success (for example, a short read count).
228.Pp
229After a
230.Xr fork 2
231or
232.Xr vfork 2
233all signals, the signal mask, the signal stack,
234and the restart/interrupt flags are inherited by the child.
235.Pp
236.Xr Execve 2
237reinstates the default
238action for all signals which were caught and
239resets all signals to be caught on the user stack.
240Ignored signals remain ignored;
241the signal mask remains the same;
242signals that restart pending system calls continue to do so.
243.Pp
244The following is a list of all signals
245with names as in the include file
246.Aq Pa signal.h :
247.Bl -column SIGVTALARMXX "create core imagexxx"
248.It Sy " NAME " " Default Action " " Description"
249.It Dv SIGHUP No " terminate process" " terminal line hangup"
250.It Dv SIGINT No " terminate process" " interrupt program"
251.It Dv SIGQUIT No " create core image" " quit program"
252.It Dv SIGILL No " create core image" " illegal instruction"
253.It Dv SIGTRAP No " create core image" " trace trap"
254.It Dv SIGABRT No " create core image" Xr abort 2
255call (formerly
256.Dv SIGIOT )
257.It Dv SIGEMT No " create core image" " emulate instruction executed"
258.It Dv SIGFPE No " create core image" " floating-point exception"
259.It Dv SIGKILL No " terminate process" " kill program"
260.It Dv SIGBUS No " create core image" " bus error"
261.It Dv SIGSEGV No " create core image" " segmentation violation"
262.It Dv SIGSYS No " create core image" " system call given invalid argument"
263.It Dv SIGPIPE No " terminate process" " write on a pipe with no reader"
264.It Dv SIGALRM No " terminate process" " real-time timer expired"
265.It Dv SIGTERM No " terminate process" " software termination signal"
266.It Dv SIGURG No " discard signal" " urgent condition present on socket"
267.It Dv SIGSTOP No " stop process" " stop (cannot be caught or ignored)"
268.It Dv SIGTSTP No " stop process" " stop signal generated from keyboard"
269.It Dv SIGCONT No " discard signal" " continue after stop"
270.It Dv SIGCHLD No " discard signal" " child status has changed"
271.It Dv SIGTTIN No " stop process" " background read attempted from control terminal"
272.It Dv SIGTTOU No " stop process" " background write attempted to control terminal"
273.It Dv SIGIO No " discard signal" Tn " I/O"
274is possible on a descriptor (see
275.Xr fcntl 2 )
276.It Dv SIGXCPU No " terminate process" " cpu time limit exceeded (see"
277.Xr setrlimit 2 )
278.It Dv SIGXFSZ No " terminate process" " file size limit exceeded (see"
279.Xr setrlimit 2 )
280.It Dv SIGVTALRM No " terminate process" " virtual time alarm (see"
281.Xr setitimer 2 )
282.It Dv SIGPROF No " terminate process" " profiling timer alarm (see"
283.Xr setitimer 2 )
284.It Dv SIGWINCH No " discard signal" " Window size change"
285.It Dv SIGINFO No " discard signal" " status request from keyboard"
286.It Dv SIGUSR1 No " terminate process" " User defined signal 1"
287.It Dv SIGUSR2 No " terminate process" " User defined signal 2"
288.El
289.Sh NOTE
290The mask specified in
291.Fa act
292is not allowed to block
293.Dv SIGKILL
294or
295.Dv SIGSTOP .
296This is done silently by the system.
297.Sh RETURN VALUES
298A 0 value indicated that the call succeeded. A \-1 return value
299indicates an error occurred and
300.Va errno
301is set to indicated the reason.
302.Sh EXAMPLE
303The handler routine can be declared:
304.Bd -literal -offset indent
305void handler(sig, sip, scp)
306int sig;
307siginfo_t *sip;
308struct sigcontext *scp;
309.Ed
310.Pp
311Here
312.Fa sig
313is the signal number, into which the hardware faults and traps are
314mapped.
315If the
316.Dv SA_SIGINFO
317option is set,
318.Fa sip
319is a pointer to a
320.Dv siginfo_t
321as described in
322.Pa <sys/siginfo.h> .
323If
324.Dv SA_SIGINFO
325is not set, this is NULL.
326.Fa Scp
327is a pointer to the
328.Fa sigcontext
329structure (defined in
330.Aq Pa signal.h ) ,
331used to restore the context from before the signal.
332.Sh ERRORS
333.Fn Sigaction
334will fail and no new signal handler will be installed if one
335of the following occurs:
336.Bl -tag -width Er
337.It Bq Er EFAULT
338Either
339.Fa act
340or
341.Fa oact
342points to memory that is not a valid part of the process
343address space.
344.It Bq Er EINVAL
345.Fa Sig
346is not a valid signal number.
347.It Bq Er EINVAL
348An attempt is made to ignore or supply a handler for
349.Dv SIGKILL
350or
351.Dv SIGSTOP .
352.El
353.Sh STANDARDS
354The
355.Nm sigaction
356function is defined by
357.St -p1003.1-88 .
358The
359.Dv SA_ONSTACK
360and
361.Dv SA_RESTART
362flags are Berkeley extensions,
363as are the signals,
364.Dv SIGTRAP ,
365.Dv SIGEMT ,
366.Dv SIGBUS ,
367.Dv SIGSYS ,
368.Dv SIGURG ,
369.Dv SIGIO ,
370.Dv SIGXCPU ,
371.Dv SIGXFSZ ,
372.Dv SIGVTALRM ,
373.Dv SIGPROF ,
374.Dv SIGWINCH ,
375and
376.Dv SIGINFO .
377Those signals are available on most
378.Tn BSD Ns \-derived
379systems.
380.Sh SEE ALSO
381.Xr kill 1 ,
382.Xr ptrace 2 ,
383.Xr kill 2 ,
384.Xr sigaction 2 ,
385.Xr sigprocmask 2 ,
386.Xr sigsuspend 2 ,
387.Xr sigblock 2 ,
388.Xr sigsetmask 2 ,
389.Xr sigpause 2 ,
390.Xr sigstack 2 ,
391.Xr sigvec 3 ,
392.Xr setjmp 3 ,
393.Xr siginterrupt 3 ,
394.Xr sigsetops 3 ,
395.Xr tty 4