mirror of https://github.com/google/oss-fuzz.git
rustls: initial integration. (#5332)
This commit is contained in:
parent
17bc895ffc
commit
02cee920bc
|
@ -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
|
|
@ -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/
|
|
@ -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<T>(data: &[u8]) where T: Codec {
|
||||||
|
let mut rdr = Reader::init(data);
|
||||||
|
T::read(&mut rdr);
|
||||||
|
}
|
||||||
|
|
||||||
|
fuzz_target!(|data: &[u8]| {
|
||||||
|
try_type::<persist::ServerSessionValue>(data);
|
||||||
|
});
|
|
@ -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"
|
Loading…
Reference in New Issue