-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathengine.c
More file actions
290 lines (246 loc) · 5.72 KB
/
engine.c
File metadata and controls
290 lines (246 loc) · 5.72 KB
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
287
288
289
290
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/resource.h>
#include <sys/wait.h>
#include <sys/time.h>
#include <bbmacro/label.h>
#include <bbmacro/static.h>
#include <bbunit/engine.h>
const char *const bbunit_version = bbstatic_xstr(BBUNIT_VERSION);
static float timespec_dif(struct timespec *former, struct timespec *latter)
{
return
(latter->tv_sec + (float)latter->tv_nsec / 1000000000L) -
(former->tv_sec + (float)former->tv_nsec / 1000000000L);
}
static void timeval_fromfloat(float time_sec, struct timeval *tv)
{
tv->tv_sec = (int)time_sec;
tv->tv_usec = (long)(time_sec * 1000000L) % 1000000L;
}
static void writemsg(void *msg, size_t size, int writefd)
{
char *addr = msg;
while (size) {
ssize_t n = write(writefd, addr, size);
if (n == 0 || n == -1)
abort();
addr += n;
size -= n;
}
}
/* Return 1 if EOF, 0 otherwise. */
static int readmsg(void *msg, size_t size, int readfd)
{
char *addr = msg;
while (size) {
ssize_t n = read(readfd, addr, size);
if (n == 0)
return 1;
if (n == -1)
abort();
addr += n;
size -= n;
}
return 0;
}
/********************/
/* The pipe for transporting messages to parent process. */
static int bbunit_writefd;
enum msgkind {
MSGKIND_VERDICT,
MSGKIND_FAILHERE,
MSGKIND_NAME,
MSGKIND_RAISE
};
struct position {
const char *file;
int line;
};
struct raise {
enum bbunit_verdict verdict;
unsigned long num_off;
unsigned long num_bad;
};
static BBINLINE void writemsgkind(enum msgkind kind)
{
writemsg(&kind, sizeof(kind), bbunit_writefd);
}
static BBNORETURN void bbunit_pass(void)
{
enum bbunit_verdict verdict = BBUNIT_PASS;
writemsgkind(MSGKIND_VERDICT);
writemsg(&verdict, sizeof(verdict), bbunit_writefd);
close(bbunit_writefd);
exit(0);
}
void bbunit_skip(void)
{
enum bbunit_verdict verdict = BBUNIT_SKIP;
writemsgkind(MSGKIND_VERDICT);
writemsg(&verdict, sizeof(verdict), bbunit_writefd);
close(bbunit_writefd);
exit(0);
}
void bbunit_failhere(const char *file, int line)
{
struct position pos;
pos.file = file;
pos.line = line;
writemsgkind(MSGKIND_FAILHERE);
writemsg(&pos, sizeof(pos), bbunit_writefd);
close(bbunit_writefd);
exit(0);
}
void bbunit_name(const char *name)
{
writemsgkind(MSGKIND_NAME);
writemsg(&name, sizeof(name), bbunit_writefd);
}
static void bbunit_raise(enum bbunit_verdict verdict,
unsigned long num_off, unsigned long num_bad)
{
struct raise raise;
raise.verdict = verdict;
raise.num_off = num_off;
raise.num_bad = num_bad;
writemsgkind(MSGKIND_RAISE);
writemsg(&raise, sizeof(raise), bbunit_writefd);
}
/********************/
/* The nesting level of a current child process.
* The value is just a foolproof. */
static unsigned bbunit_nesting = 0U - 1U;
/* Return 1 if EOF, 0 otherwise. */
static int read_grandchild(int readfd, struct bbunit_info *info)
{
int eof;
enum msgkind kind;
eof = readmsg(&kind, sizeof(kind), readfd);
if (eof) return 1;
switch (kind) {
when (MSGKIND_VERDICT) {
enum bbunit_verdict verdict;
eof = readmsg(&verdict, sizeof(verdict), readfd);
if (eof) return 1;
info->verdict = verdict;
}
when (MSGKIND_FAILHERE) {
struct position pos;
eof = readmsg(&pos, sizeof(pos), readfd);
if (eof) return 1;
info->file = pos.file;
info->line = pos.line;
info->verdict = BBUNIT_FAIL;
}
when (MSGKIND_NAME) {
eof = readmsg(&info->name, sizeof(info->name), readfd);
if (eof) return 1;
}
when (MSGKIND_RAISE) {
struct raise raise;
eof = readmsg(&raise, sizeof(raise), readfd);
if (eof) return 1;
if (raise.verdict == BBUNIT_SKIP) {
++info->num_off;
return 0;
}
info->num_off += raise.num_off;
info->num_bad += raise.num_bad;
if (raise.verdict != BBUNIT_PASS)
++info->num_bad;
}
}
return 0;
}
static int child(void (*test)(void), float timelimit_sec, int flags,
int writefd)
{
int res;
int pipefd[2];
int old_writefd;
pid_t pid;
struct itimerval itv;
struct timespec ts;
if (pipe(pipefd) != 0)
return -1;
old_writefd = bbunit_writefd;
bbunit_writefd = pipefd[1];
if (flags & BBUNIT_SUBORDINATE) {
++bbunit_nesting;
if (bbunit_nesting == 0)
abort();
} else {
bbunit_nesting = 0;
}
itv.it_interval.tv_sec = 0;
itv.it_interval.tv_usec = 0;
timeval_fromfloat(timelimit_sec, &itv.it_value);
clock_gettime(CLOCK_MONOTONIC, &ts);
if ((pid = fork()) == 0) {
if (!(flags & BBUNIT_UNLIMITED_TIME))
setitimer(ITIMER_REAL, &itv, 0);
close(pipefd[0]);
test();
bbunit_pass();
}
close(pipefd[1]);
bbunit_writefd = old_writefd;
if (pid == -1) {
res = -1;
} else {
int eof;
struct bbunit_info info;
int wstatus;
struct timespec ts2;
info.verdict = BBUNIT_CRASH;
info.num_off = 0;
info.num_bad = 0;
info.name = NULL;
info.nesting = bbunit_nesting;
do {
eof = read_grandchild(pipefd[0], &info);
} while (!eof);
waitpid(pid, &wstatus, 0);
clock_gettime(CLOCK_MONOTONIC, &ts2);
info.time_sec = timespec_dif(&ts, &ts2);
if (WIFSIGNALED(wstatus) && WTERMSIG(wstatus) == SIGALRM)
info.verdict = BBUNIT_TIME;
writemsg(&info, sizeof(info), writefd);
if (flags & BBUNIT_SUBORDINATE)
bbunit_raise(info.verdict, info.num_off, info.num_bad);
res = 0;
}
close(pipefd[0]);
return res;
}
int bbunit_execute(void (*test)(void), float timelimit_sec, int flags,
struct bbunit_info *info)
{
int res;
int pipefd[2];
pid_t pid;
if (pipe(pipefd) != 0)
return -1;
if ((pid = fork()) == 0) {
close(pipefd[0]);
res = child(test, timelimit_sec, flags, pipefd[1]);
close(pipefd[1]);
exit((res == 0)? 0: 1);
}
close(pipefd[1]);
if (pid == -1) {
res = -1;
} else {
int eof;
int wstatus;
eof = readmsg(info, sizeof(*info), pipefd[0]);
waitpid(pid, &wstatus, 0);
res = (eof || WEXITSTATUS(wstatus) != 0)? -1: 0;
}
close(pipefd[0]);
return res;
}