-
Notifications
You must be signed in to change notification settings - Fork 0
/
EvilUnit_contract.h
457 lines (398 loc) · 13.9 KB
/
EvilUnit_contract.h
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
/*
* This file is part of EvilUnit.
*
* EvilUnit is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* EvilUnit is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License along
* with EvilUnit. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Copyright Jon Chesterfield. All rights reserved.
*/
#ifndef EVILUNIT_CONTRACT_HEADER
#define EVILUNIT_CONTRACT_HEADER
/*
* Minimal contracts implementation, set up for integration with the associated
* test framework. Defines functions (and one object) inline with the attribute
* macro.
*/
/*
* List of defined jump implementations, with "none" at 0
*/
#define EVILUNIT_CONTRACT_IMPLEMENTATION_NONE 0
#define EVILUNIT_CONTRACT_IMPLEMENTATION_LIBC 1
#define EVILUNIT_CONTRACT_IMPLEMENTATION_CLANG 2
#define EVILUNIT_CONTRACT_IMPLEMENTATION_GCC 3
#ifndef __STDC_VERSION__
#define EVILUNIT_INLINE
#else
#if __STDC_VERSION__ == 199409L
#define EVILUNIT_INLINE
#else
#define EVILUNIT_INLINE inline
#endif
#endif
#define EVILUNIT_INLINE_ATTRIBUTE static __attribute__((unused)) EVILUNIT_INLINE
/*
* Expands to something with the semantic constraints of libc's setjmp
*/
#define EVILUNIT_CONTRACT_SETJUMP() EVILUNIT_CONTRACT_SETJUMP_IMPL()
/*
* Calling this jumps to a frame set up by SETJUMP()
*/
EVILUNIT_INLINE_ATTRIBUTE
void evilunit_contract_longjump(void);
/*
* Factor out the common construction. This would also permit an equivalent
* transform based on exceptions instead of setjump
*/
EVILUNIT_INLINE_ATTRIBUTE
unsigned long* evilunit_contract_depth_pointer(void);
#define EVILUNIT_CONTRACT_FRAME(BLOCK, CONTINUATION) \
if (EVILUNIT_CONTRACT_SETJUMP() == 0) \
{ \
BLOCK; \
--(*evilunit_contract_depth_pointer()); \
} \
else \
{ \
CONTINUATION \
}
/*
* Implementation follows.
* Chooses a value for EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION if none given,
* does various preprocess-scoped sanity checks, defines the above interface.
*/
/*
* Choose a default EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION if not specified.
* The default is the set of operations used if more specific ones are not
* requested.
* Prefers compiler builtins to libc.
*/
// has_builtin longjmp succeeds on aarch64 and then raises a fatal error in sema
#ifndef EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION
#if defined(__x86_64__)
#if defined(__has_builtin)
#if __has_builtin(__builtin_setjmp) && __has_builtin(__builtin_longjmp)
#ifdef __clang__
#define EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION \
EVILUNIT_CONTRACT_IMPLEMENTATION_CLANG
#elif defined(__GNUC__)
#define EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION \
EVILUNIT_CONTRACT_IMPLEMENTATION_GCC
#endif
#endif
#endif
#endif
#if defined(__wasi__)
// Default to off until the behaviour is checked
#define EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION \
EVILUNIT_CONTRACT_IMPLEMENTATION_NONE
#endif
#endif
#ifndef EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION
#if __STDC_HOSTED__
#define EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION \
EVILUNIT_CONTRACT_IMPLEMENTATION_LIBC
#else
#define EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION \
EVILUNIT_CONTRACT_IMPLEMENTATION_NONE
#endif
#endif
#if EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION != \
EVILUNIT_CONTRACT_IMPLEMENTATION_NONE && \
EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION != \
EVILUNIT_CONTRACT_IMPLEMENTATION_LIBC && \
EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION != \
EVILUNIT_CONTRACT_IMPLEMENTATION_CLANG && \
EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION != \
EVILUNIT_CONTRACT_IMPLEMENTATION_GCC
#error "Unknown contract default implementation"
#endif
#define EVILUNIT_CONTRACT_IMPLEMENTATION_NONE_AVAILABLE 1
#define EVILUNIT_CONTRACT_IMPLEMENTATION_LIBC_AVAILABLE __STDC_HOSTED__
#ifdef __clang__
#define EVILUNIT_CONTRACT_IMPLEMENTATION_CLANG_AVAILABLE 1
#define EVILUNIT_CONTRACT_IMPLEMENTATION_GCC_AVAILABLE 0
#elif defined(__GNUC__)
#define EVILUNIT_CONTRACT_IMPLEMENTATION_CLANG_AVAILABLE 0
#define EVILUNIT_CONTRACT_IMPLEMENTATION_GCC_AVAILABLE 1
#endif
#ifdef __wasi__
#if !defined(__wasm_exception_handling__)
#undef EVILUNIT_CONTRACT_IMPLEMENTATION_LIBC_AVAILABLE
#define EVILUNIT_CONTRACT_IMPLEMENTATION_LIBC_AVAILABLE 0
#undef EVILUNIT_CONTRACT_IMPLEMENTATION_CLANG_AVAILABLE
#define EVILUNIT_CONTRACT_IMPLEMENTATION_CLANG_AVAILABLE 0
#endif
#endif
/*
* Any implementation can be enabled by defining the corresponding macro,
* though things like asking for libc on a freestanding build will #error out
* Otherwise only the one used for the default implementation is enabled
*/
#ifndef EVILUNIT_CONTRACT_IMPLEMENTATION_NONE_ENABLED
#define EVILUNIT_CONTRACT_IMPLEMENTATION_NONE_ENABLED \
(EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION == \
EVILUNIT_CONTRACT_IMPLEMENTATION_NONE)
#endif
#ifndef EVILUNIT_CONTRACT_IMPLEMENTATION_LIBC_ENABLED
#define EVILUNIT_CONTRACT_IMPLEMENTATION_LIBC_ENABLED \
(EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION == \
EVILUNIT_CONTRACT_IMPLEMENTATION_LIBC)
#endif
#ifndef EVILUNIT_CONTRACT_IMPLEMENTATION_CLANG_ENABLED
#define EVILUNIT_CONTRACT_IMPLEMENTATION_CLANG_ENABLED \
(EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION == \
EVILUNIT_CONTRACT_IMPLEMENTATION_CLANG)
#endif
#ifndef EVILUNIT_CONTRACT_IMPLEMENTATION_GCC_ENABLED
#define EVILUNIT_CONTRACT_IMPLEMENTATION_GCC_ENABLED \
(EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION == \
EVILUNIT_CONTRACT_IMPLEMENTATION_GCC)
#endif
#if EVILUNIT_CONTRACT_IMPLEMENTATION_NONE_ENABLED && \
!EVILUNIT_CONTRACT_IMPLEMENTATION_NONE_AVAILABLE
#error "Trying to enable implementation none but it is not available"
#endif
#if EVILUNIT_CONTRACT_IMPLEMENTATION_LIBC_ENABLED && \
!EVILUNIT_CONTRACT_IMPLEMENTATION_LIBC_AVAILABLE
#error "Trying to enable implementation libc but it is not available"
#endif
#if EVILUNIT_CONTRACT_IMPLEMENTATION_CLANG_ENABLED && \
!EVILUNIT_CONTRACT_IMPLEMENTATION_CLANG_AVAILABLE
#error "Trying to enable implementation clang but it is not available"
#endif
#if EVILUNIT_CONTRACT_IMPLEMENTATION_GCC_ENABLED && \
!EVILUNIT_CONTRACT_IMPLEMENTATION_GCC_AVAILABLE
#error "Trying to enable implementation gcc but it is not available"
#endif
/* __thread */
/* gcc accepts thread and common on a global, puts it in common */
/* clang is putting it in bss, and dropping common from the IR annotation */
/* clang seems happy to combine thread and weak, gcc does not */
/* tis a bug. */
/* todo, pick attributes more carefully for this global */
#define EVILUNIT_CONTRACT_GLOBAL_ATTRIBUTE __thread __attribute__((weak))
#if EVILUNIT_CONTRACT_IMPLEMENTATION_NONE_ENABLED
#define EVILUNIT_CONTRACT_NONE_SETJUMP_IMPL() \
evilunit_contract_none_setjmp_argument()
struct evilunit_contract_none_state_type
{
unsigned long depth;
};
EVILUNIT_CONTRACT_GLOBAL_ATTRIBUTE struct evilunit_contract_none_state_type
evilunit_contract_none_state_value;
typedef void* evilunit_contract_none_state_pointer_type;
EVILUNIT_INLINE_ATTRIBUTE evilunit_contract_none_state_pointer_type
evilunit_contract_none_state(void)
{
return 0;
}
EVILUNIT_INLINE_ATTRIBUTE
unsigned long* evilunit_contract_none_state_depth_pointer(void)
{
return &evilunit_contract_none_state_value.depth;
}
EVILUNIT_INLINE_ATTRIBUTE
evilunit_contract_none_state_pointer_type
evilunit_contract_none_setjmp_argument(void)
{
++(*evilunit_contract_none_state_depth_pointer());
return evilunit_contract_none_state();
}
EVILUNIT_INLINE_ATTRIBUTE
void evilunit_contract_none_longjump(void)
{
if (*evilunit_contract_none_state_depth_pointer() == 1)
{
*evilunit_contract_none_state_depth_pointer() = 0;
}
}
#endif
#if EVILUNIT_CONTRACT_IMPLEMENTATION_LIBC_ENABLED
#include <setjmp.h>
#define EVILUNIT_CONTRACT_LIBC_SETJUMP_IMPL() \
setjmp(*evilunit_contract_libc_setjmp_argument())
struct evilunit_contract_libc_state_type
{
unsigned long depth;
jmp_buf state;
};
EVILUNIT_CONTRACT_GLOBAL_ATTRIBUTE struct evilunit_contract_libc_state_type
evilunit_contract_libc_state_value;
typedef jmp_buf* evilunit_contract_libc_state_pointer_type;
EVILUNIT_INLINE_ATTRIBUTE evilunit_contract_libc_state_pointer_type
evilunit_contract_libc_state(void)
{
return &evilunit_contract_libc_state_value.state;
}
EVILUNIT_INLINE_ATTRIBUTE
unsigned long* evilunit_contract_libc_state_depth_pointer(void)
{
return &evilunit_contract_libc_state_value.depth;
}
EVILUNIT_INLINE_ATTRIBUTE
evilunit_contract_libc_state_pointer_type
evilunit_contract_libc_setjmp_argument(void)
{
++(*evilunit_contract_libc_state_depth_pointer());
return evilunit_contract_libc_state();
}
EVILUNIT_INLINE_ATTRIBUTE
void evilunit_contract_libc_longjump(void)
{
if (*evilunit_contract_libc_state_depth_pointer() == 1)
{
*evilunit_contract_libc_state_depth_pointer() = 0;
longjmp(*evilunit_contract_libc_state(), 1);
}
}
#endif
#if EVILUNIT_CONTRACT_IMPLEMENTATION_CLANG_ENABLED
#define EVILUNIT_CONTRACT_CLANG_SETJUMP_IMPL() \
__builtin_setjmp(evilunit_contract_clang_setjmp_argument())
struct evilunit_contract_clang_state_type
{
unsigned long depth;
void* state[5];
};
EVILUNIT_CONTRACT_GLOBAL_ATTRIBUTE struct evilunit_contract_clang_state_type
evilunit_contract_clang_state_value;
typedef void** evilunit_contract_clang_state_pointer_type;
EVILUNIT_INLINE_ATTRIBUTE evilunit_contract_clang_state_pointer_type
evilunit_contract_clang_state(void)
{
return &evilunit_contract_clang_state_value.state[0];
}
EVILUNIT_INLINE_ATTRIBUTE
unsigned long* evilunit_contract_clang_state_depth_pointer(void)
{
return &evilunit_contract_clang_state_value.depth;
}
EVILUNIT_INLINE_ATTRIBUTE
evilunit_contract_clang_state_pointer_type
evilunit_contract_clang_setjmp_argument(void)
{
++(*evilunit_contract_clang_state_depth_pointer());
return evilunit_contract_clang_state();
}
EVILUNIT_INLINE_ATTRIBUTE
void evilunit_contract_clang_longjump(void)
{
if (*evilunit_contract_clang_state_depth_pointer() == 1)
{
*evilunit_contract_clang_state_depth_pointer() = 0;
__builtin_longjmp(evilunit_contract_clang_state(), 1);
}
}
#endif
#if EVILUNIT_CONTRACT_IMPLEMENTATION_GCC_ENABLED
#define EVILUNIT_CONTRACT_GCC_SETJUMP_IMPL() \
__builtin_setjmp(evilunit_contract_gcc_setjmp_argument())
struct evilunit_contract_gcc_state_type
{
unsigned long depth;
long int state[5];
};
EVILUNIT_CONTRACT_GLOBAL_ATTRIBUTE struct evilunit_contract_gcc_state_type
evilunit_contract_gcc_state_value;
typedef long int* evilunit_contract_gcc_state_pointer_type;
EVILUNIT_INLINE_ATTRIBUTE evilunit_contract_gcc_state_pointer_type
evilunit_contract_gcc_state(void)
{
return &evilunit_contract_gcc_state_value.state[0];
}
EVILUNIT_INLINE_ATTRIBUTE
unsigned long* evilunit_contract_gcc_state_depth_pointer(void)
{
return &evilunit_contract_gcc_state_value.depth;
}
EVILUNIT_INLINE_ATTRIBUTE
evilunit_contract_gcc_state_pointer_type evilunit_contract_gcc_setjmp_argument(
void)
{
++(*evilunit_contract_gcc_state_depth_pointer());
return evilunit_contract_gcc_state();
}
EVILUNIT_INLINE_ATTRIBUTE
void evilunit_contract_gcc_longjump(void)
{
if (*evilunit_contract_gcc_state_depth_pointer() == 1)
{
*evilunit_contract_gcc_state_depth_pointer() = 0;
__builtin_longjmp(evilunit_contract_gcc_state(), 1);
}
}
#endif
/*
* Define accessors to the default implementation
*/
#if EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION == \
EVILUNIT_CONTRACT_IMPLEMENTATION_NONE
#define EVILUNIT_CONTRACT_SETJUMP_IMPL() EVILUNIT_CONTRACT_NONE_SETJUMP_IMPL()
#endif
#if EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION == \
EVILUNIT_CONTRACT_IMPLEMENTATION_LIBC
#define EVILUNIT_CONTRACT_SETJUMP_IMPL() EVILUNIT_CONTRACT_LIBC_SETJUMP_IMPL()
#endif
#if EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION == \
EVILUNIT_CONTRACT_IMPLEMENTATION_CLANG
#define EVILUNIT_CONTRACT_SETJUMP_IMPL() EVILUNIT_CONTRACT_CLANG_SETJUMP_IMPL()
#endif
#if EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION == \
EVILUNIT_CONTRACT_IMPLEMENTATION_GCC
#define EVILUNIT_CONTRACT_SETJUMP_IMPL() EVILUNIT_CONTRACT_GCC_SETJUMP_IMPL()
#endif
#ifndef EVILUNIT_CONTRACT_SETJUMP_IMPL
#error "Missing definition EVILUNIT_CONTRACT_SETJUMP_IMPL"
#endif
EVILUNIT_INLINE_ATTRIBUTE
void evilunit_contract_longjump(void)
{
#if EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION == \
EVILUNIT_CONTRACT_IMPLEMENTATION_NONE
evilunit_contract_none_longjump();
#endif
#if EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION == \
EVILUNIT_CONTRACT_IMPLEMENTATION_LIBC
evilunit_contract_libc_longjump();
#endif
#if EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION == \
EVILUNIT_CONTRACT_IMPLEMENTATION_CLANG
evilunit_contract_clang_longjump();
#endif
#if EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION == \
EVILUNIT_CONTRACT_IMPLEMENTATION_GCC
evilunit_contract_gcc_longjump();
#endif
}
EVILUNIT_INLINE_ATTRIBUTE
unsigned long* evilunit_contract_depth_pointer(void)
{
#if EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION == \
EVILUNIT_CONTRACT_IMPLEMENTATION_NONE
return evilunit_contract_none_state_depth_pointer();
#endif
#if EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION == \
EVILUNIT_CONTRACT_IMPLEMENTATION_LIBC
return evilunit_contract_libc_state_depth_pointer();
#endif
#if EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION == \
EVILUNIT_CONTRACT_IMPLEMENTATION_CLANG
return evilunit_contract_clang_state_depth_pointer();
#endif
#if EVILUNIT_CONTRACT_DEFAULT_IMPLEMENTATION == \
EVILUNIT_CONTRACT_IMPLEMENTATION_GCC
return evilunit_contract_gcc_state_depth_pointer();
#endif
}
#endif