xref: /freebsd/lib/libthr/thread/thr_stack.c (revision 4b9d6057)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2001 Daniel Eischen <deischen@freebsd.org>
5  * Copyright (c) 2000-2001 Jason Evans <jasone@freebsd.org>
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS 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 AUTHORS 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 
30 #include <sys/param.h>
31 #include <sys/auxv.h>
32 #include <sys/mman.h>
33 #include <sys/queue.h>
34 #include <sys/resource.h>
35 #include <sys/sysctl.h>
36 #include <stdlib.h>
37 #include <pthread.h>
38 #include <link.h>
39 
40 #include "thr_private.h"
41 
42 /* Spare thread stack. */
43 struct stack {
44 	LIST_ENTRY(stack)	qe;		/* Stack queue linkage. */
45 	size_t			stacksize;	/* Stack size (rounded up). */
46 	size_t			guardsize;	/* Guard size. */
47 	void			*stackaddr;	/* Stack address. */
48 };
49 
50 /*
51  * Default sized (stack and guard) spare stack queue.  Stacks are cached
52  * to avoid additional complexity managing mmap()ed stack regions.  Spare
53  * stacks are used in LIFO order to increase cache locality.
54  */
55 static LIST_HEAD(, stack)	dstackq = LIST_HEAD_INITIALIZER(dstackq);
56 
57 /*
58  * Miscellaneous sized (non-default stack and/or guard) spare stack queue.
59  * Stacks are cached to avoid additional complexity managing mmap()ed
60  * stack regions.  This list is unordered, since ordering on both stack
61  * size and guard size would be more trouble than it's worth.  Stacks are
62  * allocated from this cache on a first size match basis.
63  */
64 static LIST_HEAD(, stack)	mstackq = LIST_HEAD_INITIALIZER(mstackq);
65 
66 /**
67  * Base address of the last stack allocated (including its red zone, if
68  * there is one).  Stacks are allocated contiguously, starting beyond the
69  * top of the main stack.  When a new stack is created, a red zone is
70  * typically created (actually, the red zone is mapped with PROT_NONE) above
71  * the top of the stack, such that the stack will not be able to grow all
72  * the way to the bottom of the next stack.  This isn't fool-proof.  It is
73  * possible for a stack to grow by a large amount, such that it grows into
74  * the next stack, and as long as the memory within the red zone is never
75  * accessed, nothing will prevent one thread stack from trouncing all over
76  * the next.
77  *
78  * low memory
79  *     . . . . . . . . . . . . . . . . . .
80  *    |                                   |
81  *    |             stack 3               | start of 3rd thread stack
82  *    +-----------------------------------+
83  *    |                                   |
84  *    |       Red Zone (guard page)       | red zone for 2nd thread
85  *    |                                   |
86  *    +-----------------------------------+
87  *    |  stack 2 - _thr_stack_default     | top of 2nd thread stack
88  *    |                                   |
89  *    |                                   |
90  *    |                                   |
91  *    |                                   |
92  *    |             stack 2               |
93  *    +-----------------------------------+ <-- start of 2nd thread stack
94  *    |                                   |
95  *    |       Red Zone                    | red zone for 1st thread
96  *    |                                   |
97  *    +-----------------------------------+
98  *    |  stack 1 - _thr_stack_default     | top of 1st thread stack
99  *    |                                   |
100  *    |                                   |
101  *    |                                   |
102  *    |                                   |
103  *    |             stack 1               |
104  *    +-----------------------------------+ <-- start of 1st thread stack
105  *    |                                   |   (initial value of last_stack)
106  *    |       Red Zone                    |
107  *    |                                   | red zone for main thread
108  *    +-----------------------------------+
109  *    | USRSTACK - _thr_stack_initial     | top of main thread stack
110  *    |                                   | ^
111  *    |                                   | |
112  *    |                                   | |
113  *    |                                   | | stack growth
114  *    |                                   |
115  *    +-----------------------------------+ <-- start of main thread stack
116  *                                              (USRSTACK)
117  * high memory
118  *
119  */
120 static char *last_stack = NULL;
121 
122 /*
123  * Round size up to the nearest multiple of
124  * _thr_page_size.
125  */
126 static inline size_t
127 round_up(size_t size)
128 {
129 	if (size % _thr_page_size != 0)
130 		size = ((size / _thr_page_size) + 1) *
131 		    _thr_page_size;
132 	return size;
133 }
134 
135 void
136 _thr_stack_fix_protection(struct pthread *thrd)
137 {
138 
139 	mprotect((char *)thrd->attr.stackaddr_attr +
140 	    round_up(thrd->attr.guardsize_attr),
141 	    round_up(thrd->attr.stacksize_attr),
142 	    _rtld_get_stack_prot());
143 }
144 
145 static void
146 singlethread_map_stacks_exec(void)
147 {
148 	char *usrstack;
149 	size_t stacksz;
150 
151 	if (!__thr_get_main_stack_base(&usrstack) ||
152 	    !__thr_get_main_stack_lim(&stacksz))
153 		return;
154 	mprotect(usrstack - stacksz, stacksz, _rtld_get_stack_prot());
155 }
156 
157 void
158 __thr_map_stacks_exec(void)
159 {
160 	struct pthread *curthread, *thrd;
161 	struct stack *st;
162 
163 	if (!_thr_is_inited()) {
164 		singlethread_map_stacks_exec();
165 		return;
166 	}
167 	curthread = _get_curthread();
168 	THREAD_LIST_RDLOCK(curthread);
169 	LIST_FOREACH(st, &mstackq, qe)
170 		mprotect((char *)st->stackaddr + st->guardsize, st->stacksize,
171 		    _rtld_get_stack_prot());
172 	LIST_FOREACH(st, &dstackq, qe)
173 		mprotect((char *)st->stackaddr + st->guardsize, st->stacksize,
174 		    _rtld_get_stack_prot());
175 	TAILQ_FOREACH(thrd, &_thread_gc_list, gcle)
176 		_thr_stack_fix_protection(thrd);
177 	TAILQ_FOREACH(thrd, &_thread_list, tle)
178 		_thr_stack_fix_protection(thrd);
179 	THREAD_LIST_UNLOCK(curthread);
180 }
181 
182 int
183 _thr_stack_alloc(struct pthread_attr *attr)
184 {
185 	struct pthread *curthread = _get_curthread();
186 	struct stack *spare_stack;
187 	size_t stacksize;
188 	size_t guardsize;
189 	char *stackaddr;
190 
191 	/*
192 	 * Round up stack size to nearest multiple of _thr_page_size so
193 	 * that mmap() * will work.  If the stack size is not an even
194 	 * multiple, we end up initializing things such that there is
195 	 * unused space above the beginning of the stack, so the stack
196 	 * sits snugly against its guard.
197 	 */
198 	stacksize = round_up(attr->stacksize_attr);
199 	guardsize = round_up(attr->guardsize_attr);
200 
201 	attr->stackaddr_attr = NULL;
202 	attr->flags &= ~THR_STACK_USER;
203 
204 	/*
205 	 * Use the garbage collector lock for synchronization of the
206 	 * spare stack lists and allocations from usrstack.
207 	 */
208 	THREAD_LIST_WRLOCK(curthread);
209 	/*
210 	 * If the stack and guard sizes are default, try to allocate a stack
211 	 * from the default-size stack cache:
212 	 */
213 	if ((stacksize == THR_STACK_DEFAULT) &&
214 	    (guardsize == _thr_guard_default)) {
215 		if ((spare_stack = LIST_FIRST(&dstackq)) != NULL) {
216 			/* Use the spare stack. */
217 			LIST_REMOVE(spare_stack, qe);
218 			attr->stackaddr_attr = spare_stack->stackaddr;
219 		}
220 	}
221 	/*
222 	 * The user specified a non-default stack and/or guard size, so try to
223 	 * allocate a stack from the non-default size stack cache, using the
224 	 * rounded up stack size (stack_size) in the search:
225 	 */
226 	else {
227 		LIST_FOREACH(spare_stack, &mstackq, qe) {
228 			if (spare_stack->stacksize == stacksize &&
229 			    spare_stack->guardsize == guardsize) {
230 				LIST_REMOVE(spare_stack, qe);
231 				attr->stackaddr_attr = spare_stack->stackaddr;
232 				break;
233 			}
234 		}
235 	}
236 	if (attr->stackaddr_attr != NULL) {
237 		/* A cached stack was found.  Release the lock. */
238 		THREAD_LIST_UNLOCK(curthread);
239 	}
240 	else {
241 		/*
242 		 * Allocate a stack from or below usrstack, depending
243 		 * on the LIBPTHREAD_BIGSTACK_MAIN env variable.
244 		 */
245 		if (last_stack == NULL)
246 			last_stack = _usrstack - _thr_stack_initial -
247 			    _thr_guard_default;
248 
249 		/* Allocate a new stack. */
250 		stackaddr = last_stack - stacksize - guardsize;
251 
252 		/*
253 		 * Even if stack allocation fails, we don't want to try to
254 		 * use this location again, so unconditionally decrement
255 		 * last_stack.  Under normal operating conditions, the most
256 		 * likely reason for an mmap() error is a stack overflow of
257 		 * the adjacent thread stack.
258 		 */
259 		last_stack -= (stacksize + guardsize);
260 
261 		/* Release the lock before mmap'ing it. */
262 		THREAD_LIST_UNLOCK(curthread);
263 
264 		/* Map the stack and guard page together, and split guard
265 		   page from allocated space: */
266 		if ((stackaddr = mmap(stackaddr, stacksize + guardsize,
267 		     _rtld_get_stack_prot(), MAP_STACK,
268 		     -1, 0)) != MAP_FAILED &&
269 		    (guardsize == 0 ||
270 		     mprotect(stackaddr, guardsize, PROT_NONE) == 0)) {
271 			stackaddr += guardsize;
272 		} else {
273 			if (stackaddr != MAP_FAILED)
274 				munmap(stackaddr, stacksize + guardsize);
275 			stackaddr = NULL;
276 		}
277 		attr->stackaddr_attr = stackaddr;
278 	}
279 	if (attr->stackaddr_attr != NULL)
280 		return (0);
281 	else
282 		return (-1);
283 }
284 
285 /* This function must be called with _thread_list_lock held. */
286 void
287 _thr_stack_free(struct pthread_attr *attr)
288 {
289 	struct stack *spare_stack;
290 
291 	if ((attr != NULL) && ((attr->flags & THR_STACK_USER) == 0)
292 	    && (attr->stackaddr_attr != NULL)) {
293 		spare_stack = (struct stack *)
294 			((char *)attr->stackaddr_attr +
295 			attr->stacksize_attr - sizeof(struct stack));
296 		spare_stack->stacksize = round_up(attr->stacksize_attr);
297 		spare_stack->guardsize = round_up(attr->guardsize_attr);
298 		spare_stack->stackaddr = attr->stackaddr_attr;
299 
300 		if (spare_stack->stacksize == THR_STACK_DEFAULT &&
301 		    spare_stack->guardsize == _thr_guard_default) {
302 			/* Default stack/guard size. */
303 			LIST_INSERT_HEAD(&dstackq, spare_stack, qe);
304 		} else {
305 			/* Non-default stack/guard size. */
306 			LIST_INSERT_HEAD(&mstackq, spare_stack, qe);
307 		}
308 		attr->stackaddr_attr = NULL;
309 	}
310 }
311