aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/OpenBSD.c
blob: ea6788453a8b0598534bc72bf96ff3b3c84ac040 (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
#include "threadimpl.h"
#include "BSD.c"

#include <dlfcn.h>

#define MIN(a,b)	((a) < (b) ? (a) : (b))
#define MAX(a,b)	((a) > (b) ? (a) : (b))

enum {
	FD_READ = 1,
	FD_WRITE,
	FD_RDWR,
	FDTBL_MAXSIZE = 128
};

struct fd_entry {
	QLock	lock;
	int	fd;
	int	id;
	short	rc;
	short	wc;
	short	ref;
};

static struct fd_entry fd_entry1 = { .fd -1 };
static struct fd_entry *fd_table = nil;
static spinlock_t fd_table_lock = { 0, 0, nil, 0 };
static spinlock_t mlock = { 0, 0, nil, 0 };
static spinlock_t dl_lock = { 0, 0, nil, 0 };

void
_thread_malloc_lock(void)
{
	_spinlock(&mlock);
}

void
_thread_malloc_unlock(void)
{
	_spinunlock(&mlock);
}

void
_thread_malloc_init(void)
{
}

/*
 * Must set errno on failure because the return value
 * of _thread_fd_entry is propagated back to the caller
 * of the thread-wrapped libc function.
 */
static struct fd_entry *
_thread_fd_lookup(int fd)
{
	struct fd_entry *t;
	static int cursize;
	int newsize;

	if(fd >= FDTBL_MAXSIZE) {
		errno = EBADF;
		return nil;
	}

	/*
	 * There are currently only a few libc functions using 
	 * _thread_fd_*, which are rarely called by P9P programs.
	 * So the contention for these locks is very small and so
	 * far have usually been limited to a single fd. So
	 * rather than malloc the fd_table everytime we just use
	 * a single fd_entry until a lock request for another fd
	 * comes in.
	 */
	if(fd_table == nil)
		if(fd_entry1.fd == -1) {
			fd_entry1.fd = fd;
			return &fd_entry1;
		} else if(fd_entry1.fd == fd)
			return &fd_entry1;
		else {
			cursize = MAX(fd_entry1.fd, 16);
			fd_table = malloc(cursize*sizeof(fd_table[0]));
			if(fd_table == nil) {
				errno = ENOMEM;
				return nil;
			}
			memset(fd_table, 0, cursize*sizeof(fd_table[0]));
			fd_table[fd_entry1.fd] = fd_entry1;
		}
	if(fd > cursize) {
		newsize = MIN(cursize*2, FDTBL_MAXSIZE);
		t = realloc(fd_table, newsize*sizeof(fd_table[0]));
		if(t == nil) {
			errno = ENOMEM;
			return nil;
		}
		fd_table = t;
		cursize = newsize; 
		memset(fd_table, 0, cursize*sizeof(fd_table[0]));
	}

	return &fd_table[fd];
}

/*
 * Mutiple readers just share the lock by incrementing the read count.
 * Writers must obtain an exclusive lock.
 */
int
_thread_fd_lock(int fd, int type, struct timespec *time)
{
	struct fd_entry *fde;
	int id;

	_spinlock(&fd_table_lock);
	fde = _thread_fd_lookup(fd);
	if(fde == nil)
		return -1;

	if(type == FD_READ) {
		if(fde->rc++ >= 1 && fde->wc == 0) {
			_spinunlock(&fd_table_lock);
			return 0;
		}
	} else
		fde->wc++;
	_spinunlock(&fd_table_lock);

	/* handle recursion */
	id = proc()->osprocid;
	if(id == fde->id) {
		fde->ref++;
		return 0;
	}

	qlock(&fde->lock);
	fde->id = id;
	return 0;
}

void
_thread_fd_unlock(int fd, int type)
{
	struct fd_entry *fde;
	int id;

	fde = _thread_fd_lookup(fd);
	if(fde == nil) {
		fprint(2, "_thread_fd_unlock: fd %d not in table!\n", fd);
		return;
	}

	if(type == FD_READ && --fde->rc >= 1)
		return;
	else
		fde->wc--;

	id = proc()->osprocid;
	if(id == fde->id && fde->ref > 0) {
		fde->ref--;
		return;
	}
	fde->id = 0;
	qunlock(&fde->lock);
}

void
_thread_dl_lock(int t)
{
	if(t)
		_spinunlock(&dl_lock);
	else
		_spinlock(&dl_lock);
}

void
_pthreadinit(void)
{
	__isthreaded = 1;
	dlctl(nil, DL_SETTHREADLCK, _thread_dl_lock);
	signal(SIGUSR2, sigusr2handler);
}