]> git.saurik.com Git - apple/xnu.git/blob - bsd/man/man2/sigaction.2
xnu-3247.1.106.tar.gz
[apple/xnu.git] / bsd / man / man2 / sigaction.2
1 .\" Copyright (c) 1980, 1990, 1993
2 .\" The Regents of the University of California. All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\" must display the following acknowledgement:
14 .\" This product includes software developed by the University of
15 .\" California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\" From: @(#)sigaction.2 8.2 (Berkeley) 4/3/94
33 .\" $FreeBSD: src/lib/libc/sys/sigaction.2,v 1.48 2003/03/24 16:07:19 charnier Exp $
34 .\"
35 .Dd September 18, 2008
36 .Dt SIGACTION 2
37 .Os
38 .Sh NAME
39 .Nm sigaction
40 .Nd software signal facilities
41 .Sh LIBRARY
42 .Lb libc
43 .Sh SYNOPSIS
44 .In signal.h
45 .Bd -literal
46
47 struct sigaction {
48 union __sigaction_u __sigaction_u; /* signal handler */
49 sigset_t sa_mask; /* signal mask to apply */
50 int sa_flags; /* see signal options below */
51 };
52
53 union __sigaction_u {
54 void (*__sa_handler)(int);
55 void (*__sa_sigaction)(int, siginfo_t *,
56 void *);
57 };
58
59 #define sa_handler __sigaction_u.__sa_handler
60 #define sa_sigaction __sigaction_u.__sa_sigaction
61
62 .Ed
63 .Ft int
64 .Fo sigaction
65 .Fa "int sig"
66 .Fa "const struct sigaction *restrict act"
67 .Fa "struct sigaction *restrict oact"
68 .Fc
69 .Sh DESCRIPTION
70 The system defines a set of signals that may be delivered to a process.
71 Signal delivery resembles the occurrence of a hardware interrupt:
72 the signal is normally blocked from further occurrence, the current process
73 context is saved, and a new one is built. A process may specify a
74 .Em handler
75 to which a signal is delivered, or specify that a signal is to be
76 .Em ignored .
77 A process may also specify that a default action is to be taken
78 by the system when a signal occurs.
79 A signal may also be
80 .Em blocked ,
81 in which case its delivery is postponed until it is
82 .Em unblocked .
83 The action to be taken on delivery is determined at the time
84 of delivery.
85 Normally, signal handlers execute on the current stack
86 of the process. This may be changed, on a per-handler basis,
87 so that signals are taken on a special
88 .Em "signal stack" .
89 .Pp
90 Signal routines normally execute with the signal that caused their
91 invocation
92 .Em blocked ,
93 but other signals may yet occur.
94 A global
95 .Em "signal mask"
96 defines the set of signals currently blocked from delivery
97 to a process. The signal mask for a process is initialized
98 from that of its parent (normally empty). It
99 may be changed with a
100 .Xr sigprocmask 2
101 call, or when a signal is delivered to the process.
102 .Pp
103 When a signal
104 condition arises for a process, the signal is added to a set of
105 signals pending for the process.
106 If the signal is not currently
107 .Em blocked
108 by the process then it is delivered to the process.
109 Signals may be delivered any time a process enters the operating system
110 (e.g., during a system call, page fault or trap, or clock interrupt).
111 If multiple signals are ready to be delivered at the same time,
112 any signals that could be caused by traps are delivered first.
113 Additional signals may be processed at the same time, with each
114 appearing to interrupt the handlers for the previous signals
115 before their first instructions.
116 The set of pending signals is returned by the
117 .Xr sigpending 2
118 system call.
119 When a caught signal
120 is delivered, the current state of the process is saved,
121 a new signal mask is calculated (as described below),
122 and the signal handler is invoked. The call to the handler
123 is arranged so that if the signal handling routine returns
124 normally the process will resume execution in the context
125 from before the signal's delivery.
126 If the process wishes to resume in a different context, then it
127 must arrange to restore the previous context itself.
128 .Pp
129 When a signal is delivered to a process a new signal mask is
130 installed for the duration of the process' signal handler
131 (or until a
132 .Xr sigprocmask 2
133 system call is made).
134 This mask is formed by taking the union of the current signal mask set,
135 the signal to be delivered, and
136 the signal mask associated with the handler to be invoked.
137 .Pp
138 The
139 .Fn sigaction
140 system call
141 assigns an action for a signal specified by
142 .Fa sig .
143 If
144 .Fa act
145 is non-zero, it
146 specifies an action
147 .Dv ( SIG_DFL ,
148 .Dv SIG_IGN ,
149 or a handler routine) and mask
150 to be used when delivering the specified signal.
151 If
152 .Fa oact
153 is non-zero, the previous handling information for the signal
154 is returned to the user.
155 .Pp
156 Once a signal handler is installed, it normally remains installed
157 until another
158 .Fn sigaction
159 system call is made, or an
160 .Xr execve 2
161 is performed.
162 A signal-specific default action may be reset by
163 setting
164 .Fa sa_handler
165 to
166 .Dv SIG_DFL .
167 The defaults are process termination, possibly with core dump;
168 no action; stopping the process; or continuing the process.
169 See the signal list below for each signal's default action.
170 If
171 .Fa sa_handler
172 is
173 .Dv SIG_DFL ,
174 the default action for the signal is to discard the signal,
175 and if a signal is pending,
176 the pending signal is discarded even if the signal is masked.
177 If
178 .Fa sa_handler
179 is set to
180 .Dv SIG_IGN
181 current and pending instances
182 of the signal are ignored and discarded.
183 .Pp
184 Options may be specified by setting
185 .Va sa_flags .
186 The meaning of the various bits is as follows:
187 .Bl -tag -offset indent -width SA_RESETHANDXX
188 .It Dv SA_NOCLDSTOP
189 If this bit is set when installing a catching function
190 for the
191 .Dv SIGCHLD
192 signal,
193 the
194 .Dv SIGCHLD
195 signal will be generated only when a child process exits,
196 not when a child process stops.
197 .It Dv SA_NOCLDWAIT
198 If this bit is set when calling
199 .Fn sigaction
200 for the
201 .Dv SIGCHLD
202 signal, the system will not create zombie processes when children of
203 the calling process exit. If the calling process subsequently issues
204 a
205 .Xr wait 2
206 (or equivalent), it blocks until all of the calling process's child
207 processes terminate, and then returns a value of -1 with errno set to
208 .Er ECHILD .
209 .It Dv SA_ONSTACK
210 If this bit is set, the system will deliver the signal to the process
211 on a
212 .Em "signal stack" ,
213 specified with
214 .Xr sigaltstack 2 .
215 .It Dv SA_NODEFER
216 If this bit is set, further occurrences of the delivered signal are
217 not masked during the execution of the handler.
218 .It Dv SA_RESETHAND
219 If this bit is set, the handler is reset back to
220 .Dv SIG_DFL
221 at the moment the signal is delivered.
222 .It Dv SA_RESTART
223 See paragraph below.
224 .It Dv SA_SIGINFO
225 If this bit is set, the handler function is assumed to be pointed to by the
226 .Dv sa_sigaction
227 member of struct sigaction and should match the prototype shown above or as
228 below in
229 .Sx EXAMPLES .
230 This bit should not be set when assigning
231 .Dv SIG_DFL
232 or
233 .Dv SIG_IGN .
234 .El
235 .Pp
236 If a signal is caught during the system calls listed below,
237 the call may be forced to terminate
238 with the error
239 .Er EINTR ,
240 the call may return with a data transfer shorter than requested,
241 or the call may be restarted.
242 Restart of pending calls is requested
243 by setting the
244 .Dv SA_RESTART
245 bit in
246 .Va sa_flags .
247 The affected system calls include
248 .Xr open 2 ,
249 .Xr read 2 ,
250 .Xr write 2 ,
251 .Xr sendto 2 ,
252 .Xr recvfrom 2 ,
253 .Xr sendmsg 2
254 and
255 .Xr recvmsg 2
256 on a communications channel or a slow device (such as a terminal,
257 but not a regular file)
258 and during a
259 .Xr wait 2
260 or
261 .Xr ioctl 2 .
262 However, calls that have already committed are not restarted,
263 but instead return a partial success (for example, a short read count).
264 .Pp
265 After a
266 .Xr fork 2
267 or
268 .Xr vfork 2
269 all signals, the signal mask, the signal stack,
270 and the restart/interrupt flags are inherited by the child.
271 .Pp
272 The
273 .Xr execve 2
274 system call reinstates the default
275 action for all signals which were caught and
276 resets all signals to be caught on the user stack.
277 Ignored signals remain ignored;
278 the signal mask remains the same;
279 signals that restart pending system calls continue to do so.
280 .Pp
281 The following is a list of all signals
282 with names as in the include file
283 .Aq Pa signal.h :
284 .Bl -column SIGVTALARMXX "create core imagexxx"
285 .It Sy "NAME Default Action Description"
286 .It Dv SIGHUP No " terminate process" " terminal line hangup"
287 .It Dv SIGINT No " terminate process" " interrupt program"
288 .It Dv SIGQUIT No " create core image" " quit program"
289 .It Dv SIGILL No " create core image" " illegal instruction"
290 .It Dv SIGTRAP No " create core image" " trace trap"
291 .It Dv SIGABRT No " create core image" Ta Xr abort 3
292 call (formerly
293 .Dv SIGIOT )
294 .It Dv SIGEMT No " create core image" " emulate instruction executed"
295 .It Dv SIGFPE No " create core image" " floating-point exception"
296 .It Dv SIGKILL No " terminate process" " kill program"
297 .It Dv SIGBUS No " create core image" " bus error"
298 .It Dv SIGSEGV No " create core image" " segmentation violation"
299 .It Dv SIGSYS No " create core image" " non-existent system call invoked"
300 .It Dv SIGPIPE No " terminate process" " write on a pipe with no reader"
301 .It Dv SIGALRM No " terminate process" " real-time timer expired"
302 .It Dv SIGTERM No " terminate process" " software termination signal"
303 .It Dv SIGURG No " discard signal" " urgent condition present on socket"
304 .It Dv SIGSTOP No " stop process" " stop (cannot be caught or ignored)"
305 .It Dv SIGTSTP No " stop process" " stop signal generated from keyboard"
306 .It Dv SIGCONT No " discard signal" " continue after stop"
307 .It Dv SIGCHLD No " discard signal" " child status has changed"
308 .It Dv SIGTTIN No " stop process" " background read attempted from control terminal"
309 .It Dv SIGTTOU No " stop process" " background write attempted to control terminal"
310 .It Dv SIGIO No " discard signal" Tn " I/O"
311 is possible on a descriptor (see
312 .Xr fcntl 2 )
313 .It Dv SIGXCPU No " terminate process" " cpu time limit exceeded (see"
314 .Xr setrlimit 2 )
315 .It Dv SIGXFSZ No " terminate process" " file size limit exceeded (see"
316 .Xr setrlimit 2 )
317 .It Dv SIGVTALRM No " terminate process" " virtual time alarm (see"
318 .Xr setitimer 2 )
319 .It Dv SIGPROF No " terminate process" " profiling timer alarm (see"
320 .Xr setitimer 2 )
321 .It Dv SIGWINCH No " discard signal" " Window size change"
322 .It Dv SIGINFO No " discard signal" " status request from keyboard"
323 .It Dv SIGUSR1 No " terminate process" " User defined signal 1"
324 .It Dv SIGUSR2 No " terminate process" " User defined signal 2"
325 .El
326 .Sh NOTE
327 The
328 .Fa sa_mask
329 field specified in
330 .Fa act
331 is not allowed to block
332 .Dv SIGKILL
333 or
334 .Dv SIGSTOP .
335 Any attempt to do so will be silently ignored.
336 .Pp
337 The following functions are either reentrant or not interruptible
338 by signals and are async-signal safe.
339 Therefore applications may
340 invoke them, without restriction, from signal-catching functions:
341 .Pp
342 Base Interfaces:
343 .Pp
344 .Fn _exit ,
345 .Fn access ,
346 .Fn alarm ,
347 .Fn cfgetispeed ,
348 .Fn cfgetospeed ,
349 .Fn cfsetispeed ,
350 .Fn cfsetospeed ,
351 .Fn chdir ,
352 .Fn chmod ,
353 .Fn chown ,
354 .Fn close ,
355 .Fn creat ,
356 .Fn dup ,
357 .Fn dup2 ,
358 .Fn execle ,
359 .Fn execve ,
360 .Fn fcntl ,
361 .Fn fork ,
362 .Fn fpathconf ,
363 .Fn fstat ,
364 .Fn fsync ,
365 .Fn getegid ,
366 .Fn geteuid ,
367 .Fn getgid ,
368 .Fn getgroups ,
369 .Fn getpgrp ,
370 .Fn getpid ,
371 .Fn getppid ,
372 .Fn getuid ,
373 .Fn kill ,
374 .Fn link ,
375 .Fn lseek ,
376 .Fn mkdir ,
377 .Fn mkfifo ,
378 .Fn open ,
379 .Fn pathconf ,
380 .Fn pause ,
381 .Fn pipe ,
382 .Fn raise ,
383 .Fn read ,
384 .Fn rename ,
385 .Fn rmdir ,
386 .Fn setgid ,
387 .Fn setpgid ,
388 .Fn setsid ,
389 .Fn setuid ,
390 .Fn sigaction ,
391 .Fn sigaddset ,
392 .Fn sigdelset ,
393 .Fn sigemptyset ,
394 .Fn sigfillset ,
395 .Fn sigismember ,
396 .Fn signal ,
397 .Fn sigpending ,
398 .Fn sigprocmask ,
399 .Fn sigsuspend ,
400 .Fn sleep ,
401 .Fn stat ,
402 .Fn sysconf ,
403 .Fn tcdrain ,
404 .Fn tcflow ,
405 .Fn tcflush ,
406 .Fn tcgetattr ,
407 .Fn tcgetpgrp ,
408 .Fn tcsendbreak ,
409 .Fn tcsetattr ,
410 .Fn tcsetpgrp ,
411 .Fn time ,
412 .Fn times ,
413 .Fn umask ,
414 .Fn uname ,
415 .Fn unlink ,
416 .Fn utime ,
417 .Fn wait ,
418 .Fn waitpid ,
419 .Fn write .
420 .Pp
421 Realtime Interfaces:
422 .Pp
423 .Fn aio_error ,
424 .Fn sigpause ,
425 .Fn aio_return ,
426 .Fn aio_suspend ,
427 .Fn sem_post ,
428 .Fn sigset .
429 .Pp
430 ANSI C Interfaces:
431 .Pp
432 .Fn strcpy ,
433 .Fn strcat ,
434 .Fn strncpy ,
435 .Fn strncat ,
436 and perhaps some others.
437 .Pp
438 Extension Interfaces:
439 .Pp
440 .Fn strlcpy ,
441 .Fn strlcat .
442 .Pp
443 All functions not in the above lists are considered to be unsafe
444 with respect to signals. That is to say, the behaviour of such
445 functions when called from a signal handler is undefined.
446 In general though, signal handlers should do little more than set a
447 flag; most other actions are not safe.
448 .Pp
449 Also, it is good practice to make a copy of the global variable
450 .Va errno
451 and restore it before returning from the signal handler.
452 This protects against the side effect of
453 .Va errno
454 being set by functions called from inside the signal handler.
455 .Sh RETURN VALUES
456 .Rv -std sigaction
457 .Sh EXAMPLES
458 There are three possible prototypes the handler may match:
459 .Bl -tag -offset indent -width short
460 .It ANSI C:
461 .Ft void
462 .Fn handler int ;
463 .It POSIX SA_SIGINFO:
464 .Ft void
465 .Fn handler int "siginfo_t *info" "ucontext_t *uap" ;
466 .El
467 .Pp
468 The handler function should match the SA_SIGINFO prototype if the
469 SA_SIGINFO bit is set in flags.
470 It then should be pointed to by the
471 .Dv sa_sigaction
472 member of
473 .Dv struct sigaction .
474 Note that you should not assign SIG_DFL or SIG_IGN this way.
475 .Pp
476 If the SA_SIGINFO flag is not set, the handler function should match
477 either the ANSI C or traditional
478 .Bx
479 prototype and be pointed to by
480 the
481 .Dv sa_handler
482 member of
483 .Dv struct sigaction .
484 In practice,
485 .Fx
486 always sends the three arguments of the latter and since the ANSI C
487 prototype is a subset, both will work.
488 The
489 .Dv sa_handler
490 member declaration in
491 .Fx
492 include files is that of ANSI C (as required by POSIX),
493 so a function pointer of a
494 .Bx Ns -style
495 function needs to be casted to
496 compile without warning.
497 The traditional
498 .Bx
499 style is not portable and since its capabilities
500 are a full subset of a SA_SIGINFO handler,
501 its use is deprecated.
502 .Pp
503 The
504 .Fa sig
505 argument is the signal number, one of the
506 .Dv SIG...
507 values from <signal.h>.
508 .Pp
509 The
510 .Fa code
511 argument of the
512 .Bx Ns -style
513 handler and the
514 .Dv si_code
515 member of the
516 .Dv info
517 argument to a SA_SIGINFO handler contain a numeric code explaining the
518 cause of the signal, usually one of the
519 .Dv SI_...
520 values from
521 <sys/signal.h> or codes specific to a signal, i.e. one of the
522 .Dv FPE_...
523 values for SIGFPE.
524 .Pp
525 The
526 .Fa uap
527 argument to a POSIX SA_SIGINFO handler points to an instance of
528 ucontext_t.
529 .Sh ERRORS
530 The
531 .Fn sigaction
532 system call
533 will fail and no new signal handler will be installed if one
534 of the following occurs:
535 .Bl -tag -width Er
536 .\" ===========
537 .It Bq Er EFAULT
538 Either
539 .Fa act
540 or
541 .Fa oact
542 points to memory that is not a valid part of the process
543 address space.
544 .\" ===========
545 .It Bq Er EINVAL
546 The
547 .Fa sig
548 argument
549 is not a valid signal number.
550 .\" ===========
551 .It Bq Er EINVAL
552 An attempt is made to ignore or supply a handler for
553 .Dv SIGKILL
554 or
555 .Dv SIGSTOP .
556 .\" ===========
557 .It Bq Er EINVAL
558 An attempt was made to set the action to SIG_DFL
559 for a signal that cannot be caught or ignored (or both).
560 .El
561 .Sh STANDARDS
562 The
563 .Fn sigaction
564 system call is expected to conform to
565 .St -p1003.1-90 .
566 The
567 .Dv SA_ONSTACK
568 and
569 .Dv SA_RESTART
570 flags are Berkeley extensions,
571 as are the signals,
572 .Dv SIGTRAP ,
573 .Dv SIGEMT ,
574 .Dv SIGBUS ,
575 .Dv SIGSYS ,
576 .Dv SIGURG ,
577 .Dv SIGIO ,
578 .Dv SIGXCPU ,
579 .Dv SIGXFSZ ,
580 .Dv SIGVTALRM ,
581 .Dv SIGPROF ,
582 .Dv SIGWINCH ,
583 and
584 .Dv SIGINFO .
585 Those signals are available on most
586 .Bx Ns \-derived
587 systems.
588 The
589 .Dv SA_NODEFER
590 and
591 .Dv SA_RESETHAND
592 flags are intended for backwards compatibility with other operating
593 systems. The
594 .Dv SA_NOCLDSTOP ,
595 and
596 .Dv SA_NOCLDWAIT
597 .\" and
598 .\" SA_SIGINFO
599 flags are featuring options commonly found in other operating systems.
600 .Sh SEE ALSO
601 .Xr kill 1 ,
602 .Xr kill 2 ,
603 .Xr ptrace 2 ,
604 .Xr sigaltstack 2 ,
605 .Xr sigblock 2 ,
606 .Xr sigpause 2 ,
607 .Xr sigpending 2 ,
608 .Xr sigprocmask 2 ,
609 .Xr sigsetmask 2 ,
610 .Xr sigsuspend 2 ,
611 .Xr sigvec 2 ,
612 .Xr wait 2 ,
613 .Xr fpsetmask 3 ,
614 .Xr setjmp 3 ,
615 .Xr siginterrupt 3 ,
616 .Xr sigsetops 3 ,
617 .Xr ucontext 3 ,
618 .Xr tty 4