| # Copyright 2020 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 |
| # |
| # https://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. |
| |
| command_line="$(readlink -f ${HONGGFUZZ_PATH})" |
| command_line+=("--workspace=${FUZZER_OUTPUT_ROOT}") |
| |
| if [[ -n "${FUZZER_SEED_CORPUS_DIR}" ]]; then |
| command_line+=("--input=${FUZZER_SEED_CORPUS_DIR}") |
| command_line+=("--output=${FUZZER_OUTPUT_CORPUS_DIR}") |
| else |
| command_line+=("--input=${FUZZER_OUTPUT_CORPUS_DIR}") |
| fi |
| if (( FUZZER_IS_REGRESSION )); then |
| # There is no regression mode in Honggfuzz, use minimization to a |
| # temporary output as the closest proxy. |
| command_line+=("--minimize") |
| command_line+=("--verbose") |
| fi |
| |
| command_line+=("--crashdir=${FUZZER_ARTIFACTS_DIR}") |
| |
| if [[ "${FUZZER_TIMEOUT_SECS}" -gt 0 ]]; then |
| command_line+=("--run_time=${FUZZER_TIMEOUT_SECS}") |
| fi |
| |
| if [[ -n "${FUZZER_DICTIONARY_PATH}" ]]; then |
| command_line+=("--dict=${FUZZER_DICTIONARY_PATH}") |
| fi |
| command_line+=("--" "${FUZZER_BINARY}") |
| |
| exec "${command_line[@]}" |