mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-10 01:17:37 +03:00
167 lines
4.1 KiB
Makefile
167 lines
4.1 KiB
Makefile
AUTOMAKE_OPTIONS = -Wno-syntax
|
|
EXTRA_PROGRAMS = html htmlSeed regexp uri schema schemaSeed xml xmlSeed \
|
|
xpath xpathSeed
|
|
check_PROGRAMS = testFuzzer
|
|
CLEANFILES = $(EXTRA_PROGRAMS)
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include
|
|
DEPENDENCIES = $(top_builddir)/libxml2.la
|
|
LDADD = $(STATIC_BINARIES) $(top_builddir)/libxml2.la $(THREAD_LIBS) $(Z_LIBS) $(LZMA_LIBS) $(ICONV_LIBS) $(M_LIBS) $(WIN32_EXTRA_LIBADD)
|
|
|
|
XML_MAX_LEN = 80000
|
|
XML_SEED_CORPUS_SRC = \
|
|
$(top_srcdir)/test/* \
|
|
$(top_srcdir)/test/errors/*.xml \
|
|
$(top_srcdir)/test/errors10/*.xml \
|
|
$(top_srcdir)/test/namespaces/* \
|
|
$(top_srcdir)/test/valid/*.xml \
|
|
$(top_srcdir)/test/VC/* \
|
|
$(top_srcdir)/test/VCM/* \
|
|
$(top_srcdir)/test/XInclude/docs/* \
|
|
$(top_srcdir)/test/xmlid/*
|
|
|
|
testFuzzer_SOURCES = testFuzzer.c fuzz.c
|
|
|
|
.PHONY: tests clean-corpus
|
|
|
|
tests: testFuzzer$(EXEEXT)
|
|
@echo "## Running fuzzer tests"
|
|
@./testFuzzer$(EXEEXT)
|
|
|
|
clean-corpus:
|
|
rm -rf seed/html.stamp seed/html
|
|
rm -rf seed/schema.stamp seed/schema
|
|
rm -rf seed/xml.stamp seed/xml
|
|
rm -rf seed/xpath.stamp seed/xpath
|
|
|
|
# XML fuzzer
|
|
|
|
xmlSeed_SOURCES = xmlSeed.c fuzz.c
|
|
|
|
seed/xml.stamp: xmlSeed$(EXEEXT)
|
|
@mkdir -p seed/xml
|
|
@for i in $(XML_SEED_CORPUS_SRC); do \
|
|
if [ -f $$i ]; then \
|
|
echo Processing seed $$i; \
|
|
base=$$(basename $$i) \
|
|
outfile=$(abs_builddir)/seed/xml/$$base; \
|
|
pushd $$(dirname $$i) >/dev/null; \
|
|
$(abs_builddir)/xmlSeed$(EXEEXT) $$base > $$outfile; \
|
|
popd >/dev/null; \
|
|
if [ "$$(wc -c < $$outfile)" -gt $(XML_MAX_LEN) ]; then \
|
|
rm $$outfile; \
|
|
fi; \
|
|
fi; \
|
|
done
|
|
@touch seed/xml.stamp
|
|
|
|
xml_SOURCES = xml.c fuzz.c
|
|
xml_LDFLAGS = -fsanitize=fuzzer
|
|
|
|
fuzz-xml: xml$(EXEEXT) seed/xml.stamp
|
|
@mkdir -p corpus/xml
|
|
./xml$(EXEEXT) \
|
|
-dict=xml.dict \
|
|
-max_len=$(XML_MAX_LEN) \
|
|
-timeout=20 \
|
|
corpus/xml seed/xml
|
|
|
|
# HTML fuzzer
|
|
|
|
htmlSeed_SOURCES = htmlSeed.c fuzz.c
|
|
|
|
seed/html.stamp: htmlSeed$(EXEEXT)
|
|
@mkdir -p seed/html
|
|
@for i in $(top_srcdir)/test/HTML/*; do \
|
|
if [ -f $$i ]; then \
|
|
echo Processing seed $$i; \
|
|
./htmlSeed$(EXEEXT) $$i > seed/html/$$(basename $$i); \
|
|
fi; \
|
|
done
|
|
@touch seed/html.stamp
|
|
|
|
html_SOURCES = html.c fuzz.c
|
|
html_LDFLAGS = -fsanitize=fuzzer
|
|
|
|
fuzz-html: html$(EXEEXT) seed/html.stamp
|
|
@mkdir -p corpus/html
|
|
./html$(EXEEXT) \
|
|
-dict=html.dict \
|
|
-max_len=1000000 \
|
|
-timeout=20 \
|
|
corpus/html seed/html
|
|
|
|
# Regexp fuzzer
|
|
|
|
regexp_SOURCES = regexp.c fuzz.c
|
|
regexp_LDFLAGS = -fsanitize=fuzzer
|
|
|
|
fuzz-regexp: regexp$(EXEEXT)
|
|
@mkdir -p corpus/regexp
|
|
./regexp$(EXEEXT) \
|
|
-dict=regexp.dict \
|
|
-max_len=200 \
|
|
-timeout=5 \
|
|
corpus/regexp $(srcdir)/seed/regexp
|
|
|
|
# URI fuzzer
|
|
|
|
uri_SOURCES = uri.c fuzz.c
|
|
uri_LDFLAGS = -fsanitize=fuzzer
|
|
|
|
fuzz-uri: uri$(EXEEXT)
|
|
@mkdir -p corpus/uri
|
|
./uri$(EXEEXT) \
|
|
-max_len=10000 \
|
|
-timeout=5 \
|
|
corpus/uri $(srcdir)/seed/uri
|
|
|
|
# XML Schema fuzzer
|
|
|
|
schemaSeed_SOURCES = schemaSeed.c fuzz.c
|
|
|
|
seed/schema.stamp: schemaSeed$(EXEEXT)
|
|
@mkdir -p seed/schema
|
|
@for i in ../test/schemas/*.xsd; do \
|
|
if [ -f $$i ]; then \
|
|
echo Processing seed $$i; \
|
|
base=$$(basename $$i) \
|
|
outfile=$(abs_builddir)/seed/schema/$$base; \
|
|
pushd $$(dirname $$i) >/dev/null; \
|
|
$(abs_builddir)/schemaSeed$(EXEEXT) $$base > $$outfile; \
|
|
popd >/dev/null; \
|
|
fi; \
|
|
done
|
|
@touch seed/schema.stamp
|
|
|
|
schema_SOURCES = schema.c fuzz.c
|
|
schema_LDFLAGS = -fsanitize=fuzzer
|
|
|
|
fuzz-schema: schema$(EXEEXT) seed/schema.stamp
|
|
@mkdir -p corpus/schema
|
|
./schema$(EXEEXT) \
|
|
-dict=schema.dict \
|
|
-max_len=$(XML_MAX_LEN) \
|
|
-timeout=20 \
|
|
corpus/schema seed/schema
|
|
|
|
# XPath fuzzer
|
|
|
|
xpathSeed_SOURCES = xpathSeed.c fuzz.c
|
|
|
|
seed/xpath.stamp: xpathSeed$(EXEEXT)
|
|
@mkdir -p seed/xpath
|
|
@./xpathSeed$(EXEEXT) "$(top_builddir)/test/XPath"
|
|
@touch seed/xpath.stamp
|
|
|
|
xpath_SOURCES = xpath.c fuzz.c
|
|
xpath_LDFLAGS = -fsanitize=fuzzer
|
|
|
|
fuzz-xpath: xpath$(EXEEXT) seed/xpath.stamp
|
|
@mkdir -p corpus/xpath
|
|
./xpath$(EXEEXT) \
|
|
-dict=xpath.dict \
|
|
-max_len=10000 \
|
|
-timeout=20 \
|
|
corpus/xpath seed/xpath
|
|
|