1 | /* Emulate sigstack function using sigaltstack. |
2 | Copyright (C) 1998-2021 Free Software Foundation, Inc. |
3 | This file is part of the GNU C Library. |
4 | Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998. |
5 | |
6 | The GNU C Library is free software; you can redistribute it and/or |
7 | modify it under the terms of the GNU Lesser General Public |
8 | License as published by the Free Software Foundation; either |
9 | version 2.1 of the License, or (at your option) any later version. |
10 | |
11 | The GNU C Library is distributed in the hope that it will be useful, |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 | Lesser General Public License for more details. |
15 | |
16 | You should have received a copy of the GNU Lesser General Public |
17 | License along with the GNU C Library; if not, see |
18 | <https://www.gnu.org/licenses/>. */ |
19 | |
20 | #include <signal.h> |
21 | #include <stddef.h> |
22 | #include <sys/syscall.h> |
23 | |
24 | |
25 | int |
26 | sigstack (struct sigstack *ss, struct sigstack *oss) |
27 | { |
28 | stack_t sas; |
29 | stack_t *sasp = NULL; |
30 | stack_t osas; |
31 | stack_t *osasp = oss == NULL ? NULL : &osas; |
32 | int result; |
33 | |
34 | if (ss != NULL) |
35 | { |
36 | /* We have to convert the information. */ |
37 | sas.ss_sp = ss->ss_sp; |
38 | sas.ss_flags = ss->ss_onstack ? SS_ONSTACK : 0; |
39 | |
40 | /* For the size of the stack we have no value we can pass to the |
41 | kernel. This is why this function should not be used. We simply |
42 | assume that all the memory down to address zero (in case the stack |
43 | grows down) is available. */ |
44 | sas.ss_size = ss->ss_sp - NULL; |
45 | |
46 | sasp = &sas; |
47 | } |
48 | |
49 | /* Call the kernel. */ |
50 | result = __sigaltstack (sasp, osasp); |
51 | |
52 | /* Convert the result, if wanted and possible. */ |
53 | if (result == 0 && oss != NULL) |
54 | { |
55 | oss->ss_sp = osas.ss_sp; |
56 | oss->ss_onstack = (osas.ss_flags & SS_ONSTACK) != 0; |
57 | } |
58 | |
59 | return result; |
60 | } |
61 | |
62 | link_warning (sigstack, "the `sigstack' function is dangerous. `sigaltstack' should be used instead." ) |
63 | |