aboutsummaryrefslogtreecommitdiffstats
path: root/coverage/bin/bug.c
blob: 62646cec27021139cb64579a8a810850d110683d (plain)
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
#include <errno.h>
#include <stdint.h>
static int ok()
{
	return 0;
}
static int bug()
{
	errno = 0;
	return ((int(*)())(intptr_t)0)();
}
static int err()
{
	errno = EAGAIN;
	return -1;
}
/**************************************************************************/
/**************************************************************************/
/***           BINDINGS V2                                              ***/
/**************************************************************************/
/**************************************************************************/
#if defined(BUG1)  /* incomplete exports: afbBindingV2data miss */

#define AFB_BINDING_VERSION 0
#include <afb/afb-binding.h>
const struct afb_binding_v2 afbBindingV2;

#endif
/**************************************************************************/
#if defined(BUG2)  /* incomplete exports: afbBindingV2 miss */

#define AFB_BINDING_VERSION 0
#include <afb/afb-binding.h>
struct afb_binding_data_v2 afbBindingV2data;

#endif
/**************************************************************************/
#if defined(BUG3)  /* zero filled structure */

#define AFB_BINDING_VERSION 0
#include <afb/afb-binding.h>
const struct afb_binding_v2 afbBindingV2;
struct afb_binding_data_v2 afbBindingV2data;

#endif
/**************************************************************************/
#if defined(BUG4)  /* no verb definition */

#define AFB_BINDING_VERSION 2
#include <afb/afb-binding.h>

const struct afb_binding_v2 afbBindingV2 = {
	.api = "bug4",
        .preinit = (void*)ok,
        .init = (void*)ok
};
#endif
/**************************************************************************/
#if defined(BUG5)  /* preinit buggy */

#define AFB_BINDING_VERSION 2
#include <afb/afb-binding.h>

struct afb_verb_v2 verbs[] = {
	{ NULL }
};
const struct afb_binding_v2 afbBindingV2 = {
	.api = "bug5",
	.verbs = verbs,
        .preinit = (void*)bug,
        .init = (void*)ok
};
#endif
/**************************************************************************/
#if defined(BUG6)  /* buggy init */

#define AFB_BINDING_VERSION 2
#include <afb/afb-binding.h>

struct afb_verb_v2 verbs[] = {
	{ NULL }
};
const struct afb_binding_v2 afbBindingV2 = {
	.api = "bug6",
	.verbs = verbs,
        .preinit = (void*)ok,
        .init = (void*)bug
};
#endif
/**************************************************************************/
#if defined(BUG7)  /* error in preinit */

#define AFB_BINDING_VERSION 2
#include <afb/afb-binding.h>

struct afb_verb_v2 verbs[] = {
	{ NULL }
};
const struct afb_binding_v2 afbBindingV2 = {
	.api = "bug7",
	.verbs = verbs,
        .preinit = (void*)err,
        .init = (void*)ok
};
#endif
/**************************************************************************/
#if defined(BUG8)  /* error in init */

#define AFB_BINDING_VERSION 2
#include <afb/afb-binding.h>

struct afb_verb_v2 verbs[] = {
	{ NULL }
};
const struct afb_binding_v2 afbBindingV2 = {
	.api = "bug8",
	.verbs = verbs,
        .preinit = (void*)ok,
        .init = (void*)err
};
#endif
/**************************************************************************/
#if defined(BUG9)  /* no api name */

#define AFB_BINDING_VERSION 2
#include <afb/afb-binding.h>

struct afb_verb_v2 verbs[] = {
	{ NULL }
};
const struct afb_binding_v2 afbBindingV2 = {
	.verbs = verbs,
        .preinit = (void*)ok,
        .init = (void*)ok
};
#endif
/**************************************************************************/
#if defined(BUG10)  /* bad api name */

#define AFB_BINDING_VERSION 2
#include <afb/afb-binding.h>

struct afb_verb_v2 verbs[] = {
	{ NULL }
};
const struct afb_binding_v2 afbBindingV2 = {
	.api = "bug 10",
	.verbs = verbs,
        .preinit = (void*)ok,
        .init = (void*)err
};
#endif
/**************************************************************************/
/**************************************************************************/
/***           BINDINGS V3                                              ***/
/**************************************************************************/
/**************************************************************************/
#if defined(BUG11) /* make a SEGV */

#define AFB_BINDING_VERSION 3
#include <afb/afb-binding.h>
int afbBindingEntry(afb_api_t api)
{
	return ((int(*)())(intptr_t)0)();
}
#endif
/**************************************************************************/
#if defined(BUG12) /* no afbBindingV3 nor afbBindingV3entry */

#define AFB_BINDING_VERSION 0
#include <afb/afb-binding.h>
struct afb_api_x3 *afbBindingV3root;

#endif
/**************************************************************************/
#if defined(BUG13) /* no afbBindingV3root nor afbBindingV3entry */

#define AFB_BINDING_VERSION 0
#include <afb/afb-binding.h>
const struct afb_binding_v3 afbBindingV3;
int afbBindingV3entry(struct afb_api_x3 *rootapi) { return 0; }

#endif
/**************************************************************************/
#if defined(BUG14) /* no api name */

#define AFB_BINDING_VERSION 3
#include <afb/afb-binding.h>

const struct afb_binding_v3 afbBindingV3;

#endif
/**************************************************************************/
#if defined(BUG15) /* bad api name */

#define AFB_BINDING_VERSION 3
#include <afb/afb-binding.h>

const struct afb_binding_v3 afbBindingV3 = {
	.api = "bug 15"
};

#endif
/**************************************************************************/
#if defined(BUG16) /* both entry and preinit */

#define AFB_BINDING_VERSION 3
#include <afb/afb-binding.h>

int afbBindingV3entry(struct afb_api_x3 *rootapi) { return 0; }
const struct afb_binding_v3 afbBindingV3 = {
	.api = "bug16",
	.preinit = afbBindingV3entry
};

#endif
/**************************************************************************/
#if defined(BUG17) /* entry fails */

#define AFB_BINDING_VERSION 3
#include <afb/afb-binding.h>

int afbBindingV3entry(struct afb_api_x3 *rootapi) { errno = EAGAIN; return -1; }
#endif
/**************************************************************************/
#if defined(BUG18) /* preinit fails */

#define AFB_BINDING_VERSION 3
#include <afb/afb-binding.h>

const struct afb_binding_v3 afbBindingV3 = {
	.api = "bug18",
	.preinit = (void*)err
};

#endif
/**************************************************************************/
#if defined(BUG19) /* preinit SEGV */

#define AFB_BINDING_VERSION 3
#include <afb/afb-binding.h>

const struct afb_binding_v3 afbBindingV3 = {
	.api = "bug19",
	.preinit = (void*)bug
};

#endif
/**************************************************************************/
#if defined(BUG20) /* init fails */

#define AFB_BINDING_VERSION 3
#include <afb/afb-binding.h>

const struct afb_binding_v3 afbBindingV3 = {
	.api = "bug20",
	.init = (void*)err
};

#endif
/**************************************************************************/
#if defined(BUG21) /* init SEGV */

#define AFB_BINDING_VERSION 3
#include <afb/afb-binding.h>

const struct afb_binding_v3 afbBindingV3 = {
	.api = "bug21",
	.init = (void*)bug,
	.provide_class = "a b c",
	.require_class = "x y z",
	.require_api = "bug4 bug5",
};

#endif
/**************************************************************************/