diff --git a/projects/surrealdb/Dockerfile b/projects/surrealdb/Dockerfile new file mode 100644 index 000000000000..d36e5f5748bf --- /dev/null +++ b/projects/surrealdb/Dockerfile @@ -0,0 +1,24 @@ +# Copyright 2023 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-rust +RUN git clone --depth 1 https://github.com/surrealdb/surrealdb surrealdb +WORKDIR surrealdb +# TODO(surrealdb/surrealdb#1873): Remove `RUN rustup.*` lines once +# rust-lang/rust#110475 is fixed. +RUN rustup install nightly-2023-04-21 +RUN rustup default nightly-2023-04-21 +COPY build.sh $SRC/ diff --git a/projects/surrealdb/build.sh b/projects/surrealdb/build.sh new file mode 100755 index 000000000000..53a99429be03 --- /dev/null +++ b/projects/surrealdb/build.sh @@ -0,0 +1,25 @@ +#!/bin/bash -eu +# Copyright 2023 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 lib +cargo fuzz build -O --debug-assertions + +FUZZ_TARGET_OUTPUT_DIR=fuzz/target/x86_64-unknown-linux-gnu/release +for f in fuzz/fuzz_targets/*.rs +do + FUZZ_TARGET_NAME=$(basename ${f%.*}) + cp $FUZZ_TARGET_OUTPUT_DIR/$FUZZ_TARGET_NAME $OUT/ +done \ No newline at end of file diff --git a/projects/surrealdb/project.yaml b/projects/surrealdb/project.yaml new file mode 100644 index 000000000000..b6417a14ef9d --- /dev/null +++ b/projects/surrealdb/project.yaml @@ -0,0 +1,11 @@ +homepage: "https://surrealdb.com/" +language: rust +primary_contact: "tobie@surrealdb.com" +main_repo: "https://github.com/surrealdb/surrealdb" +auto_ccs: + - nathaniel.brough@gmail.com + +sanitizers: + - address +fuzzing_engines: + - libfuzzer \ No newline at end of file