aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar DavidKorczynski <david@adalogics.com>2020-12-08 05:52:23 +0000
committerGravatar GitHub <noreply@github.com>2020-12-07 21:52:23 -0800
commite1cf2b5f9bffc80fc4eed352237ababed3cbcbda (patch)
tree7aca2f13d6441aff4df8c4d80b8488ee80b03a1c
parent32ef0b191cd1624c91cc005c8e0855de625df326 (diff)
[mongoose][draft: waiting for upstream] initial integration (#4648)
* mongoose: initial integration of fuzzer * mongoose: fix to recent updates in upstream.; * mongoose: fix build errors.
-rw-r--r--projects/mongoose/Dockerfile21
-rwxr-xr-xprojects/mongoose/build.sh20
-rw-r--r--projects/mongoose/project.yaml5
3 files changed, 46 insertions, 0 deletions
diff --git a/projects/mongoose/Dockerfile b/projects/mongoose/Dockerfile
new file mode 100644
index 00000000..15f4a4f9
--- /dev/null
+++ b/projects/mongoose/Dockerfile
@@ -0,0 +1,21 @@
+# Copyright 2020 Google LLC
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+################################################################################
+
+FROM gcr.io/oss-fuzz-base/base-builder
+RUN apt-get update
+RUN git clone https://github.com/cesanta/mongoose
+WORKDIR $SRC
+COPY build.sh $SRC/
diff --git a/projects/mongoose/build.sh b/projects/mongoose/build.sh
new file mode 100755
index 00000000..56e5a19c
--- /dev/null
+++ b/projects/mongoose/build.sh
@@ -0,0 +1,20 @@
+#!/bin/bash -eu
+# Copyright 2020 Google LLC
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+cd $SRC/mongoose/test
+$CC $CFLAGS -c fuzz.c -g -I../ -o fuzz.o
+$CC $CFLAGS -c ../mongoose.c -g -I../ -o mongoose.o
+
+$CXX $CXXFLAGS $LIB_FUZZING_ENGINE fuzz.o mongoose.o -o $OUT/fuzz
diff --git a/projects/mongoose/project.yaml b/projects/mongoose/project.yaml
new file mode 100644
index 00000000..e66570b7
--- /dev/null
+++ b/projects/mongoose/project.yaml
@@ -0,0 +1,5 @@
+homepage: "https://github.com/cesanta/mongoose"
+language: c++
+primary_contact: "support@cesanta.com"
+auto_ccs:
+ - "david@adalogics.com"