diff --git a/projects/rustls/Dockerfile b/projects/rustls/Dockerfile new file mode 100644 index 000000000..7406a474b --- /dev/null +++ b/projects/rustls/Dockerfile @@ -0,0 +1,25 @@ +# 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 apt-get update && apt-get install -y make autoconf automake libtool curl cmake python llvm-dev libclang-dev clang + +RUN git clone https://github.com/ctz/rustls + +WORKDIR $SRC + +COPY build.sh $SRC/ +COPY persist.rs $SRC/rustls/fuzz/fuzzers/persist.rs diff --git a/projects/rustls/build.sh b/projects/rustls/build.sh new file mode 100755 index 000000000..d00359e98 --- /dev/null +++ b/projects/rustls/build.sh @@ -0,0 +1,25 @@ +#!/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. +# +################################################################################ + +cd $SRC/rustls +cargo fuzz build -O +cp fuzz/target/x86_64-unknown-linux-gnu/release/client $OUT/ +cp fuzz/target/x86_64-unknown-linux-gnu/release/deframer $OUT/ +cp fuzz/target/x86_64-unknown-linux-gnu/release/fragment $OUT/ +cp fuzz/target/x86_64-unknown-linux-gnu/release/hsjoiner $OUT/ +cp fuzz/target/x86_64-unknown-linux-gnu/release/message $OUT/ +cp fuzz/target/x86_64-unknown-linux-gnu/release/server $OUT/ diff --git a/projects/rustls/persist.rs b/projects/rustls/persist.rs new file mode 100644 index 000000000..186cd9af6 --- /dev/null +++ b/projects/rustls/persist.rs @@ -0,0 +1,30 @@ +// 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. +// +//################################################################################ +#![no_main] +#[macro_use] extern crate libfuzzer_sys; +extern crate rustls; + +use rustls::internal::msgs::persist; +use rustls::internal::msgs::codec::{Reader, Codec}; + +fn try_type(data: &[u8]) where T: Codec { + let mut rdr = Reader::init(data); + T::read(&mut rdr); +} + +fuzz_target!(|data: &[u8]| { + try_type::(data); +}); diff --git a/projects/rustls/project.yaml b/projects/rustls/project.yaml new file mode 100644 index 000000000..73e4f27d6 --- /dev/null +++ b/projects/rustls/project.yaml @@ -0,0 +1,10 @@ +homepage: "https://github.com/ctz/rustls" +main_repo: "https://github.com/ctz/rustls" +primary_contact: "jpixton@gmail.com" +sanitizers: + - address +fuzzing_engines: + - libfuzzer +language: rust +auto_ccs: + - "david@adalogics.com"