summaryrefslogtreecommitdiff
path: root/contributed
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2019-11-29 11:26:57 +0100
committerJörg Frings-Fürst <debian@jff.email>2019-11-29 11:26:57 +0100
commit7f4e90f2759d6a15812172ee19f3ad5b58940beb (patch)
tree5f90c63b8ba73f4ecd23d6e642c1ab34dccea033 /contributed
parent68d1ec60c90d27c511d51ce0bef44b132a7ddf11 (diff)
parent7e149a97d276ce3b4c5e34f965766c8e40e03fef (diff)
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'contributed')
-rw-r--r--contributed/libfuzzer-onig.cpp45
-rw-r--r--contributed/makefile21
2 files changed, 0 insertions, 66 deletions
diff --git a/contributed/libfuzzer-onig.cpp b/contributed/libfuzzer-onig.cpp
deleted file mode 100644
index 526c826..0000000
--- a/contributed/libfuzzer-onig.cpp
+++ /dev/null
@@ -1,45 +0,0 @@
-/* libfuzzer test code for oniguruma
- * author: Hanno Böck, license: CC0/public domain
-
-Usage:
-* compile oniguruma with something like
- ./configure CC=clang LD=clang CFLAGS="-fsanitize-coverage=edge -fsanitize=address" \
- LDFLAGS="-fsanitize-coverage=edge -fsanitize=address"
-* Compile libfuzzer stub and link against static libonig.a and libFuzzer.a:
- clang++ libfuzzer-onig.cpp src/.libs/libonig.a libFuzzer.a -o libfuzzer-onig \
- -fsanitize-coverage=edge -fsanitize=address
-* Put sample patterns in directory "in/"
-* Run
- ./libfuzzer-onig in
-
-Consult libfuzzer docs for further details and how to create libFuzzer.a:
-http://llvm.org/docs/LibFuzzer.html
-
- */
-#include <stdint.h>
-#include <string.h>
-#include <oniguruma.h>
-
-extern "C" int LLVMFuzzerTestOneInput(const uint8_t * Data, size_t Size)
-{
- regex_t *reg;
- OnigEncoding enc;
-
- enc = ONIG_ENCODING_UTF8;
-
-#ifdef FULL_TEST
- onig_initialize(&enc, 1);
- onig_set_retry_limit_in_match(120);
- onig_set_parse_depth_limit(120);
-#endif
-
- if (onig_new(&reg, Data, Data + Size, ONIG_OPTION_DEFAULT, enc,
- ONIG_SYNTAX_DEFAULT, 0) == 0)
- onig_free(reg);
-
-#ifdef FULL_TEST
- onig_end();
-#endif
-
- return 0;
-}
diff --git a/contributed/makefile b/contributed/makefile
deleted file mode 100644
index f44a3c0..0000000
--- a/contributed/makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-ONIG_LIB=../src/.libs/libonig.a
-LIBS=$(ONIG_LIB) /usr/local/lib/libLLVMFuzzerMain.a
-
-TARGETS=libfuzzer-onig libfuzzer-onig-full
-
-default: $(TARGETS)
-
-libfuzzer-onig: libfuzzer-onig.cpp $(ONIG_LIB)
- clang++ $< $(LIBS) -o $@ -fsanitize-coverage=trace-pc-guard -fsanitize=fuzzer,address
-
-libfuzzer-onig-full: libfuzzer-onig.cpp $(ONIG_LIB)
- clang++ -DFULL_TEST $< $(LIBS) -o $@ -fsanitize-coverage=trace-pc-guard -fsanitize=fuzzer,address
-
-
-$(ONIG_LIB):
- cd ..; ./configure CC=clang LD=clang CFLAGS="-g -fsanitize=fuzzer,address" LDFLAGS="-fsanitize-coverage=trace-pc-guard -fsanitize=fuzzer,address"; make
-
-
-
-clean:
- rm -f $(TARGETS)