summaryrefslogtreecommitdiff
path: root/contributed/libfuzzer-onig.cpp
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2019-11-29 11:26:35 +0100
committerJörg Frings-Fürst <debian@jff.email>2019-11-29 11:26:35 +0100
commit4216de6a3336cbc6dddb572cb7e6ab6193bf3729 (patch)
tree327a40dae71db474527a1281a205cc2ebddb2ce6 /contributed/libfuzzer-onig.cpp
parent40f3d0030e6e98bcb02d6523e5ee48497dec49a6 (diff)
New upstream version 6.9.4upstream/6.9.4
Diffstat (limited to 'contributed/libfuzzer-onig.cpp')
-rw-r--r--contributed/libfuzzer-onig.cpp45
1 files changed, 0 insertions, 45 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;
-}