From 8a9bb709051ace50f7babc94019448db5d3eb4a2 Mon Sep 17 00:00:00 2001 From: DavidKorczynski Date: Sat, 13 Mar 2021 04:40:50 +0000 Subject: [PATCH] spotify-json: initial integration. (#5014) * spotify json: initial integration. * Updated the spotify-json library to reflect upstream fuzzer merge. --- projects/spotify-json/Dockerfile | 21 +++++++++++++++++++++ projects/spotify-json/build.sh | 24 ++++++++++++++++++++++++ projects/spotify-json/project.yaml | 6 ++++++ 3 files changed, 51 insertions(+) create mode 100755 projects/spotify-json/Dockerfile create mode 100755 projects/spotify-json/build.sh create mode 100755 projects/spotify-json/project.yaml diff --git a/projects/spotify-json/Dockerfile b/projects/spotify-json/Dockerfile new file mode 100755 index 000000000..b39e5f998 --- /dev/null +++ b/projects/spotify-json/Dockerfile @@ -0,0 +1,21 @@ +# Copyright 2021 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 git clone https://github.com/spotify/spotify-json + +WORKDIR $SRC/spotify-json +COPY build.sh $SRC/ diff --git a/projects/spotify-json/build.sh b/projects/spotify-json/build.sh new file mode 100755 index 000000000..9d1506168 --- /dev/null +++ b/projects/spotify-json/build.sh @@ -0,0 +1,24 @@ +#!/bin/bash -eu +# Copyright 2021 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. +# +################################################################################ + +mkdir build && cd build +cmake -DSPOTIFY_JSON_BUILD_TESTS=OFF ../ +make + +$CXX $CXXFLAGS $LIB_FUZZING_ENGINE ../fuzzers//fuzz_decode.cpp \ + -I../include -I../vendor/double-conversion \ + ./libspotify-json.a ./vendor/double-conversion/libdouble-conversion.a -lpthread -o $OUT/fuzz_decode diff --git a/projects/spotify-json/project.yaml b/projects/spotify-json/project.yaml new file mode 100755 index 000000000..134dd78bf --- /dev/null +++ b/projects/spotify-json/project.yaml @@ -0,0 +1,6 @@ +homepage: "https://github.com/spotify/spotify-json" +main_repo: 'https://github.com/spotify/spotify-json' +primary_contact: "johanl@spotify.com" +language: c++ +auto_ccs: + - "david@adalogics.com"