mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-29 11:21:26 +03:00
09dac45ab9
XIncludes involve XPath processing which can still lead to timeouts when fuzzing. This will probably take a while to fix. The rest of the XML parsing code should hopefully run without timeouts now. OSS-Fuzz only shows a single timeout test case, so separate the XInclude from the core XML fuzzer.
95 lines
1.8 KiB
C
95 lines
1.8 KiB
C
/*
|
|
* fuzz.h: Common functions and macros for fuzzing.
|
|
*
|
|
* See Copyright for the status of this software.
|
|
*/
|
|
|
|
#ifndef __XML_FUZZERCOMMON_H__
|
|
#define __XML_FUZZERCOMMON_H__
|
|
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <libxml/parser.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
|
|
#define HAVE_HTML_FUZZER
|
|
#endif
|
|
#if defined(LIBXML_REGEXP_ENABLED)
|
|
#define HAVE_REGEXP_FUZZER
|
|
#endif
|
|
#if defined(LIBXML_SCHEMAS_ENABLED)
|
|
#define HAVE_SCHEMA_FUZZER
|
|
#endif
|
|
#if 1
|
|
#define HAVE_URI_FUZZER
|
|
#endif
|
|
#if defined(LIBXML_XINCLUDE_ENABLED) && \
|
|
defined(LIBXML_READER_ENABLED)
|
|
#define HAVE_XINCLUDE_FUZZER
|
|
#endif
|
|
#if defined(LIBXML_OUTPUT_ENABLED) && \
|
|
defined(LIBXML_READER_ENABLED)
|
|
#define HAVE_XML_FUZZER
|
|
#endif
|
|
#if defined(LIBXML_XPATH_ENABLED)
|
|
#define HAVE_XPATH_FUZZER
|
|
#endif
|
|
|
|
int
|
|
LLVMFuzzerInitialize(int *argc, char ***argv);
|
|
|
|
int
|
|
LLVMFuzzerTestOneInput(const char *data, size_t size);
|
|
|
|
void
|
|
xmlFuzzErrorFunc(void *ctx ATTRIBUTE_UNUSED, const char *msg ATTRIBUTE_UNUSED,
|
|
...);
|
|
|
|
void
|
|
xmlFuzzDataInit(const char *data, size_t size);
|
|
|
|
void
|
|
xmlFuzzDataCleanup(void);
|
|
|
|
int
|
|
xmlFuzzReadInt(void);
|
|
|
|
const char *
|
|
xmlFuzzReadRemaining(size_t *size);
|
|
|
|
void
|
|
xmlFuzzWriteString(FILE *out, const char *str);
|
|
|
|
const char *
|
|
xmlFuzzReadString(size_t *size);
|
|
|
|
void
|
|
xmlFuzzReadEntities(void);
|
|
|
|
const char *
|
|
xmlFuzzMainUrl(void);
|
|
|
|
const char *
|
|
xmlFuzzMainEntity(size_t *size);
|
|
|
|
xmlParserInputPtr
|
|
xmlFuzzEntityLoader(const char *URL, const char *ID, xmlParserCtxtPtr ctxt);
|
|
|
|
size_t
|
|
xmlFuzzExtractStrings(const char *data, size_t size, char **strings,
|
|
size_t numStrings);
|
|
|
|
char *
|
|
xmlSlurpFile(const char *path, size_t *size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __XML_FUZZERCOMMON_H__ */
|
|
|