Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rauc: initial integration #10910

Merged
merged 1 commit into from
Sep 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"