summaryrefslogtreecommitdiff
path: root/pthread.c
blob: 0ff68211d53c391c4da404ef05acaabbd90e7ed1 (plain) (blame)
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
#include <pthread.h>
#include <semaphore.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>

#define TEST(r, f, x, m) ( \
((r) = (f)) == (x) || \
(printf(__FILE__ ":%d: %s failed (" m ")\n", __LINE__, #f, r, x), err++, 0) )

#define TEST_S(s, x, m) ( \
!strcmp((s),(x)) || \
(printf(__FILE__ ":%d: [%s] != [%s] (%s)\n", __LINE__, s, x, m), err++, 0) )

static pthread_key_t k1, k2;

static void dtor(void *p)
{
	*(int *)p = 1;
}

static void *start1(void *arg)
{
	return arg;
}

static void *start2(void *arg)
{
	int *p = arg;
	if (pthread_setspecific(k1, p) || pthread_setspecific(k2, p+1))
		return arg;
	return 0;
}

static void *start3(void *arg)
{
	pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, 0);
	sem_post(arg);
	for (;;);
	return 0;
}

static void cleanup4(void *arg)
{
	*(int *)arg = 1;
}

static void *start4(void *arg)
{
	pthread_cleanup_push(cleanup4, arg);
	sleep(3);
	pthread_cleanup_pop(0);
	return 0;
}

static void cleanup4a2(void *arg)
{
	*(int *)arg += 2;
}

static void cleanup4a3(void *arg)
{
	*(int *)arg += 3;
}

static void cleanup4a4(void *arg)
{
	*(int *)arg += 4;
}

static void *start4a(void *arg)
{
	int *foo = arg;
	pthread_cleanup_push(cleanup4, foo);
	pthread_cleanup_push(cleanup4a2, foo+1);
	pthread_cleanup_push(cleanup4a3, foo+2);
	pthread_cleanup_push(cleanup4a4, foo+3);
	sleep(3);
	pthread_cleanup_pop(0);
	pthread_cleanup_pop(0);
	pthread_cleanup_pop(0);
	pthread_cleanup_pop(0);
	return 0;
}

static void *start5(void *arg)
{
	pthread_mutex_lock(arg);
	return 0;
}

static void *start6(void *arg)
{
	void **args = arg;
	pthread_mutex_lock(args[1]);
	pthread_barrier_wait(args[0]);
	nanosleep(&(struct timespec){ .tv_nsec = 10000000 }, 0);
	return 0;
}

static void *start7(void *arg)
{
	void **args = arg;
	pthread_mutex_lock(args[1]);
	pthread_cond_signal(args[0]);
	pthread_mutex_unlock(args[1]);
	return 0;
}

static void *start8(void *arg)
{
	void **args = arg;
	pthread_mutex_t *m = args[1];
	pthread_cond_t *c = args[0];
	int *x = args[2];

	pthread_mutex_lock(m);
	while (*x) pthread_cond_wait(c, m);
	pthread_mutex_unlock(m);

	return 0;
}


