Skip to content

Commit

Permalink
boost-beast: initial integration
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler92 committed Jun 20, 2024
1 parent 601d8eb commit ca304ff
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 0 deletions.
23 changes: 23 additions & 0 deletions projects/boost-beast/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Copyright 2024 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:v1

RUN git clone --depth 1 --single-branch --branch master https://github.com/boostorg/boost.git
WORKDIR boost
RUN git submodule update --init libs/beast
RUN git -C libs/beast checkout develop
RUN git submodule update --init tools/boostdep
RUN python3 tools/boostdep/depinst/depinst.py --git_args "--jobs 3" beast
COPY build.sh $SRC/
31 changes: 31 additions & 0 deletions projects/boost-beast/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#!/bin/bash -eu
# Copyright 2024 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.

./bootstrap.sh

echo "using clang : ossfuzz : $CXX : <compileflags>\"$CXXFLAGS\" <linkflags>\"$CXXFLAGS\" <linkflags>\"${LIB_FUZZING_ENGINE}\" ;" >user-config.jam

./b2 --user-config=user-config.jam --toolset=clang-ossfuzz --prefix=$WORK/stage --with-headers link=static install

tar -xvf libs/beast/test/fuzz/seeds.tar -C libs/beast/test/fuzz

for i in libs/beast/test/fuzz/*.cpp; do
fuzzer=$(basename $i .cpp)
$CXX $CXXFLAGS -pthread -I $WORK/stage/include libs/beast/test/fuzz/$fuzzer.cpp $LIB_FUZZING_ENGINE -o $OUT/$fuzzer

if [ -d "libs/beast/test/fuzz/seeds/$fuzzer" ]; then
zip -q -r -j $OUT/"$fuzzer"_seed_corpus.zip libs/beast/test/fuzz/seeds/$fuzzer
fi
done
10 changes: 10 additions & 0 deletions projects/boost-beast/project.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
homepage: "https://www.boost.org/"
language: c++
primary_contact: "vinnie.falco@gmail.com"
auto_ccs:
- "ashtumashtum@gmail.com"
main_repo: 'https://github.com/boostorg/beast.git'
fuzzing_engines:
- afl
- honggfuzz
- libfuzzer

0 comments on commit ca304ff

Please sign in to comment.