summaryrefslogtreecommitdiff
path: root/lib/fuzzing/fuzzing.c
diff options
context:
space:
mode:
authorMichael Hanselmann <public@hansmi.ch>2019-04-04 00:23:07 +0200
committerAndrew Bartlett <abartlet@samba.org>2019-08-07 06:07:28 +0000
commitdd5f8732d8b2ac6cd86e5d7dc8a9498d2b951a43 (patch)
tree543610a4c04c3a6be9094e1ea3573cee7f52284d /lib/fuzzing/fuzzing.c
parentaab17124785b6e4c004368b69bee28fb6cad55c3 (diff)
downloadsamba-dd5f8732d8b2ac6cd86e5d7dc8a9498d2b951a43.tar.gz
Add fuzzing support to build system
LibFuzzer, Honggfuzz and other programs implement simple interfaces for fuzzing appropriately prepared code. Samba contains quite a lot of parsing code, often a good target for fuzzing. With this change the build system is amended to support building fuzzing binaries (added in later changes). Signed-off-by: Michael Hanselmann <public@hansmi.ch> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Diffstat (limited to 'lib/fuzzing/fuzzing.c')
-rw-r--r--lib/fuzzing/fuzzing.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/fuzzing/fuzzing.c b/lib/fuzzing/fuzzing.c
new file mode 100644
index 00000000000..f0d7fb4f46b
--- /dev/null
+++ b/lib/fuzzing/fuzzing.c
@@ -0,0 +1,21 @@
+/*
+ Unix SMB/CIFS implementation.
+ Fuzzing utility functions
+ Copyright (C) Michael Hanselmann 2019
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "includes.h"
+#include "fuzzing/fuzzing.h"