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