forked from parallaxsecond/parsec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fuzz.sh
executable file
·63 lines (56 loc) · 2.54 KB
/
fuzz.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env bash
# ------------------------------------------------------------------------------
# Copyright (c) 2020, Arm Limited, All Rights Reserved
# SPDX-License-Identifier: Apache-2.0
#
# 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_CONTAINER_NAME=parsec_fuzzer
CLEANUP_CONTAINER_NAME=parsec_fuzzer_cleanup
set -e
if [[ "$1" == "run" ]]
then
# Set up fuzz folder
docker run --rm -v $(pwd):/parsec -w /parsec/fuzz --name $CLEANUP_CONTAINER_NAME parsec/fuzz ./cleanup.sh
# A copy of the config file is used because the file is modified during the run
cp fuzz/config.toml fuzz/run_config.toml
# Build Docker image
docker build fuzz/docker -t parsec/fuzz
# Stop previous container and run fuzzer
docker kill $FUZZ_CONTAINER_NAME || true
sleep 5s
docker run -d --rm -v $(pwd):/parsec -w /parsec/fuzz --name $FUZZ_CONTAINER_NAME parsec/fuzz ./run_fuzz.sh
elif [[ "$1" == "stop" ]]
then
docker kill $FUZZ_CONTAINER_NAME
elif [[ "$1" == "follow" ]]
then
docker logs -f --tail 100 $FUZZ_CONTAINER_NAME
elif [[ "$1" == "clean" ]]
then
# Cleanup is done via Docker because on some systems ACL settings prevent the user who
# created a container from removing the files created by said container. Another one
# is needed to do the cleanup.
docker run -d --rm -v $(pwd):/parsec -w /parsec/fuzz --name $CLEANUP_CONTAINER_NAME parsec/fuzz ./cleanup.sh
elif [[ "$1" == "erase" ]]
then
docker run -d --rm -v $(pwd):/parsec -w /parsec/fuzz -e "ERASE=true" --name $CLEANUP_CONTAINER_NAME parsec/fuzz ./cleanup.sh
else
echo "usage: ./fuzz.sh [COMMAND]
Commands:
'run' - builds the fuzzing container and runs the fuzzer
'stop' - stops the fuzzing container
'follow' - prints and follows the log output of the fuzzing container
'clean' - clean up the fuzzing environment (does not remove artifacts or the fuzz corpus)
'erase' - fully clean the fuzzing environment - WARNING: this will remove all the results of previous runs"
fi