oss-fuzz/infra/base-images/base-builder-ruby/ruzzy-build

29 lines
898 B
Plaintext
Raw Permalink Normal View History

Adding Ruby Support into OSS-Fuzz via Ruzzy (#12034) This is a follow-up to the discussions held during our Monthly Fuzzing Collaboration meetings and directly relates to issue #11967. This Pull Request integrates Ruzzy support for Ruby fuzzing into OSS-Fuzz. Ruzzy is a coverage-guided fuzzer for pure Ruby code and Ruby C extensions, developed by Matt (@mschwager) at Trail of Bits. More information on Ruzzy can be found in the blog post titled "[Introducing Ruzzy, a coverage-guided Ruby fuzzer](https://blog.trailofbits.com/2024/03/29/introducing-ruzzy-a-coverage-guided-ruby-fuzzer/)". The first commit of this PR integrates Ruby support into the OSS-Fuzz project via Ruzzy, while the second one includes the Ox project as an example of its usage. The first commit introduces changes in the infra directory, most notably by adding the base-builder-ruby docker and the ruby install script. Two scripts, ruzzy-build and ruzzy, have been added to base-builder-ruby and base-runner respectively. The former creates scripts that start harnesses with the latter one, and the latter is simply a wrapper for ruby with LD_PRELOAD. In order to prevent the duplication of many gigabytes of data, we use separate installation directories for RubyGem. Technically, Ruzzy can be installed in the default directory without any performance disadvantage, but having a separate directory may facilitate troubleshooting. This implementation was arrived at through testing a few ideas. If you have suggestions for further improvements, please let me know. I am currently addressing my concerns in the related issue. Using the provided scripts isn't necessary but it does simplify the process. Installation directories are set using environment variables in the Dockerfiles, making it transparent for users. The second commit simply adds a project to illustrate how straightforward the integration process is. You can test it using the standard helper commands. Fixes: #11967 Co-authored-by: mschwager <matt.schwager@trailofbits.com> --------- Co-authored-by: mschwager <matt.schwager@trailofbits.com>
2024-07-02 12:33:01 +00:00
#!/usr/bin/env bash -e
# 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.
#
################################################################################
fuzz_target=$(basename "$1")
echo "BASENAME: $fuzz_target ---"
harness_sh=${fuzz_target::-3}
cp $1 $OUT/$fuzz_target
echo """#!/usr/bin/env bash
ruzzy $fuzz_target
""" > $OUT/$harness_sh
chmod +x $OUT/$harness_sh