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
|
/*
* base.c
* contributed by Mark Griffin
*/
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <time.h>
#include "oniguruma.h"
#define PARSE_DEPTH_LIMIT 8
#define RETRY_LIMIT 5000
#define EXEC_PRINT_INTERVAL 5000000
typedef unsigned char uint8_t;
#ifdef STANDALONE
#include <ctype.h>
static void
dump_data(FILE* fp, unsigned char* data, int len)
{
int i;
fprintf(fp, "{\n");
for (i = 0; i < len; i++) {
unsigned char c = data[i];
if (isprint((int )c)) {
if (c == '\\')
fprintf(fp, " '\\\\'");
else
fprintf(fp, " '%c'", c);
}
else {
fprintf(fp, "0x%02x", (int )c);
}
if (i == len - 1) {
fprintf(fp, "\n");
}
else {
if (i % 8 == 7)
fprintf(fp, ",\n");
else
fprintf(fp, ", ");
}
}
fprintf(fp, "};\n");
}
#else
static void
output_current_time(FILE* fp)
{
char d[64];
time_t t;
t = time(NULL);
strftime(d, sizeof(d), "%m/%d %H:%M:%S", localtime(&t));
fprintf(fp, "%s", d);
}
#endif
static int
search(regex_t* reg, unsigned char* str, unsigned char* end)
{
int r;
unsigned char *start, *range;
OnigRegion *region;
region = onig_region_new();
start = str;
range = end;
r = onig_search(reg, str, end, start, range, region, ONIG_OPTION_NONE);
if (r >= 0) {
#ifdef STANDALONE
int i;
fprintf(stdout, "match at %d (%s)\n", r,
ONIGENC_NAME(onig_get_encoding(reg)));
for (i = 0; i < region->num_regs; i++) {
fprintf(stdout, "%d: (%d-%d)\n", i, region->beg[i], region->end[i]);
}
#endif
}
else if (r == ONIG_MISMATCH) {
#ifdef STANDALONE
fprintf(stdout, "search fail (%s)\n",
ONIGENC_NAME(onig_get_encoding(reg)));
#endif
}
else { /* error */
#ifdef STANDALONE
char s[ONIG_MAX_ERROR_MESSAGE_LEN];
onig_error_code_to_str((UChar* )s, r);
fprintf(stdout, "ERROR: %s\n", s);
fprintf(stdout, " (%s)\n", ONIGENC_NAME(onig_get_encoding(reg)));
#endif
onig_region_free(region, 1 /* 1:free self, 0:free contents only */);
if (r == ONIGERR_STACK_BUG ||
r == ONIGERR_UNDEFINED_BYTECODE ||
r == ONIGERR_UNEXPECTED_BYTECODE)
return -2;
return -1;
}
onig_region_free(region, 1 /* 1:free self, 0:free contents only */);
return 0;
}
static long INPUT_COUNT;
static long EXEC_COUNT;
static long EXEC_COUNT_INTERVAL;
static long REGEX_SUCCESS_COUNT;
static long VALID_STRING_COUNT;
static int
exec(OnigEncoding enc, OnigOptionType options, OnigSyntaxType* syntax,
char* apattern, char* apattern_end, char* astr, UChar* end)
{
int r;
regex_t* reg;
OnigErrorInfo einfo;
UChar* pattern = (UChar* )apattern;
UChar* str = (UChar* )astr;
UChar* pattern_end = (UChar* )apattern_end;
EXEC_COUNT++;
EXEC_COUNT_INTERVAL++;
onig_initialize(&enc, 1);
onig_set_retry_limit_in_search(RETRY_LIMIT);
#ifdef PARSE_DEPTH_LIMIT
onig_set_parse_depth_limit(PARSE_DEPTH_LIMIT);
#endif
r = onig_new(®, pattern, pattern_end,
options, enc, syntax, &einfo);
if (r != ONIG_NORMAL) {
char s[ONIG_MAX_ERROR_MESSAGE_LEN];
onig_error_code_to_str((UChar* )s, r, &einfo);
#ifdef STANDALONE
fprintf(stdout, "ERROR: %s\n", s);
#endif
onig_end();
if (r == ONIGERR_PARSER_BUG ||
r == ONIGERR_STACK_BUG ||
r == ONIGERR_UNDEFINED_BYTECODE ||
r == ONIGERR_UNEXPECTED_BYTECODE) {
return -2;
}
else
return -1;
}
REGEX_SUCCESS_COUNT++;
r = search(reg, pattern, pattern_end);
if (r == -2) return -2;
if (onigenc_is_valid_mbc_string(enc, str, end) != 0) {
VALID_STRING_COUNT++;
r = search(reg, str, end);
if (r == -2) return -2;
}
onig_free(reg);
onig_end();
return 0;
}
static int
alloc_exec(OnigEncoding enc, OnigOptionType options, OnigSyntaxType* syntax,
int pattern_size, size_t remaining_size, unsigned char *data)
{
int r;
unsigned char *pattern_end;
unsigned char *str_null_end;
// copy first PATTERN_SIZE bytes off to be the pattern
unsigned char *pattern = (unsigned char *)malloc(pattern_size != 0 ? pattern_size : 1);
memcpy(pattern, data, pattern_size);
pattern_end = pattern + pattern_size;
data += pattern_size;
remaining_size -= pattern_size;
#if defined(UTF16_BE) || defined(UTF16_LE)
if (remaining_size % 2 == 1) remaining_size--;
#endif
unsigned char *str = (unsigned char*)malloc(remaining_size != 0 ? remaining_size : 1);
memcpy(str, data, remaining_size);
str_null_end = str + remaining_size;
r = exec(enc, options, syntax,
(char *)pattern, (char *)pattern_end,
(char *)str, str_null_end);
free(pattern);
free(str);
return r;
}
#ifdef SYNTAX_TEST
#define NUM_CONTROL_BYTES 4
#else
#define NUM_CONTROL_BYTES 3
#endif
int LLVMFuzzerTestOneInput(const uint8_t * Data, size_t Size)
{
#if !defined(UTF16_BE) && !defined(UTF16_LE)
static OnigEncoding encodings[] = {
ONIG_ENCODING_UTF8,
ONIG_ENCODING_UTF8,
ONIG_ENCODING_UTF8,
ONIG_ENCODING_SJIS,
//ONIG_ENCODING_EUC_JP,
ONIG_ENCODING_ISO_8859_1,
ONIG_ENCODING_BIG5,
ONIG_ENCODING_GB18030,
ONIG_ENCODING_EUC_TW
};
unsigned char encoding_choice;
#endif
#ifdef SYNTAX_TEST
static OnigSyntaxType* syntaxes[] = {
ONIG_SYNTAX_POSIX_EXTENDED,
ONIG_SYNTAX_EMACS,
ONIG_SYNTAX_GREP,
ONIG_SYNTAX_GNU_REGEX,
ONIG_SYNTAX_JAVA,
ONIG_SYNTAX_PERL_NG,
ONIG_SYNTAX_ONIGURUMA
};
#ifdef STANDALONE
static char* syntax_names[] = {
"Posix Extended",
"Emacs",
"Grep",
"GNU Regex",
"Java",
"Perl+NG",
"Oniguruma"
};
#endif
unsigned char syntax_choice;
#endif
int r;
int pattern_size;
size_t remaining_size;
unsigned char *data;
unsigned char options_choice;
unsigned char pattern_size_choice;
OnigOptionType options;
OnigEncoding enc;
OnigSyntaxType* syntax;
INPUT_COUNT++;
if (Size < NUM_CONTROL_BYTES) return 0;
remaining_size = Size;
data = (unsigned char* )(Data);
#ifdef UTF16_BE
enc = ONIG_ENCODING_UTF16_BE;
#else
#ifdef UTF16_LE
enc = ONIG_ENCODING_UTF16_LE;
#else
encoding_choice = data[0];
data++;
remaining_size--;
int num_encodings = sizeof(encodings)/sizeof(encodings[0]);
enc = encodings[encoding_choice % num_encodings];
#endif
#endif
#ifdef SYNTAX_TEST
syntax_choice = data[0];
data++;
remaining_size--;
int num_syntaxes = sizeof(syntaxes)/sizeof(syntaxes[0]);
syntax = syntaxes[syntax_choice % num_syntaxes];
#else
syntax = ONIG_SYNTAX_DEFAULT;
#endif
options_choice = data[0];
options = (options_choice % 2 == 0) ? ONIG_OPTION_NONE : ONIG_OPTION_IGNORECASE;
data++;
remaining_size--;
pattern_size_choice = data[0];
data++;
remaining_size--;
if (remaining_size == 0)
pattern_size = 0;
else {
pattern_size = (int )pattern_size_choice % remaining_size;
#if defined(UTF16_BE) || defined(UTF16_LE)
if (pattern_size % 2 == 1) pattern_size--;
#endif
}
#ifdef STANDALONE
dump_data(stdout, data, pattern_size);
#ifdef SYNTAX_TEST
fprintf(stdout, "enc: %s, syntax: %s, options: %u, pattern_size: %d\n",
ONIGENC_NAME(enc),
syntax_names[syntax_choice % num_syntaxes],
options,
pattern_size);
#else
fprintf(stdout, "enc: %s, options: %u, pattern_size: %d\n",
ONIGENC_NAME(enc), options, pattern_size);
#endif
#endif
r = alloc_exec(enc, options, syntax, pattern_size, remaining_size, data);
if (r == -2) exit(-2);
#ifndef STANDALONE
if (EXEC_COUNT_INTERVAL == EXEC_PRINT_INTERVAL) {
float fexec, freg, fvalid;
output_current_time(stdout);
if (INPUT_COUNT != 0) { // overflow check
fexec = (float )EXEC_COUNT / INPUT_COUNT;
freg = (float )REGEX_SUCCESS_COUNT / INPUT_COUNT;
fvalid = (float )VALID_STRING_COUNT / INPUT_COUNT;
fprintf(stdout, ": %ld: EXEC:%.2f, REG:%.2f, VALID:%.2f\n",
EXEC_COUNT, fexec, freg, fvalid);
}
else {
fprintf(stdout, ": ignore (input count overflow)\n");
}
EXEC_COUNT_INTERVAL = 0;
}
else if (EXEC_COUNT == 1) {
output_current_time(stdout);
fprintf(stdout, ": ------------ START ------------\n");
}
#endif
return r;
}
#ifdef STANDALONE
extern int main(int argc, char* argv[])
{
size_t n;
uint8_t Data[10000];
n = read(0, Data, sizeof(Data));
fprintf(stdout, "n: %ld\n", n);
LLVMFuzzerTestOneInput(Data, n);
return 0;
}
#endif /* STANDALONE */
|