diff options
Diffstat (limited to 'src/c-ares/test/ares-test-fuzz-name.c')
-rw-r--r-- | src/c-ares/test/ares-test-fuzz-name.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/c-ares/test/ares-test-fuzz-name.c b/src/c-ares/test/ares-test-fuzz-name.c new file mode 100644 index 000000000..378da3739 --- /dev/null +++ b/src/c-ares/test/ares-test-fuzz-name.c @@ -0,0 +1,23 @@ +#include <stddef.h> +#include <stdlib.h> +#include <string.h> + +#include "ares.h" +// Include ares internal file for DNS protocol constants +#include "nameser.h" + +// Entrypoint for Clang's libfuzzer, exercising query creation. +int LLVMFuzzerTestOneInput(const unsigned char *data, + unsigned long size) { + // Null terminate the data. + char *name = malloc(size + 1); + name[size] = '\0'; + memcpy(name, data, size); + + unsigned char *buf = NULL; + int buflen = 0; + ares_create_query(name, ns_c_in, ns_t_aaaa, 1234, 0, &buf, &buflen, 1024); + free(buf); + free(name); + return 0; +} |