Skip to content

Commit

Permalink
rauc: initial integration (#10910)
Browse files Browse the repository at this point in the history
  • Loading branch information
jluebbe authored Sep 12, 2023
1 parent 5f372e6 commit 411d3b2
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 0 deletions.
22 changes: 22 additions & 0 deletions projects/rauc/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# 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
RUN apt-get update && apt-get install -y python3-pip
RUN unset CFLAGS CXXFLAGS && pip3 install -U meson ninja
RUN git clone --depth 1 https://github.com/rauc/rauc.git rauc
WORKDIR rauc
COPY build.sh $SRC/
48 changes: 48 additions & 0 deletions projects/rauc/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
#!/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.
#
################################################################################

BUILD=$WORK/build

rm -rf $BUILD

# build project

meson setup $BUILD \
-Ddefault_library=static \
-Db_lundef=false \
-Dfuzzing=true \
-Dglib:libmount=disabled \
-Dglib:selinux=disabled \
-Dgpt=disabled \
-Djson=disabled \
-Dnetwork=false \
-Dservice=false \
-Dstreaming=false \
--wrap-mode=forcefallback

ninja -C $BUILD

# collect fuzzers and data

find $BUILD/fuzz -maxdepth 1 -executable -type f -exec cp "{}" $OUT \;

find fuzz -type f -name "*.dict" -exec cp "{}" $OUT \;

for CORPUS in $(find fuzz -type f -name "*.corpus"); do
BASENAME=${CORPUS##*/}
zip $OUT/${BASENAME%%.*}_seed_corpus.zip . -ws -r -i@$CORPUS
done
7 changes: 7 additions & 0 deletions projects/rauc/project.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
homepage: "https://rauc.io/"
language: c
primary_contact: "jlu@pengutronix.de"
auto_ccs:
- jluebbe@lasnet.de
- ejoerns89@gmail.com
main_repo: "https://github.com/rauc/rauc.git"

0 comments on commit 411d3b2

Please sign in to comment.