diff options
author | Arjun <pkillarjun@protonmail.com> | 2024-06-12 10:34:09 +0530 |
---|---|---|
committer | Andrew Clayton <a.clayton@nginx.com> | 2024-06-14 15:11:38 +0100 |
commit | a93d878e5c3a6c3476e77d021ae59dc937e3066c (patch) | |
tree | f836d6883dea1b9ef766da925c0b76f8b8fc015d /fuzzing/nxt_json_fuzz.c | |
parent | 965fc94e4910da14d13a2f10d997cc720b3f6127 (diff) | |
download | unit-a93d878e5c3a6c3476e77d021ae59dc937e3066c.tar.gz unit-a93d878e5c3a6c3476e77d021ae59dc937e3066c.tar.bz2 |
fuzzing: add fuzzing targets
Signed-off-by: Arjun <pkillarjun@protonmail.com>
Reviewed-by: Andrew Clayton <a.clayton@nginx.com>
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to '')
-rw-r--r-- | fuzzing/nxt_json_fuzz.c | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/fuzzing/nxt_json_fuzz.c b/fuzzing/nxt_json_fuzz.c new file mode 100644 index 00000000..532babb1 --- /dev/null +++ b/fuzzing/nxt_json_fuzz.c @@ -0,0 +1,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; +} |