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
|
/*
* Copyright (C) NGINX, Inc.
*/
#include <nxt_main.h>
#include <nxt_conf.h>
#define KMININPUTLENGTH 2
#define KMAXINPUTLENGTH 1024
extern int LLVMFuzzerInitialize(int *argc, char ***argv);
extern int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
extern char **environ;
int
LLVMFuzzerInitialize(int *argc, char ***argv)
{
if (nxt_lib_start("fuzzing", NULL, &environ) != NXT_OK) {
return NXT_ERROR;
}
return 0;
}
int
LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
nxt_mp_t *mp;
nxt_str_t input;
nxt_conf_value_t *conf;
nxt_conf_validation_t vldt;
if (size < KMININPUTLENGTH || size > KMAXINPUTLENGTH) {
return 0;
}
mp = nxt_mp_create(1024, 128, 256, 32);
if (mp == NULL) {
return 0;
}
input.start = (u_char *)data;
input.length = size;
conf = nxt_conf_json_parse_str(mp, &input);
if (conf == NULL) {
goto failed;
}
nxt_memzero(&vldt, sizeof(nxt_conf_validation_t));
vldt.pool = nxt_mp_create(1024, 128, 256, 32);
if (vldt.pool == NULL) {
goto failed;
}
vldt.conf = conf;
vldt.conf_pool = mp;
vldt.ver = NXT_VERNUM;
nxt_conf_validate(&vldt);
nxt_mp_destroy(vldt.pool);
failed:
nxt_mp_destroy(mp);
return 0;
}
|