-
Notifications
You must be signed in to change notification settings - Fork 1
/
lock_tester.cc
238 lines (205 loc) · 4.96 KB
/
lock_tester.cc
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
//
// Lock server tester
//
#include "lock_protocol.h"
#include "lock_client.h"
#include "rpc.h"
#include "jsl_log.h"
#include <arpa/inet.h>
#include <vector>
#include <stdlib.h>
#include <stdio.h>
#include "lang/verify.h"
// must be >= 2
int nt = 6; //XXX: lab1's rpc handlers are blocking. Since rpcs uses a thread pool of 10 threads, we cannot test more than 10 blocking rpc.
std::string dst;
lock_client **lc = new lock_client * [nt];
lock_protocol::lockid_t a = 1;
lock_protocol::lockid_t b = 2;
lock_protocol::lockid_t c = 3;
// check_grant() and check_release() check that the lock server
// doesn't grant the same lock to both clients.
// it assumes that lock names are distinct in the first byte.
int ct[256];
pthread_mutex_t count_mutex;
void
check_grant(lock_protocol::lockid_t lid)
{
ScopedLock ml(&count_mutex);
int x = lid & 0xff;
if(ct[x] != 0){
fprintf(stderr, "error: server granted %016llx twice\n", lid);
fprintf(stdout, "error: server granted %016llx twice\n", lid);
exit(1);
}
ct[x] += 1;
}
void
check_release(lock_protocol::lockid_t lid)
{
ScopedLock ml(&count_mutex);
int x = lid & 0xff;
if(ct[x] != 1){
fprintf(stderr, "error: client released un-held lock %016llx\n", lid);
exit(1);
}
ct[x] -= 1;
}
void
test1(void)
{
printf ("acquire a release a acquire a release a\n");
lc[0]->acquire(a);
check_grant(a);
lc[0]->release(a);
check_release(a);
lc[0]->acquire(a);
check_grant(a);
lc[0]->release(a);
check_release(a);
printf ("acquire a acquire b release b release a\n");
lc[0]->acquire(a);
check_grant(a);
lc[0]->acquire(b);
check_grant(b);
lc[0]->release(b);
check_release(b);
lc[0]->release(a);
check_release(a);
}
void *
test2(void *x)
{
int i = * (int *) x;
printf ("test2: client %d acquire a release a\n", i);
lc[i]->acquire(a);
printf ("test2: client %d acquire done\n", i);
check_grant(a);
sleep(1);
printf ("test2: client %d release\n", i);
check_release(a);
lc[i]->release(a);
printf ("test2: client %d release done\n", i);
return 0;
}
void *
test3(void *x)
{
int i = * (int *) x;
printf ("test3: client %d acquire a release a concurrent\n", i);
for (int j = 0; j < 10; j++) {
lc[i]->acquire(a);
check_grant(a);
printf ("test3: client %d got lock\n", i);
check_release(a);
lc[i]->release(a);
}
return 0;
}
void *
test4(void *x)
{
int i = * (int *) x;
printf ("test4: thread %d acquire a release a concurrent; same clnt\n", i);
for (int j = 0; j < 10; j++) {
lc[0]->acquire(a);
check_grant(a);
printf ("test4: thread %d on client 0 got lock\n", i);
check_release(a);
lc[0]->release(a);
}
return 0;
}
void *
test5(void *x)
{
int i = * (int *) x;
printf ("test5: client %d acquire a release a concurrent; same and diff clnt\n", i);
for (int j = 0; j < 10; j++) {
if (i < 5) lc[0]->acquire(a);
else lc[1]->acquire(a);
check_grant(a);
printf ("test5: client %d got lock\n", i);
check_release(a);
if (i < 5) lc[0]->release(a);
else lc[1]->release(a);
}
return 0;
}
int
main(int argc, char *argv[])
{
int r;
pthread_t th[nt];
int test = 0;
setvbuf(stdout, NULL, _IONBF, 0);
setvbuf(stderr, NULL, _IONBF, 0);
srandom(getpid());
//jsl_set_debug(2);
if(argc < 2) {
fprintf(stderr, "Usage: %s [host:]port [test]\n", argv[0]);
exit(1);
}
dst = argv[1];
if (argc > 2) {
test = atoi(argv[2]);
if(test < 1 || test > 5){
printf("Test number must be between 1 and 5\n");
exit(1);
}
}
VERIFY(pthread_mutex_init(&count_mutex, NULL) == 0);
printf("simple lock client\n");
for (int i = 0; i < nt; i++) lc[i] = new lock_client(dst);
if(!test || test == 1){
test1();
}
if(!test || test == 2){
// test2
for (int i = 0; i < nt; i++) {
int *a = new int (i);
r = pthread_create(&th[i], NULL, test2, (void *) a);
VERIFY (r == 0);
}
for (int i = 0; i < nt; i++) {
pthread_join(th[i], NULL);
}
}
if(!test || test == 3){
printf("test 3\n");
// test3
for (int i = 0; i < nt; i++) {
int *a = new int (i);
r = pthread_create(&th[i], NULL, test3, (void *) a);
VERIFY (r == 0);
}
for (int i = 0; i < nt; i++) {
pthread_join(th[i], NULL);
}
}
if(!test || test == 4){
printf("test 4\n");
// test 4
for (int i = 0; i < 2; i++) {
int *a = new int (i);
r = pthread_create(&th[i], NULL, test4, (void *) a);
VERIFY (r == 0);
}
for (int i = 0; i < 2; i++) {
pthread_join(th[i], NULL);
}
}
if(!test || test == 5){
printf("test 5\n");
// test 5
for (int i = 0; i < nt; i++) {
int *a = new int (i);
r = pthread_create(&th[i], NULL, test5, (void *) a);
VERIFY (r == 0);
}
for (int i = 0; i < nt; i++) {
pthread_join(th[i], NULL);
}
}
printf ("%s: passed all tests successfully\n", argv[0]);
}