int test_pthread(void)
{
	pthread_t td, td1, td2, td3;
	int err = 0;
	int r;
	void *res;
	int foo[4], bar[2];
	pthread_barrier_t barrier2;
	pthread_mutexattr_t mtx_a;
	pthread_mutex_t mtx, *sh_mtx;
	pthread_cond_t cond;
	sem_t sem1;
	int fd;

	TEST(r, pthread_barrier_init(&barrier2, 0, 2), 0, "creating barrier");
	TEST(r, sem_init(&sem1, 0, 0), 0, "creating semaphore");

	/* Test basic thread creation and joining */
	TEST(r, pthread_create(&td, 0, start1, &res), 0, "failed to create thread");
	res = 0;
	TEST(r, pthread_join(td, &res), 0, "failed to join");
	TEST(r, (res==&res), 1, "wrong result from join");

	/* Test POSIX thread-specific data */
	TEST(r, pthread_key_create(&k1, dtor), 0, "failed to create key");
	TEST(r, pthread_key_create(&k2, dtor), 0, "failed to create key");
	foo[0] = foo[1] = 0;
	TEST(r, pthread_setspecific(k1, bar), 0, "failed to set tsd");
	TEST(r, pthread_setspecific(k2, bar+1), 0, "failed to set tsd");
	TEST(r, pthread_create(&td, 0, start2, foo), 0, "failed to create thread");
	TEST(r, pthread_join(td, &res), 0, "failed to join");
	TEST(res, res, 0, "pthread_setspecific failed in thread");
	TEST(r, foo[0], 1, "dtor failed to run");
	TEST(r, foo[1], 1, "dtor failed to run");
	TEST(res, pthread_getspecific(k1), bar, "tsd corrupted");
	TEST(res, pthread_getspecific(k2), bar+1, "tsd corrupted");
	TEST(r, pthread_setspecific(k1, 0), 0, "failed to clear tsd");
	TEST(r, pthread_setspecific(k2, 0), 0, "failed to clear tsd");
	TEST(r, pthread_key_delete(k1), 0, "failed to destroy key");
	TEST(r, pthread_key_delete(k2), 0, "failed to destroy key");

	/* Asynchronous cancellation */
	TEST(r, pthread_create(&td, 0, start3, &sem1), 0, "failed to create thread");
	while (sem_wait(&sem1));
	TEST(r, pthread_cancel(td), 0, "canceling");
	TEST(r, pthread_join(td, &res), 0, "joining canceled thread");
	TEST(res, res, PTHREAD_CANCELED, "canceled thread exit status");

	/* Cancellation cleanup handlers */
	foo[0] = 0;
	TEST(r, pthread_create(&td, 0, start4, foo), 0, "failed to create thread");
	TEST(r, pthread_cancel(td), 0, "cancelling");
	TEST(r, pthread_join(td, &res), 0, "joining canceled thread");
	TEST(res, res, PTHREAD_CANCELED, "canceled thread exit status");
	TEST(r, foo[0], 1, "cleanup handler failed to run");

	/* Nested cleanup handlers */
	memset(foo, 0, sizeof foo);
	TEST(r, pthread_create(&td, 0, start4a, foo), 0, "failed to create thread");
	TEST(r, pthread_cancel(td), 0, "cancelling");
	TEST(r, pthread_join(td, &res), 0, "joining canceled thread");
	TEST(res, res, PTHREAD_CANCELED, "canceled thread exit status");
	TEST(r, foo[0], 1, "cleanup handler failed to run");
	TEST(r, foo[1], 2, "cleanup handler failed to run");
	TEST(r, foo[2], 3, "cleanup handler failed to run");
	TEST(r, foo[3], 4, "cleanup handler failed to run");

	/* Robust mutexes */
	TEST(r, pthread_mutexattr_init(&mtx_a), 0, "initializing mutex attr");
	TEST(r, pthread_mutexattr_setrobust(&mtx_a, PTHREAD_MUTEX_ROBUST), 0, "setting robust attribute");
	TEST(r, pthread_mutex_init(&mtx, &mtx_a), 0, "initializing robust mutex");
	TEST(r, pthread_mutex_lock(&mtx), 0, "locking robust mutex");
	TEST(r, pthread_mutex_unlock(&mtx), 0, "unlocking robust mutex");
	TEST(r, pthread_create(&td, 0, start5, &mtx), 0, "failed to create thread");
	TEST(r, pthread_join(td, &res), 0, "joining thread");
	TEST(r, pthread_mutex_lock(&mtx), EOWNERDEAD, "locking orphaned robust mutex %d!=%d");
	TEST(r, pthread_mutex_unlock(&mtx), 0, "unlocking orphaned robust mutex %d!=%d");
	TEST(r, pthread_mutex_lock(&mtx), ENOTRECOVERABLE, "re-locking orphaned robust mutex %d!=%d");
	TEST(r, pthread_mutex_destroy(&mtx), 0, "destroying unrecoverable mutex %d!=%d");

	TEST(r, pthread_mutex_init(&mtx, &mtx_a), 0, "initializing robust mutex");
	TEST(r, pthread_create(&td, 0, start5, &mtx), 0, "failed to create thread");
	TEST(r, pthread_join(td, &res), 0, "joining thread");
	TEST(r, pthread_mutex_lock(&mtx), EOWNERDEAD, "locking orphaned robust mutex %d!=%d");
	TEST(r, pthread_mutex_consistent(&mtx), 0, "%d!=%d");
	TEST(r, pthread_mutex_unlock(&mtx), 0, "unlocking orphaned robust mutex %d!=%d");
	TEST(r, pthread_mutex_lock(&mtx), 0, "re-locking orphaned robust mutex %d!=%d");
	TEST(r, pthread_mutex_destroy(&mtx), 0, "destroying mutex %d!=%d");

	TEST(r, pthread_mutex_init(&mtx, &mtx_a), 0, "%d != %d");
	TEST(r, pthread_create(&td, 0, start6, (void *[]){ &barrier2, &mtx }), 0, "%d != %d");
	pthread_barrier_wait(&barrier2);
	TEST(r, pthread_mutex_lock(&mtx), EOWNERDEAD, "%d != %d");
	TEST(r, pthread_join(td, &res), 0, "%d != %d");
	TEST(r, pthread_mutex_consistent(&mtx), 0, "%d != %d");
	TEST(r, pthread_mutex_unlock(&mtx), 0, "%d != %d");
	TEST(r, pthread_mutex_destroy(&mtx), 0, "%d != %d");

	//TEST(r, (fd=open("/dev/zero", O_RDWR))>=0, 1, "opening zero page file");
	//TEST(r, 

	/* Condition variables */
	TEST(r, pthread_mutex_init(&mtx, 0), 0, "%d != %d");
	TEST(r, pthread_cond_init(&cond, 0), 0, "%d != %d");
	TEST(r, pthread_mutex_lock(&mtx), 0, "%d != %d");
	TEST(r, pthread_create(&td, 0, start7, (void *[]){ &cond, &mtx }), 0, "%d != %d");
	TEST(r, pthread_cond_wait(&cond, &mtx), 0, "%d != %d");
	TEST(r, pthread_join(td, &res), 0, "%d != %d");
	TEST(r, pthread_mutex_unlock(&mtx), 0, "%d != %d");
	TEST(r, pthread_mutex_destroy(&mtx), 0, "%d != %d");
	TEST(r, pthread_cond_destroy(&cond), 0, "%d != %d");

	/* Condition variables with multiple waiters */
	TEST(r, pthread_mutex_init(&mtx, 0), 0, "%d != %d");
	TEST(r, pthread_cond_init(&cond, 0), 0, "%d != %d");
	TEST(r, pthread_mutex_lock(&mtx), 0, "%d != %d");
	foo[0] = 1;
	TEST(r, pthread_create(&td1, 0, start8, (void *[]){ &cond, &mtx, foo }), 0, "%d != %d");
	TEST(r, pthread_create(&td2, 0, start8, (void *[]){ &cond, &mtx, foo }), 0, "%d != %d");
	TEST(r, pthread_create(&td3, 0, start8, (void *[]){ &cond, &mtx, foo }), 0, "%d != %d");
	TEST(r, pthread_mutex_unlock(&mtx), 0, "%d != %d");
	nanosleep(&(struct timespec){.tv_nsec=1000000}, 0);
	foo[0] = 0;
	TEST(r, pthread_mutex_lock(&mtx), 0, "%d != %d");
	TEST(r, pthread_cond_signal(&cond), 0, "%d != %d");
	TEST(r, pthread_mutex_unlock(&mtx), 0, "%d != %d");
	TEST(r, pthread_mutex_lock(&mtx), 0, "%d != %d");
	TEST(r, pthread_cond_signal(&cond), 0, "%d != %d");
	TEST(r, pthread_mutex_unlock(&mtx), 0, "%d != %d");
	TEST(r, pthread_mutex_lock(&mtx), 0, "%d != %d");
	TEST(r, pthread_cond_signal(&cond), 0, "%d != %d");
	TEST(r, pthread_mutex_unlock(&mtx), 0, "%d != %d");
	TEST(r, pthread_join(td1, 0), 0, "%d != %d");
	TEST(r, pthread_join(td2, 0), 0, "%d != %d");
	TEST(r, pthread_join(td3, 0), 0, "%d != %d");
	TEST(r, pthread_mutex_destroy(&mtx), 0, "%d != %d");
	TEST(r, pthread_cond_destroy(&cond), 0, "%d != %d");

	/* Condition variables with broadcast signals */
	TEST(r, pthread_mutex_init(&mtx, 0), 0, "%d != %d");
	TEST(r, pthread_cond_init(&cond, 0), 0, "%d != %d");
	TEST(r, pthread_mutex_lock(&mtx), 0, "%d != %d");
	foo[0] = 1;
	TEST(r, pthread_create(&td1, 0, start8, (void *[]){ &cond, &mtx, foo }), 0, "%d != %d");
	TEST(r, pthread_create(&td2, 0, start8, (void *[]){ &cond, &mtx, foo }), 0, "%d != %d");
	TEST(r, pthread_create(&td3, 0, start8, (void *[]){ &cond, &mtx, foo }), 0, "%d != %d");
	TEST(r, pthread_mutex_unlock(&mtx), 0, "%d != %d");
	nanosleep(&(struct timespec){.tv_nsec=1000000}, 0);
	TEST(r, pthread_mutex_lock(&mtx), 0, "%d != %d");
	foo[0] = 0;
	TEST(r, pthread_mutex_unlock(&mtx), 0, "%d != %d");
	TEST(r, pthread_cond_broadcast(&cond), 0, "%d != %d");
	TEST(r, pthread_join(td1, 0), 0, "%d != %d");
	TEST(r, pthread_join(td2, 0), 0, "%d != %d");
	TEST(r, pthread_join(td3, 0), 0, "%d != %d");
	TEST(r, pthread_mutex_destroy(&mtx), 0, "%d != %d");
	TEST(r, pthread_cond_destroy(&cond), 0, "%d != %d");

	return err;
}