xref: /openbsd-src/lib/libc/sys/sigaltstack.2 (revision e1fef5f107295699125891e2fb86272504a8c3b8)
1.\"	$OpenBSD: sigaltstack.2,v 1.28 2024/06/22 17:19:05 deraadt Exp $
2.\"	$NetBSD: sigaltstack.2,v 1.3 1995/02/27 10:41:52 cgd Exp $
3.\"
4.\" Copyright (c) 1983, 1991, 1992, 1993
5.\"	The Regents of the University of California.  All rights reserved.
6.\"
7.\" Redistribution and use in source and binary forms, with or without
8.\" modification, are permitted provided that the following conditions
9.\" are met:
10.\" 1. Redistributions of source code must retain the above copyright
11.\"    notice, this list of conditions and the following disclaimer.
12.\" 2. Redistributions in binary form must reproduce the above copyright
13.\"    notice, this list of conditions and the following disclaimer in the
14.\"    documentation and/or other materials provided with the distribution.
15.\" 3. Neither the name of the University nor the names of its contributors
16.\"    may be used to endorse or promote products derived from this software
17.\"    without specific prior written permission.
18.\"
19.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29.\" SUCH DAMAGE.
30.\"
31.\"     @(#)sigaltstack.2	8.1 (Berkeley) 6/4/93
32.\"
33.Dd $Mdocdate: June 22 2024 $
34.Dt SIGALTSTACK 2
35.Os
36.Sh NAME
37.Nm sigaltstack
38.Nd set and/or get signal stack context
39.Sh SYNOPSIS
40.In signal.h
41.Bd -literal
42typedef struct sigaltstack {
43	void	*ss_sp;
44	size_t	 ss_size;
45	int	 ss_flags;
46} stack_t;
47.Ed
48.Ft int
49.Fn sigaltstack "const stack_t *ss" "stack_t *oss"
50.Sh DESCRIPTION
51.Fn sigaltstack
52allows users to define an alternate stack on which signals
53delivered to this thread
54are to be processed.
55If
56.Fa ss
57is non-zero and
58.Dv SS_DISABLE
59is set in
60.Fa ss_flags ,
61the signal stack will be disabled.
62A disabled stack will cause all signals to be
63taken on the regular user stack.
64Trying to disable an active stack will cause
65.Fn sigaltstack
66to return \-1 with
67.Va errno
68set to
69.Er EPERM .
70.Pp
71Otherwise,
72.Fa ss_sp
73specifies a pointer to a space to be used as the signal stack and
74.Fa ss_size
75specifies the size of that space.
76When a signal's action indicates its handler
77should execute on the signal stack (specified with a
78.Xr sigaction 2
79call), the system checks to see
80if the thread is currently executing on that stack.
81If the thread is not currently executing on the signal stack,
82the system arranges a switch to the signal stack for the
83duration of the signal handler's execution.
84.Pp
85If
86.Fa oss
87is non-zero, the current signal stack state is returned.
88The
89.Fa ss_flags
90field will contain the value
91.Dv SS_ONSTACK
92if the thread is currently on a signal stack and
93.Dv SS_DISABLE
94if the signal stack is currently disabled.
95.Pp
96The value
97.Dv SIGSTKSZ
98is defined to be the number of bytes/chars that would be used to cover
99the usual case when allocating an alternate stack area.
100The following code fragment is typically used to allocate an alternate stack.
101.Bd -literal -offset indent
102if ((sigstk.ss_sp = mmap(NULL, SIGSTKSZ, PROT_READ|PROT_WRITE,
103    MAP_ANON|MAP_PRIVATE, -1, 0)) == MAP_FAILED)
104	/* error return */
105sigstk.ss_size = SIGSTKSZ;
106sigstk.ss_flags = 0;
107if (sigaltstack(&sigstk, NULL) == -1)
108	perror("sigaltstack");
109.Ed
110.Pp
111An alternative approach is provided for programs with signal handlers
112that require a specific amount of stack space other than the default size.
113The value
114.Dv MINSIGSTKSZ
115is defined to be the number of bytes/chars that is required by
116the operating system to implement the alternate stack feature.
117In computing an alternate stack size,
118programs should add
119.Dv MINSIGSTKSZ
120to their stack requirements to allow for the operating system overhead.
121.Pp
122Signal stacks are automatically adjusted for the direction of stack
123growth and alignment requirements.
124Signal stacks may or may not be protected by the hardware and
125are not
126.Dq grown
127automatically as is done for the normal stack.
128If the stack overflows and this space is not protected,
129unpredictable results may occur.
130.Pp
131On
132.Ox
133some additional restrictions prevent dangerous address space modifications.
134The proposed space at
135.Fa ss_sp
136is verified to be contiguously mapped for read-write permissions without
137execute.
138If those conditions are met, a page-aligned inner region will be freshly mapped
139(all zero) with
140.Dv MAP_STACK
141(see
142.Xr mmap 2 ) ,
143destroying the pre-existing data in the region.
144Once the sigaltstack is disabled, the
145.Dv MAP_STACK
146attribute remains on the memory, so it is best to deallocate the memory
147via a method that results in
148.Xr munmap 2 .
149.Sh RETURN VALUES
150.Rv -std
151.Sh ERRORS
152.Fn sigaltstack
153will fail and the signal stack context will remain unchanged
154if one of the following occurs.
155.Bl -tag -width [ENOMEM]
156.It Bq Er EFAULT
157Either
158.Fa ss
159or
160.Fa oss
161points to memory that is not a valid part of the process
162address space.
163.It Bq Er EINVAL
164The
165.Fa ss_flags
166member pointed to by the
167.Fa ss
168argument contains flags other than
169.Dv SS_DISABLE .
170.It Bq Er EINVAL
171The memory region is not acceptable for use as a stack;
172see above.
173.It Bq Er ENOMEM
174Size of alternate stack area is less than or equal to
175.Dv MINSIGSTKSZ .
176.It Bq Er EPERM
177An attempt was made to disable an active stack.
178.El
179.Sh SEE ALSO
180.Xr sigaction 2 ,
181.Xr setjmp 3
182.Sh STANDARDS
183The
184.Fn sigaltstack
185function conforms to
186.St -p1003.1-2008 .
187.Sh HISTORY
188The predecessor to
189.Fn sigaltstack ,
190the
191.Fn sigstack
192system call, appeared in
193.Bx 4.2 .
194