blob: 4cc697181117713202feaae35b0b6b1daff9c37c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
/* $OpenBSD: uthread_stack.c,v 1.3 1999/11/26 00:53:21 d Exp $ */
/* David Leonard <david.leonard@csee.uq.edu.au> 1999.
/*
* Thread stack allocation.
*
* Stack pointers are assumed to work their way down (backwards) to the
* beginning of the stack storage. The first page of this storage is
* protected using mprotect() so as to generate a SIGSEGV if a thread
* overflows its stack.
*/
#include <stddef.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/param.h>
#include <sys/user.h>
#include <sys/mman.h>
#include <pthread.h>
#include <pthread_np.h>
#include "pthread_private.h"
struct stack *
_thread_stack_alloc(base, size)
void *base;
size_t size;
{
struct stack *stack;
int nbpg = getpagesize();
/* Maintain a queue of default-sized stacks that we can re-use. */
if (base == NULL && size == PTHREAD_STACK_DEFAULT) {
if (pthread_mutex_lock(&_gc_mutex) != 0)
PANIC("Cannot lock gc mutex");
if ((stack = SLIST_FIRST(&_stackq)) != NULL) {
SLIST_REMOVE_HEAD(&_stackq, qe);
if (pthread_mutex_unlock(&_gc_mutex) != 0)
PANIC("Cannot unlock gc mutex");
return stack;
}
if (pthread_mutex_unlock(&_gc_mutex) != 0)
PANIC("Cannot unlock gc mutex");
}
/* Allocate some storage to hold information about the stack: */
stack = (struct stack *)malloc(sizeof (struct stack));
if (stack == NULL)
return NULL;
if (base != NULL) {
/* Use the user's storage */
stack->base = base;
stack->size = size;
stack->redzone = NULL;
stack->storage = NULL;
return stack;
}
/* Allocate some storage for the stack, with some overhead: */
stack->storage = malloc(size + nbpg * 2);
if (stack->storage == NULL) {
free(stack);
return NULL;
}
/* The red zone is the first physical page of the storage: */
stack->redzone = (void*)(((int)stack->storage + nbpg - 1) &
~(nbpg - 1));
if (mprotect(stack->redzone, nbpg, 0) == -1)
PANIC("Cannot protect stack red zone");
/* Find the useful range of the stack. */
stack->base = stack->redzone + nbpg;
stack->size = size;
return stack;
}
void
_thread_stack_free(stack)
struct stack *stack;
{
int nbpg = getpagesize();
/* Cache allocated stacks of default size. */
if (stack->storage != NULL && stack->size == PTHREAD_STACK_DEFAULT)
SLIST_INSERT_HEAD(&_stackq, stack, qe);
else {
/* Restore storage protection to what malloc expects: */
if (stack->redzone)
mprotect(stack->redzone, nbpg,
PROT_READ|PROT_WRITE);
/* Free storage */
if (stack->storage)
free(stack->storage);
/* Free stack information storage. */
free(stack);
}
}
|