]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libkse/thread/thr_sigaction.c
WARNS=3'ify.
[FreeBSD/FreeBSD.git] / lib / libkse / thread / thr_sigaction.c
1 /*
2  * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the author nor the names of any co-contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * $FreeBSD$
30  */
31
32 #include "namespace.h"
33 #include <signal.h>
34 #include <errno.h>
35 #include <pthread.h>
36 #include "un-namespace.h"
37 #include "thr_private.h"
38
39 LT10_COMPAT_PRIVATE(_sigaction);
40 LT10_COMPAT_DEFAULT(sigaction);
41
42 __weak_reference(_sigaction, sigaction);
43
44 int
45 _sigaction(int sig, const struct sigaction * act, struct sigaction * oact)
46 {
47         int ret = 0;
48         int err = 0;
49         struct sigaction newact, oldact;
50         struct pthread *curthread;
51         kse_critical_t crit;
52
53         /* Check if the signal number is out of range: */
54         if (sig < 1 || sig > _SIG_MAXSIG) {
55                 /* Return an invalid argument: */
56                 errno = EINVAL;
57                 ret = -1;
58         } else {
59                 if (act)
60                         newact = *act;
61
62                 crit = _kse_critical_enter();
63                 curthread = _get_curthread();
64                 KSE_LOCK_ACQUIRE(curthread->kse, &_thread_signal_lock);
65
66                 oldact = _thread_sigact[sig - 1];
67
68                 /* Check if a signal action was supplied: */
69                 if (act != NULL) {
70                         /* Set the new signal handler: */
71                         _thread_sigact[sig - 1] = newact;
72                 }
73
74                 /*
75                  * Check if the kernel needs to be advised of a change
76                  * in signal action:
77                  */
78                 if (act != NULL) {
79
80                         newact.sa_flags |= SA_SIGINFO;
81
82                         /*
83                          * Check if the signal handler is being set to
84                          * the default or ignore handlers:
85                          */
86                         if (newact.sa_handler != SIG_DFL &&
87                             newact.sa_handler != SIG_IGN) {
88                                 /*
89                                  * Specify the thread kernel signal
90                                  * handler:
91                                  */
92                                 newact.sa_sigaction = _thr_sig_handler;
93                         }
94                         /*
95                          * Install libpthread signal handler wrapper
96                          * for SIGINFO signal if threads dump enabled
97                          * even if a user set the signal handler to
98                          * SIG_DFL or SIG_IGN.
99                          */
100                         if (sig == SIGINFO && _thr_dump_enabled()) {
101                                 newact.sa_sigaction = _thr_sig_handler;
102                         }
103                         /* Change the signal action in the kernel: */
104                         if (__sys_sigaction(sig, &newact, NULL) != 0) {
105                                 _thread_sigact[sig - 1] = oldact;
106                                 /* errno is in kse, will copy it to thread */
107                                 err = errno;
108                                 ret = -1;
109                         }
110                 }
111                 KSE_LOCK_RELEASE(curthread->kse, &_thread_signal_lock);
112                 _kse_critical_leave(crit);
113                 /*
114                  * Check if the existing signal action structure contents are
115                  * to be returned: 
116                 */
117                 if (oact != NULL) {
118                         /* Return the existing signal action contents: */
119                         *oact = oldact;
120                 }
121                 if (ret != 0) {
122                         /* Return errno to thread */
123                         errno = err;
124                 }
125         }
126
127         /* Return the completion status: */
128         return (ret);
129 }