-
Notifications
You must be signed in to change notification settings - Fork 6
/
test_pg.c
375 lines (305 loc) · 9.58 KB
/
test_pg.c
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
#include "postgres.h"
#include "funcapi.h"
#include "executor/spi.h"
#include "miscadmin.h"
#include "storage/ipc.h"
#include "catalog/pg_type.h"
#include "utils/array.h"
#include "utils/timeout.h"
#include "utils/builtins.h"
#include "utils/memutils.h"
#include "utils/guc.h"
#include "access/xact.h"
#include "regex/regex.h"
#include "lib/stringinfo.h"
#include <string.h>
#include <sys/time.h>
#include <sys/resource.h>
extern void GoFuzz();
//extern void staticdeathcallback();
//extern void errorcallback(const char *errorname);
static int in_fuzzer;
PG_MODULE_MAGIC;
SPIPlanPtr plan;
void fuzz_exit_handler(int code, Datum arg) {
// if (in_fuzzer)
// abort();
}
static void limit_resources() {
int i;
struct rlimit old, new;
struct {
char *resource_name;
int resource;
rlim_t new_soft_limit;
rlim_t new_hard_limit;
} limits[] = {
// { "max memory size", RLIMIT_AS, 200000000 },
{ "core file size", RLIMIT_CORE, 0 , 0},
// { "cpu time", RLIMIT_CPU, 1, 300},
{ "data seg size", RLIMIT_DATA, 200000000, RLIM_INFINITY},
};
for (i=0; i<sizeof(limits)/sizeof(*limits); i++) {
int retval;
retval = getrlimit(limits[i].resource, &old);
if (retval < 0) {
perror("getrlimit");
abort();
}
new.rlim_cur = limits[i].new_soft_limit;
new.rlim_max = limits[i].new_soft_limit;
if (new.rlim_max > old.rlim_max)
new.rlim_max = old.rlim_max;
fprintf(stderr, "Setting %s to %zd / %zd (was %zd / %zd)\n",
limits[i].resource_name,
new.rlim_cur, new.rlim_max,
old.rlim_cur, old.rlim_max);
retval = setrlimit(limits[i].resource, &new);
if (retval < 0) {
perror("setrlimit");
abort();
}
}
}
PG_FUNCTION_INFO_V1(test_fuzz_environment);
Datum
test_fuzz_environment(PG_FUNCTION_ARGS){
elog(WARNING, "setting rlimit");
limit_resources();
elog(WARNING, "setting statement_timeout");
SetConfigOption("statement_timeout", "200", PGC_SUSET, PGC_S_OVERRIDE);
elog(WARNING, "setting max_stack_depth");
SetConfigOption("set max_stack_depth", "7680kB", PGC_SUSET, PGC_S_OVERRIDE);
PG_RETURN_NULL();
}
/* Postgres SQL Function to invoke fuzzer */
/*
Current project... surface progress reports via SQL return values and INFO/WARNING logs.
Progress report from fuzzer looks like:
#27718 INITED cov: 870 bits: 994 indir: 198 corp: 7/31b exec/s: 13859 rss: 388Mb
#32768 pulse cov: 1477 bits: 1731 indir: 203 corp: 40/292b exec/s: 6553 rss: 457Mb
#34008 NEW cov: 1477 bits: 1732 indir: 203 corp: 41/295b exec/s: 6801 rss: 458Mb L: 3 MS: 2 ChangeByte-ChangeBit-
#27718 DONE cov: 870 bits: 994 indir: 198 corp: 7/31b exec/s: 13859 rss: 388Mb
Progress reports from here look like:
FuzzOne n=65536 success=0 fail=65536 null=0
Error codes seen 42601:60539 42704:3460 22023:166 3F000:242 22P02:194 0A000:24 22003:80 22021:476 22025:355
*/
PG_FUNCTION_INFO_V1(fuzz);
Datum
fuzz(PG_FUNCTION_ARGS)
{
unsigned runs = PG_GETARG_INT32(0);
text *expr_text = PG_GETARG_TEXT_P(1);
char *expr = text_to_cstring(expr_text);
Oid argtypes[1] = { TEXTOID };
int retval;
static unsigned ever_called_before = 0;
if (ever_called_before++) {
elog(ERROR, "Fuzzer can only be used once, reconnect to a new process to run again");
}
if (atoi(GetConfigOptionByName("max_stack_depth", NULL, false)) < 7680) {
elog(WARNING, "setting max_stack_depth");
SetConfigOption("max_stack_depth", "7680", PGC_SUSET, PGC_S_OVERRIDE);
}
if (runs > 400000000)
elog(ERROR, "Unreasonable number of runs");
limit_resources();
/* If Postgres handles a FATAL error it'll exit cleanly but we
* want to treat the last test as a failure */
on_proc_exit(fuzz_exit_handler, 0);
in_fuzzer = 1;
retval = SPI_connect();
if (retval != SPI_OK_CONNECT)
abort();
/* Prepare once before we start the driver */
plan = SPI_prepare(expr, 1, argtypes);
if (!plan)
elog(ERROR, "Failed to plan query");
retval = SPI_getargcount(plan);
if (retval != 1)
elog(ERROR, "Query to fuzz must take precisely one parameter");
/* Invoke the driver via the test_harness.cpp C++ code */
GoFuzz(runs);
SPI_finish();
/* disable the proc_exit call which calls the deathcallback */
in_fuzzer = 0;
PG_RETURN_NULL();
}
static struct {
int errcode;
int count;
} errcode_counts[100];
int num_counts;
static int inc_errcode_count(int errcode) {
int i;
for (i=0;i<num_counts;i++) {
if (errcode_counts[i].errcode == errcode) {
return ++errcode_counts[i].count;
}
}
if (num_counts >= 100)
abort();
errcode_counts[num_counts].errcode = errcode;
errcode_counts[num_counts].count = 1;
num_counts++;
return 1;
}
static void list_errcode_counts() {
int i;
fprintf(stderr, "Error codes seen");
for (i=0; i<num_counts; i++) {
fprintf(stderr, " %s:%d", unpack_sql_state(errcode_counts[i].errcode), errcode_counts[i].count);
}
fprintf(stderr, "\n");
}
static void jsonb_errcode_counts() {
int i;
StringInfoData json_data, *json = &json_data;
initStringInfo(json);
appendStringInfoChar(json, '{');
for (i=0; i<num_counts; i++) {
appendStringInfo(json, "\"%s\": %d, ",
unpack_sql_state(errcode_counts[i].errcode),
errcode_counts[i].count);
if (i != num_counts-1)
appendStringInfoChar(json, ',');
}
appendStringInfoChar(json, '}');
fprintf(stderr, "JSON: %s\n", json->data);
}
/*
* Callback from fuzzer to execute one fuzz test case as set up in
* global "plan" variable by fuzz()
*/
int FuzzOne(const char *Data, size_t Size) {
text *arg = cstring_to_text_with_len(Data, Size);
static unsigned long n_execs, n_success, n_fail, n_null;
static int last_error, last_error_count;
MemoryContext oldcontext = CurrentMemoryContext;
ResourceOwner oldowner = CurrentResourceOwner;
n_execs++;
/* Not sure why we're being passed NULL */
if (!Data) {
n_null++;
return 0;
}
BeginInternalSubTransaction(NULL);
PG_TRY();
{
Datum values[1] = { PointerGetDatum(arg) };
int retval;
/* Slow queries are bad but if they CHECK_FOR_INTERRUPTS often
enough then that's not too bad. We must directly call
enable_timeout because STATEMENT_TIMEOUT is only armed in
postgres.c which SPI bypasses */
CHECK_FOR_INTERRUPTS();
enable_timeout_after(STATEMENT_TIMEOUT, 100);
retval = SPI_execute_plan(plan, values,
NULL /* nulls */,
true, /* read-only */
0 /* max rows */);
disable_timeout(STATEMENT_TIMEOUT, true);
SPI_freetuptable(SPI_tuptable);
if (retval == SPI_OK_SELECT)
n_success++;
else if (retval >= 0)
fprintf(stderr, "SPI reports non-select run retval=%d\n", retval);
else
abort();
last_error_count = 0;
last_error = 0;
ReleaseCurrentSubTransaction();
MemoryContextSwitchTo(oldcontext);
CurrentResourceOwner = oldowner;
SPI_restore_connection();
}
PG_CATCH();
{
/* Save error info */
MemoryContextSwitchTo(oldcontext);
disable_timeout(STATEMENT_TIMEOUT, true);
ErrorData *edata = CopyErrorData();
inc_errcode_count(edata->sqlerrcode);
/* Allow C-c to cancel the whole fuzzer */
if (edata->sqlerrcode == ERRCODE_QUERY_CANCELED &&
strstr(edata->message, "due to user request")) {
in_fuzzer = 0;
PG_RE_THROW();
} else if (last_error != edata->sqlerrcode) {
/* New error seen -- that's a good thing */
last_error = edata->sqlerrcode;
last_error_count = 0;
} else if (last_error_count++ > 10) {
/* If we're repeatedly hitting the same errcode over
* and over abort because that's usually a sign the
* harness isn't working properly */
in_fuzzer = 0;
PG_RE_THROW();
}
/* Otherwise attempt to recover using the subtransaction */
FlushErrorState();
/* Abort the inner transaction */
RollbackAndReleaseCurrentSubTransaction();
MemoryContextSwitchTo(oldcontext);
CurrentResourceOwner = oldowner;
SPI_restore_connection();
n_fail++;
/* INTERNAL_ERROR is definitely a bug. The others debatable
* but in particular we're interested in infinite recursion
* caught by check_for_stack_depth() which shows up as
* STATEMENT_TOO_COMPLEX which is in the
* PROGRAM_LIMIT_EXCEEDED category
*/
int errcategory = ERRCODE_TO_CATEGORY(edata->sqlerrcode);
int regerrcode = -1;
char regerrstr[256];
if (edata->sqlerrcode == ERRCODE_INVALID_REGULAR_EXPRESSION) {
char *p = strrchr(edata->message, ':');
if (p && p[1] == ' ')
p += 2;
if (p && p[0]) {
strncpy(regerrstr, p, 256);
pg_regerror(REG_ATOI, NULL, regerrstr, 256);
regerrcode = atoi(regerrstr);
}
}
if (errcategory == ERRCODE_PROGRAM_LIMIT_EXCEEDED ||
errcategory == ERRCODE_INSUFFICIENT_RESOURCES ||
// errcategory == ERRCODE_OPERATOR_INTERVENTION || /* statement_timeout */
errcategory == ERRCODE_INTERNAL_ERROR ||
(edata->sqlerrcode == ERRCODE_INVALID_REGULAR_EXPRESSION &&
(regerrcode == REG_ESPACE ||
regerrcode == REG_ASSERT ||
//regerrcode == REG_ETOOBIG ||
//regerrcode == REG_CANCEL ||
regerrcode == REG_INVARG ||
regerrcode == REG_MIXED ||
regerrcode == REG_ECOLORS)))
{
if (in_fuzzer) {
char errorname[80];
sprintf(errorname, "error-%s", unpack_sql_state(edata->sqlerrcode));
fprintf(stderr, "Calling errocallback for %s (%s)\n", errorname, edata->message);
// errorcallback(errorname);
}
/* we were in a subtransaction so yay we can continue */
FreeErrorData(edata);
}
else
{
last_error = 0;
last_error_count = 0;
FreeErrorData(edata);
}
}
PG_END_TRY();
pfree(arg);
/* Every power of two executions print progress */
if ((n_execs & (n_execs-1)) == 0) {
static int old_n_execs;
fprintf(stderr, "FuzzOne n=%lu success=%lu fail=%lu null=%lu\n", n_execs, n_success, n_fail, n_null);
jsonb_errcode_counts();
old_n_execs = n_execs;
}
return 0;
}