-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpthread.cc
263 lines (208 loc) · 7.1 KB
/
pthread.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
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
#include "common.h"
#include "threads-model.h"
#include "action.h"
#include "mypthread.h"
#include "snapshot-interface.h"
#include "datarace.h"
#include "mutex.h"
#include <condition_variable>
/* global "model" object */
#include "model.h"
#include "execution.h"
#include <errno.h>
int pthread_create(pthread_t *t, const pthread_attr_t * attr,
pthread_start_t start_routine, void * arg) {
createModelIfNotExist();
struct pthread_params params = { start_routine, arg };
/* seq_cst is just a 'don't care' parameter */
model->switch_thread(new ModelAction(PTHREAD_CREATE, std::memory_order_seq_cst, t, (uint64_t)¶ms));
return 0;
}
int pthread_join(pthread_t t, void **value_ptr) {
ModelExecution *execution = model->get_execution();
Thread *th = execution->get_pthread(t);
model->switch_thread(new ModelAction(PTHREAD_JOIN, std::memory_order_seq_cst, th, id_to_int(th->get_id())));
if ( value_ptr ) {
// store return value
void *rtval = th->get_pthread_return();
*value_ptr = rtval;
}
return 0;
}
int pthread_detach(pthread_t t) {
//Doesn't do anything
//Return success
return 0;
}
/* Take care of both pthread_yield and c++ thread yield */
int sched_yield() {
model->switch_thread(new ModelAction(THREAD_YIELD, std::memory_order_seq_cst, thread_current(), VALUE_NONE));
return 0;
}
void pthread_exit(void *value_ptr) {
Thread * th = thread_current();
th->set_pthread_return(value_ptr);
model->switch_thread(new ModelAction(THREADONLY_FINISH, std::memory_order_seq_cst, th));
//Need to exit so we don't return to the program
real_pthread_exit(NULL);
}
int pthread_mutex_init(pthread_mutex_t *p_mutex, const pthread_mutexattr_t * attr) {
createModelIfNotExist();
int mutex_type = PTHREAD_MUTEX_DEFAULT;
if (attr != NULL)
pthread_mutexattr_gettype(attr, &mutex_type);
cdsc::snapmutex *m = new cdsc::snapmutex(mutex_type);
ModelExecution *execution = model->get_execution();
execution->getMutexMap()->put(p_mutex, m);
return 0;
}
int pthread_mutex_lock(pthread_mutex_t *p_mutex) {
createModelIfNotExist();
ModelExecution *execution = model->get_execution();
/* to protect the case where PTHREAD_MUTEX_INITIALIZER is used
instead of pthread_mutex_init, or where *p_mutex is not stored
in the execution->mutex_map for some reason. */
if (!execution->getMutexMap()->contains(p_mutex)) {
pthread_mutex_init(p_mutex, NULL);
}
cdsc::snapmutex *m = execution->getMutexMap()->get(p_mutex);
if (m != NULL) {
m->lock();
} else {
return 1;
}
return 0;
}
int pthread_mutex_trylock(pthread_mutex_t *p_mutex) {
createModelIfNotExist();
ModelExecution *execution = model->get_execution();
cdsc::snapmutex *m = execution->getMutexMap()->get(p_mutex);
return m->try_lock() ? 0 : EBUSY;
}
int pthread_mutex_unlock(pthread_mutex_t *p_mutex) {
ModelExecution *execution = model->get_execution();
cdsc::snapmutex *m = execution->getMutexMap()->get(p_mutex);
if (m != NULL) {
m->unlock();
} else {
printf("try to unlock an untracked pthread_mutex\n");
return 1;
}
return 0;
}
int pthread_mutex_timedlock (pthread_mutex_t *__restrict p_mutex,
const struct timespec *__restrict abstime) {
// timedlock just gives the option of giving up the lock, so return and let the scheduler decide which thread goes next
createModelIfNotExist();
ModelExecution *execution = model->get_execution();
/* to protect the case where PTHREAD_MUTEX_INITIALIZER is used
instead of pthread_mutex_init, or where *p_mutex is not stored
in the execution->mutex_map for some reason. */
if (!execution->getMutexMap()->contains(p_mutex)) {
pthread_mutex_init(p_mutex, NULL);
}
cdsc::snapmutex *m = execution->getMutexMap()->get(p_mutex);
if (m != NULL) {
m->lock();
return 0;
}
return 1;
}
pthread_t pthread_self() {
createModelIfNotExist();
Thread* th = model->get_current_thread();
return (pthread_t)th->get_id();
}
int pthread_key_delete(pthread_key_t) {
model_print("key_delete is called\n");
return 0;
}
int pthread_cond_init(pthread_cond_t *p_cond, const pthread_condattr_t *attr) {
cdsc::snapcondition_variable *v = new cdsc::snapcondition_variable();
ModelExecution *execution = model->get_execution();
execution->getCondMap()->put(p_cond, v);
return 0;
}
int pthread_cond_wait(pthread_cond_t *p_cond, pthread_mutex_t *p_mutex) {
ModelExecution *execution = model->get_execution();
if ( !execution->getCondMap()->contains(p_cond) )
pthread_cond_init(p_cond, NULL);
if ( !execution->getMutexMap()->contains(p_mutex) )
pthread_mutex_init(p_mutex, NULL);
cdsc::snapcondition_variable *v = execution->getCondMap()->get(p_cond);
cdsc::snapmutex *m = execution->getMutexMap()->get(p_mutex);
v->wait(*m);
return 0;
}
int pthread_cond_timedwait(pthread_cond_t *p_cond,
pthread_mutex_t *p_mutex, const struct timespec *abstime) {
ModelExecution *execution = model->get_execution();
if ( !execution->getCondMap()->contains(p_cond) )
pthread_cond_init(p_cond, NULL);
if ( !execution->getMutexMap()->contains(p_mutex) )
pthread_mutex_init(p_mutex, NULL);
cdsc::snapcondition_variable *v = execution->getCondMap()->get(p_cond);
cdsc::snapmutex *m = execution->getMutexMap()->get(p_mutex);
uint64_t time = abstime->tv_sec * 1000000000 + abstime->tv_nsec;
ModelAction * timed_wait = new ModelAction(ATOMIC_TIMEDWAIT, std::memory_order_seq_cst, v, (uint64_t) m);
timed_wait->set_time(time);
if (model->switch_thread(timed_wait) == ETIMEDOUT) {
//model_print("thread %u wait timedout\n", thread_current_id());
return ETIMEDOUT;
}
m->lock();
return 0;
}
int pthread_cond_signal(pthread_cond_t *p_cond) {
// notify only one blocked thread
ModelExecution *execution = model->get_execution();
if ( !execution->getCondMap()->contains(p_cond) )
pthread_cond_init(p_cond, NULL);
cdsc::snapcondition_variable *v = execution->getCondMap()->get(p_cond);
v->notify_one();
return 0;
}
int pthread_cond_broadcast(pthread_cond_t *p_cond) {
// notify all blocked threads
ModelExecution *execution = model->get_execution();
if ( !execution->getCondMap()->contains(p_cond) )
pthread_cond_init(p_cond, NULL);
cdsc::snapcondition_variable *v = execution->getCondMap()->get(p_cond);
v->notify_all();
return 0;
}
int pthread_cond_destroy(pthread_cond_t *p_cond) {
ModelExecution *execution = model->get_execution();
if (execution->getCondMap()->contains(p_cond)) {
cdsc::snapcondition_variable *v = execution->getCondMap()->get(p_cond);
delete v;
execution->getCondMap()->remove(p_cond);
}
return 0;
}
/* https://github.com/lattera/glibc/blob/master/nptl/pthread_getattr_np.c */
int pthread_getattr_np(pthread_t t, pthread_attr_t *attr)
{
ModelExecution *execution = model->get_execution();
Thread *th = execution->get_pthread(t);
struct pthread_attr *iattr = (struct pthread_attr *) attr;
/* The sizes are subject to alignment. */
if (th != NULL) {
#if _STACK_GROWS_DOWN
ASSERT(false);
#else
iattr->stackaddr = (char *) th->get_stack_addr();
#endif
} else {
ASSERT(false);
}
return 0;
}
int pthread_setname_np(pthread_t t, const char *name)
{
ModelExecution *execution = model->get_execution();
Thread *th = execution->get_pthread(t);
if (th != NULL)
return 0;
return 1;
}