]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - lib/libkse/thread/thr_sigaltstack.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / lib / libkse / thread / thr_sigaltstack.c
1 /*-
2  * Copyright (c) 2003 David Xu <davidxu@freebsd.org>
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  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29
30 #include <errno.h>
31 #include <signal.h>
32 #include "thr_private.h"
33
34 LT10_COMPAT_PRIVATE(_sigaltstack);
35 LT10_COMPAT_DEFAULT(sigaltstack);
36
37 __weak_reference(_sigaltstack, sigaltstack);
38
39 int
40 _sigaltstack(stack_t *_ss, stack_t *_oss)
41 {
42         struct pthread *curthread = _get_curthread();
43         stack_t ss, oss;
44         int oonstack, errsave, ret;
45         kse_critical_t crit;
46
47         if (curthread->attr.flags & PTHREAD_SCOPE_SYSTEM) {
48                 crit = _kse_critical_enter();
49                 ret = __sys_sigaltstack(_ss, _oss);
50                 errsave = errno;
51                 /* Get a copy */
52                 if (ret == 0 && _ss != NULL)
53                         curthread->sigstk = *_ss;
54                 _kse_critical_leave(crit);
55                 errno = errsave;
56                 return (ret);
57         }
58
59         if (_ss)
60                 ss = *_ss;
61         if (_oss)
62                 oss = *_oss;
63
64         /* Should get and set stack in atomic way */
65         crit = _kse_critical_enter();
66         oonstack = _thr_sigonstack(&ss);
67         if (_oss != NULL) {
68                 oss = curthread->sigstk;
69                 oss.ss_flags = (curthread->sigstk.ss_flags & SS_DISABLE)
70                     ? SS_DISABLE : ((oonstack) ? SS_ONSTACK : 0);
71         }
72
73         if (_ss != NULL) {
74                 if (oonstack) {
75                         _kse_critical_leave(crit);
76                         errno = EPERM;
77                         return (-1);
78                 }
79                 if ((ss.ss_flags & ~SS_DISABLE) != 0) {
80                         _kse_critical_leave(crit);
81                         errno = EINVAL;
82                         return (-1);
83                 }
84                 if (!(ss.ss_flags & SS_DISABLE)) {
85                         if (ss.ss_size < MINSIGSTKSZ) {
86                                 _kse_critical_leave(crit);
87                                 errno = ENOMEM;
88                                 return (-1);
89                         }
90                         curthread->sigstk = ss;
91                 } else {
92                         curthread->sigstk.ss_flags |= SS_DISABLE;
93                 }
94         }
95         _kse_critical_leave(crit);
96         if (_oss != NULL)
97                 *_oss = oss;
98         return (0);
99 }
100
101 int
102 _thr_sigonstack(void *sp)
103 {
104         struct pthread *curthread = _get_curthread();
105
106         return ((curthread->sigstk.ss_flags & SS_DISABLE) == 0 ?
107             (((size_t)sp - (size_t)curthread->sigstk.ss_sp) < curthread->sigstk.ss_size)
108             : 0);
109 }
110