fuzzing: Add fuzz tests for functions which parse paths

Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
This commit is contained in:
Philip Withnall
2021-03-24 11:16:49 +00:00
parent 083e450d5f
commit 1140c228ab
3 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#include "fuzz.h"
int
LLVMFuzzerTestOneInput (const unsigned char *data, size_t size)
{
unsigned char *nul_terminated_data = NULL;
gchar *canonicalized = NULL;
fuzz_set_logging_func ();
/* ignore @size (g_canonicalize_filename() doesnt support it); ensure @data is nul-terminated */
nul_terminated_data = (unsigned char *) g_strndup ((const gchar *) data, size);
canonicalized = g_canonicalize_filename ((const gchar *) nul_terminated_data, "/");
g_free (nul_terminated_data);
g_free (canonicalized);
return 0;
}