Import Upstream version 2.72.4
This commit is contained in:
commit
4ef3ff9793
2003 changed files with 1332420 additions and 0 deletions
44
fuzzing/fuzz_uri_parse.c
Normal file
44
fuzzing/fuzz_uri_parse.c
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
#include "fuzz.h"
|
||||
|
||||
static void
|
||||
test_with_flags (const gchar *data,
|
||||
GUriFlags flags)
|
||||
{
|
||||
GUri *uri = NULL;
|
||||
gchar *uri_string = NULL;
|
||||
|
||||
uri = g_uri_parse (data, flags, NULL);
|
||||
|
||||
if (uri == NULL)
|
||||
return;
|
||||
|
||||
uri_string = g_uri_to_string (uri);
|
||||
g_uri_unref (uri);
|
||||
|
||||
if (uri_string == NULL)
|
||||
return;
|
||||
|
||||
g_free (uri_string);
|
||||
}
|
||||
|
||||
int
|
||||
LLVMFuzzerTestOneInput (const unsigned char *data, size_t size)
|
||||
{
|
||||
unsigned char *nul_terminated_data = NULL;
|
||||
|
||||
fuzz_set_logging_func ();
|
||||
|
||||
/* ignore @size (g_uri_parse() doesn’t support it); ensure @data is nul-terminated */
|
||||
nul_terminated_data = (unsigned char *) g_strndup ((const gchar *) data, size);
|
||||
test_with_flags ((const gchar *) nul_terminated_data, G_URI_FLAGS_NONE);
|
||||
test_with_flags ((const gchar *) nul_terminated_data, G_URI_FLAGS_PARSE_RELAXED);
|
||||
test_with_flags ((const gchar *) nul_terminated_data, G_URI_FLAGS_NON_DNS);
|
||||
test_with_flags ((const gchar *) nul_terminated_data, G_URI_FLAGS_HAS_AUTH_PARAMS);
|
||||
test_with_flags ((const gchar *) nul_terminated_data, G_URI_FLAGS_HAS_PASSWORD);
|
||||
test_with_flags ((const gchar *) nul_terminated_data, G_URI_FLAGS_ENCODED_QUERY);
|
||||
test_with_flags ((const gchar *) nul_terminated_data, G_URI_FLAGS_ENCODED_PATH);
|
||||
test_with_flags ((const gchar *) nul_terminated_data, G_URI_FLAGS_SCHEME_NORMALIZE);
|
||||
g_free (nul_terminated_data);
|
||||
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue