From f54817dc96f9ede34bce1ec6599b44a510863284 Mon Sep 17 00:00:00 2001 From: Google AutoFuzz Team Date: Tue, 17 Dec 2019 10:19:08 -0500 Subject: [easywsclient] Add easywsclient project (#3126) * add easywsclient project * Update build.sh * modified fuzzer * Indent fixes --- projects/easywsclient/Dockerfile | 22 ++++++++++++++++++++++ projects/easywsclient/build.sh | 22 ++++++++++++++++++++++ projects/easywsclient/easyws_fuzzer.cpp | 26 ++++++++++++++++++++++++++ projects/easywsclient/project.yaml | 9 +++++++++ 4 files changed, 79 insertions(+) create mode 100644 projects/easywsclient/Dockerfile create mode 100755 projects/easywsclient/build.sh create mode 100644 projects/easywsclient/easyws_fuzzer.cpp create mode 100644 projects/easywsclient/project.yaml 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 +#include +#include + +#include "easywsclient.hpp" +#include + +extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { + std::string str(reinterpret_cast(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 -- cgit v1.2.3