aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Google AutoFuzz Team <security-tps@google.com>2019-12-17 10:19:08 -0500
committerGravatar Abhishek Arya <inferno@chromium.org>2019-12-17 07:19:08 -0800
commitf54817dc96f9ede34bce1ec6599b44a510863284 (patch)
tree002552186316823614156261f60d98de3e322f7a
parentff3f53a128764924d4379f2db0d7e9d7b085e2bb (diff)
[easywsclient] Add easywsclient project (#3126)
* add easywsclient project * Update build.sh * modified fuzzer * Indent fixes
-rw-r--r--projects/easywsclient/Dockerfile22
-rwxr-xr-xprojects/easywsclient/build.sh22
-rw-r--r--projects/easywsclient/easyws_fuzzer.cpp26
-rw-r--r--projects/easywsclient/project.yaml9
4 files changed, 79 insertions, 0 deletions
diff --git a/projects/easywsclient/Dockerfile b/projects/easywsclient/Dockerfile
new file mode 100644
index 00000000..44678f08
--- /dev/null
+++ b/projects/easywsclient/Dockerfile
@@ -0,0 +1,22 @@
+# Copyright 2019 Google Inc.
+#
+# 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
+MAINTAINER dhbaird@gmail.com
+RUN apt-get update && apt-get install -y make autoconf automake libtool
+RUN git clone --depth 1 https://github.com/dhbaird/easywsclient easywsclient
+WORKDIR easywsclient
+COPY build.sh *.cpp $SRC/
diff --git a/projects/easywsclient/build.sh b/projects/easywsclient/build.sh
new file mode 100755
index 00000000..5fa3704c
--- /dev/null
+++ b/projects/easywsclient/build.sh
@@ -0,0 +1,22 @@
+#!/bin/bash -eu
+# Copyright 2019 Google Inc.
+#
+# 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.
+#
+################################################################################
+
+for f in $(find $SRC -name '*_fuzzer.cpp'); do
+ b=$(basename -s .cpp $f)
+ $CXX $CXXFLAGS -std=c++11 -g easywsclient.cpp -I. \
+ $f -o $OUT/$b $LIB_FUZZING_ENGINE
+done
diff --git a/projects/easywsclient/easyws_fuzzer.cpp b/projects/easywsclient/easyws_fuzzer.cpp
new file mode 100644
index 00000000..87208790
--- /dev/null
+++ b/projects/easywsclient/easyws_fuzzer.cpp
@@ -0,0 +1,26 @@
+// Copyright 2019 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.
+
+#include <stddef.h>
+#include <stdint.h>
+#include <string.h>
+
+#include "easywsclient.hpp"
+#include <fuzzer/FuzzedDataProvider.h>
+
+extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
+ std::string str(reinterpret_cast<const char*>(data), size);
+ easywsclient::WebSocket::from_url(str);
+ return 0;
+}
diff --git a/projects/easywsclient/project.yaml b/projects/easywsclient/project.yaml
new file mode 100644
index 00000000..1bab7b7b
--- /dev/null
+++ b/projects/easywsclient/project.yaml
@@ -0,0 +1,9 @@
+homepage: "https://github.com/dhbaird/easywsclient"
+primary_contact: "dhbaird@gmail.com"
+sanitizers:
+ - address
+ - memory
+ - undefined
+architectures:
+ - x86_64
+ - i386