-
Notifications
You must be signed in to change notification settings - Fork 48
/
ash-multi
executable file
·656 lines (582 loc) · 24.1 KB
/
ash-multi
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
#!/bin/bash
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
# ---------------------------------------------------------------------
# Define functions used in the script
# ---------------------------------------------------------------------
#
# Version check
#
# Based on the version type, (internal or external),
# attempt to use git ls-remote to obtain the latest tag (version)
# from the appropriate Git repository. If found, check
# it against the script version. If different, suggest the
# user update to the version in the Git repository
# which presumes that the Git repository has a version higher
# than the current script version.
#
version_check() {
_ASHTYPE="${VERSION%-*}" # remove the date portion
_ASHTYPE="${_ASHTYPE#*-}" # remove the version number portion
_GITREPO="https://github.com/awslabs/automated-security-helper.git"
#
# list the tag values and sort based on "version sort"
# take the "latest/highest" version
#
_REPO_VERSION=$(git ls-remote --tags "${_GITREPO}" 2>/dev/null \
| cut -f2 | cut -f3 -d"/" \
| sed -E "s/\^\{\}//" \
| grep -v "version1.0"| sort -Vr \
| head -1 )
#
# use VERSION as the script version
#
_SCRIPT_VERSION="${VERSION}"
if [ -n "${_REPO_VERSION}" ]; then # found a version
if [ "${_REPO_VERSION}" != "${_SCRIPT_VERSION}" ]; then
echo -e "${YELLOW}ASH version ${_SCRIPT_VERSION} is different from the latest tagged version in the repository: ${_REPO_VERSION} -- consider upgrading!${NC}"
echo -e "${YELLOW}View changes: https://github.com/awslabs/automated-security-helper/compare/${_REPO_VERSION}...${_SCRIPT_VERSION}${NC}"
else
# the ":" below allows the else/fi clause to remain, even if there is no operation listed
: # echo "repo version is ${_REPO_VERSION}, current version is ${_SCRIPT_VERSION}"
fi
fi
}
print_usage() {
echo "NAME:"
echo -e "\t$(basename $0)"
echo "SYNOPSIS:"
echo -e "\t$(basename $0) [OPTIONS] --source-dir /path/to/dir --output-dir /path/to/dir"
echo "OPTIONS:"
echo -e "\t-v | --version Prints version number.\n"
echo -e "\t-p | --preserve-report Add timestamp to the final report file to avoid overwriting it after multiple executions."
echo -e "\t--source-dir Path to the directory containing the code/files you wish to scan. Defaults to \$(pwd)"
echo -e "\t--output-dir Path to the directory that will contain the report of the scans. Defaults to \$(pwd)"
echo -e "\t--format Output format of the aggregated_results file segments. Defaults to text. Use json instead to enable parseable output."
echo -e "\t--ext | -extension Force a file extension to scan. Defaults to identify files automatically."
echo -e "\t--offline Build ASH for offline execution. Defaults to false."
echo -e "\t--offline-semgrep-rulesets Specify Semgrep rulesets for use in ASH offline mode. Defaults to 'p/ci'."
echo -e "\t--force Rebuild the Docker images of the scanning tools, to make sure software is up-to-date."
echo -e "\t--no-cleanup Don't cleanup the work directory where temp reports are stored during scans."
echo -e "\t--debug Print ASH debug log information where applicable."
echo -e "\t-q | --quiet Don't print verbose text about the build process."
echo -e "\t-c | --no-color Don't print colorized output."
echo -e "\t-s | --single-process Run ash scanners serially rather than as separate, parallel sub-processes."
echo -e "\t-o | --oci-runner Use the specified OCI runner instead of docker to run the containerized tools.\n"
echo -e "For more information please visit https://github.com/awslabs/automated-security-helper"
}
# Find all files in the source directory. Method to list the files will be different if the source is a git repository or not
get_all_files() {
# This should be
# git config --global --add safe.directory "${_ASH_SOURCE_DIR}" >/dev/null 2>&1
src_files=()
pushd . >/dev/null 2>&1
# cd to the source directory as a starting point
cd "${_ASH_SOURCE_DIR}"
src_files=$(python "${_ASH_UTILS_LOCATION}/get-scan-set.py" --source $(pwd) --output "${_ASH_OUTPUT_DIR}" ${ASH_SCANSET_ARGS})
popd >/dev/null 2>&1
all_files+=( "$src_files" )
}
# shellcheck disable=SC2120
# Find all possible extensions in the $_ASH_SOURCE_DIR directory
map_extensions_and_files() {
# $_ASH_SOURCE_DIR comes from user input
# Check the source folder and create a clone of the repository if ASH is running on single container mode
if [[ "$_ASH_EXEC_MODE" = "local" ]]; then
pushd . >/dev/null 2>&1
cd "${_ASH_SOURCE_DIR}"
# On local mode, this configuration will only affect the current container
git config --global --add safe.directory "${_ASH_SOURCE_DIR}" >/dev/null 2>&1
git config --global --add safe.directory "${_ASH_RUN_DIR}" >/dev/null 2>&1
if [[ "$(git rev-parse --is-inside-work-tree 2>/dev/null)" == "true" ]]; then
git clone "${_ASH_SOURCE_DIR}" "${_ASH_RUN_DIR}"
echo "Repository cloned successfully."
_ASH_SOURCE_DIR="${_ASH_RUN_DIR}"
else
echo "No git repository found in source folder."
fi;
popd >/dev/null 2>&1
fi
all_files=()
# Retreive all files in the source directory. Files will be populated in the all_files array
get_all_files
# Since we're attempting to keep _ASH_SOURCE_DIR clean for new files to support read-only
# mounting, include the OUTPUT_DIR as well.
work_files="${all_files}\n$(find "${OUTPUT_DIR}/work" \( -path '*/node_modules*' -prune -o -path '*/cdk.out*' -prune -o -path '*/.venv*' -prune -o -path '*/venv*' -prune \) -o -type f -name '*')"
all_files+=( "$work_files" )
extensions_found=()
files_found=()
for file in $all_files; do
file=$(echo "$file" | tr '[:upper:]' '[:lower:]') # lower case all the names
extension="${file##*.}" # extract the extensions out of each file name.
filename="${file##*/}" # extract the base filename plus extension
# add only new extensions, skipping already-found ones.
if [[ ! "${extensions_found[*]}" =~ ${extension} ]]; then
extensions_found+=("$extension")
fi
# add only new files, skipping already-found ones.
if [[ ! "${files_found[*]}" =~ ${filename} ]]; then
files_found+=("$filename")
fi
done
}
# Try to locate specific extension type (ie yaml, py) from all the extensions found in $SOURCE_DIR
search_extension() {
items_to_search=("$@") # passed as parameter to the function
local item_found=0
for item in "${items_to_search[@]}"; do
if [[ "${extensions_found[*]}" =~ ${item} ]]; then
local item_found=1
echo "$item_found"
break
fi
done
}
# Validate the input and set default values
# shellcheck disable=SC2120
validate_input() {
if [[ ${OFFLINE} != "${OFFLINE_AT_BUILD_TIME}" ]]; then
echo -e "${RED}Please ensure --offline is specified at build time to be able to run in offline mode.${NC}"
exit 1
fi
if [[ -z ${PRESERVE_FILE} ]]; then AGGREGATED_RESULTS_REPORT_FILENAME="aggregated_results.txt"; else AGGREGATED_RESULTS_REPORT_FILENAME="aggregated_results-$(date +%s).txt"; fi
if [[ -z ${FORCE_REBUILD} ]]; then FORCE_REBUILD="false"; fi
if [[ -z ${SOURCE_DIR} ]]; then SOURCE_DIR="$(pwd)"; else SOURCE_DIR=$(cd "${SOURCE_DIR}"; pwd); fi # Transform any relative path to absolute
if [[ -z ${OUTPUT_DIR} ]]; then
OUTPUT_DIR="${SOURCE_DIR}/ash_output"
mkdir -p ${OUTPUT_DIR}
fi
if [ -d "${OUTPUT_DIR}/work" ]; then
rm -rf "${OUTPUT_DIR}/work"
fi
mkdir -p "${OUTPUT_DIR}/work"
OUTPUT_DIR=$(cd "${OUTPUT_DIR}"; pwd) # Transform any relative path to absolute
CFNRULES_LOCATION=$(cd "${CFNRULES_LOCATION}"; pwd) # Transform any relative path to absolute
UTILS_LOCATION=$(cd "${UTILS_LOCATION}"; pwd) # Transform any relative path to absolute
}
# Execute the main scan logic for specific framework
# The first argument passed to this method is the dockerfile that executes the actual scan
# The remaining arguments (can be treated as *args in python) are the extensions we wish to scan for
run_security_check() {
local DOCKERFILE_TO_EXECUTE="$1"
local ITEMS_TO_SCAN=("${@:2}") # take all the array of commands which are the extensions to scan (slice 2nd to end)
local RUNTIME_CONTAINER_NAME="scan-$RANDOM"
local _RETURN_CODE=0
# First lets verify this extension even exists in the $SOURCE_DIR directory
echo -e "${LPURPLE}Items to scan for in ${GREEN}${DOCKERFILE_TO_EXECUTE}${LPURPLE} are: [ ${RED}""${ITEMS_TO_SCAN[*]}""${LPURPLE} ]${NC}"
#echo "${EXTENSIONS_USED[@]}" $(search_extension "${ITEMS_TO_SCAN[@]}")
if [[ " ${ITEMS_TO_SCAN[*]} " =~ " ${FORCED_EXT} " ]] || [[ $(search_extension "${ITEMS_TO_SCAN[@]}") == "1" ]]; then
set +e # the scan will fail the command if it finds any finding. we don't want it to stop our script execution
# If ASH is running in local execution mode (e.g. in a container already), call the
# scripts directly instead of building and running the OCI containers.
if [[ "$_ASH_EXEC_MODE" = "local" ]]; then
if [ ${DOCKERFILE_TO_EXECUTE} == 'Dockerfile-git' ]; then
SCANNER_SCRIPT="git-docker-execute.sh"
elif [ ${DOCKERFILE_TO_EXECUTE} == 'Dockerfile-py' ]; then
SCANNER_SCRIPT="py-docker-execute.sh"
elif [ ${DOCKERFILE_TO_EXECUTE} == 'Dockerfile-yaml' ]; then
SCANNER_SCRIPT="yaml-docker-execute.sh"
elif [ ${DOCKERFILE_TO_EXECUTE} == 'Dockerfile-js' ]; then
SCANNER_SCRIPT="js-docker-execute.sh"
elif [ ${DOCKERFILE_TO_EXECUTE} == 'Dockerfile-grype' ]; then
SCANNER_SCRIPT="grype-docker-execute.sh"
elif [ ${DOCKERFILE_TO_EXECUTE} == 'Dockerfile-cdk' ]; then
SCANNER_SCRIPT="cdk-docker-execute.sh"
fi
FULL_SCANNER_SCRIPT_PATH="${UTILS_LOCATION}/${SCANNER_SCRIPT}"
echo -e "${LPURPLE}Found ${CYAN}one or more${LPURPLE} of: [ ${RED}""${ITEMS_TO_SCAN[*]}""${LPURPLE} ] items in source dir,${NC} ${CYAN}running${GREEN} ${SCANNER_SCRIPT} ...${NC}"
cd ${SOURCE_DIR}
# Invoke the resolved scanner script
bash -C ${FULL_SCANNER_SCRIPT_PATH}
else
echo -e "${LPURPLE}Found ${CYAN}one or more${LPURPLE} of: [ ${RED}""${ITEMS_TO_SCAN[*]}""${LPURPLE} ] items in source dir,${NC} ${CYAN}running${GREEN} ${DOCKERFILE_TO_EXECUTE} ...${NC}"
${OCI_RUNNER} build -t "${RUNTIME_CONTAINER_NAME}" -f "${DOCKERFILE_LOCATION}"/"${DOCKERFILE_TO_EXECUTE}" ${DOCKER_EXTRA_ARGS} "${SOURCE_DIR}" > /dev/null
set +e # the scan will fail the command if it finds any finding. we don't want it to stop our script execution
${OCI_RUNNER} run --name "${RUNTIME_CONTAINER_NAME}" -v "${CFNRULES_LOCATION}":/cfnrules:ro -v "${UTILS_LOCATION}":/utils:ro -v "${SOURCE_DIR}":/src:ro -v "${OUTPUT_DIR}":/out:rw "${RUNTIME_CONTAINER_NAME}"
fi
#
# capture the return code of the command invoked through docker
#
_RETURN_CODE=$?
if [[ ${_RETURN_CODE} -ne 0 ]]; then
#
# Note the un-successful completion in RED text
#
echo -e "${RED}Dockerfile ${DOCKERFILE_TO_EXECUTE} returned ${_RETURN_CODE}${NC}"
#
# If the return code is negative, find the absolute value
#
if [[ ${_RETURN_CODE} -lt 0 ]]; then
let _RETURN_CODE=${_RETURN_CODE}*-1
fi
else
#
# Note the successful completion in GREEN text
#
echo -e "${GREEN}Dockerfile ${DOCKERFILE_TO_EXECUTE} returned ${_RETURN_CODE}${NC}"
fi
set -e # from this point, any failure will halt the execution.
if [[ "$_ASH_EXEC_MODE" != "local" ]]; then
${OCI_RUNNER} rm "${RUNTIME_CONTAINER_NAME}" >/dev/null # Let's keep it a clean environment
${OCI_RUNNER} rmi "${RUNTIME_CONTAINER_NAME}" >/dev/null # Let's keep it a clean environment
fi
else
echo -e "${LPURPLE}Found ${CYAN}none${LPURPLE} of: [${RED}" "${ITEMS_TO_SCAN[@]}" "${LPURPLE} ] items in source dir, ${CYAN}skipping run${LPURPLE} of ${GREEN}${DOCKERFILE_TO_EXECUTE}${NC}"
_RETURN_CODE=0
fi
#
# This function was invoked from the main line processing of the ash script.
# At that invocation (see below), the invocation is made with a trailing &
# which spawns a sub-process and runs the function (really a copy of the parent process)
# in the background.
#
# To propagate the return code from running the scan to the parent process, this function
# needs to "exit ${_RETURN_CODE}" rather than setting a global shell variable.
# Setting the global shell variable in a sub-process will have no effect on the value
# in the parent process.
#
# Return the status by exiting the sub-process with the return code.
#
# echo -e "${LPURPLE}Just before exsiting $1 - RC = ${_RETURN_CODE}${NC}"
if [ ${SINGLE_PROCESS} == 'false' ]; then
exit ${_RETURN_CODE}
else
RETURN_CODE=${_RETURN_CODE}
fi
}
# ---------------------------------------------------------------------
# Script processing starts here
# ---------------------------------------------------------------------
set -e
START_TIME=$(date +%s)
VERSION=v$(cat "$(dirname "${BASH_SOURCE[0]}")"/"pyproject.toml" | sed -n 's/^version = "\(.*\)"$/\1/p' | head -n 1)
OCI_RUNNER="docker"
ASH_OUTPUT_FORMAT=${ASH_OUTPUT_FORMAT:-text}
# Overrides default OCI Runner used by ASH
[ ! -z "$ASH_OCI_RUNNER" ] && OCI_RUNNER="$ASH_OCI_RUNNER"
# Look for extensions
GIT_EXTENSIONS=("git")
PY_EXTENSIONS=("py" "pyc" "ipynb")
INFRA_EXTENSIONS=("yaml" "yml" "tf" "json" "dockerfile")
CFN_EXTENSIONS=("yaml" "yml" "json" "template")
JS_EXTENSIONS=("js" "jsx" "ts" "tsx")
GRYPE_EXTENSIONS=("js" "jsx" "ts" "tsx" "py" "java" "go" "cs" "sh" "war" "jar")
DOCKERFILE_LOCATION="$(dirname "${BASH_SOURCE[0]}")"/"helper_dockerfiles"
UTILS_LOCATION="$(dirname "${BASH_SOURCE[0]}")"/"utils"
CFNRULES_LOCATION="$(dirname "${BASH_SOURCE[0]}")"/"appsec_cfn_rules"
#
# for tracking the highest return code from running tools
#
HIGHEST_RC=0
#
# Initialize options
#
COLOR_OUTPUT="true"
FORCED_EXT="false"
SINGLE_PROCESS="false"
ASH_DEBUG_ENABLED="false"
ASH_SCANSET_ARGS=""
#
# Initialize color escape codes
#
LPURPLE='\033[1;35m'
LGRAY='\033[0;37m'
GREEN='\033[0;32m'
RED='\033[0;31m'
YELLOW='\033[0;33m'
CYAN='\033[0;36m'
NC='\033[0m' # No Color
#
# Process command-line arguments
#
while (("$#")); do
case $1 in
--source-dir)
shift
SOURCE_DIR="$1"
;;
--output-dir)
shift
OUTPUT_DIR="$1"
;;
--ext | -extension)
shift
FORCED_EXT="$1"
;;
--offline)
OFFLINE="YES"
;;
--offline-semgrep-rulesets)
shift
OFFLINE_SEMGREP_RULESETS="$1"
;;
--force)
DOCKER_EXTRA_ARGS="${DOCKER_EXTRA_ARGS} --no-cache"
;;
--quiet | -q)
DOCKER_EXTRA_ARGS="${DOCKER_EXTRA_ARGS} -q"
QUIET_OUTPUT="-q"
;;
--single-process | -s)
SINGLE_PROCESS="true"
;;
--preserve-report | -p)
PRESERVE_FILE="true"
;;
--no-cleanup)
NO_CLEANUP_WORK_DIR="true"
;;
--debug)
ASH_DEBUG_ENABLED="true"
ASH_SCANSET_ARGS="${ASH_SCANSET_ARGS} --debug"
;;
--format)
shift
ASH_OUTPUT_FORMAT="$1"
;;
--no-color | -c)
COLOR_OUTPUT="false"
#
# Set all the colorizing escape sequences to empty strings
#
LPURPLE=''
LGRAY=''
GREEN=''
RED=''
YELLOW=''
CYAN=''
NC='' # No Color
;;
--finch | -f)
echo -e "${YELLOW}WARNING: The '--finch|-f' option is deprecated. Please switch to using '--oci-runner finch|-o finch' in scripts instead${NC}"
exit 1
;;
--oci-runner | -o)
shift
OCI_RUNNER="$1"
;;
--version | -v)
#
# Check the version before printing usage and exiting
#
version_check
#
# Print the version message
#
echo "ASH version $VERSION"
EXITCODE=0
exit $EXITCODE
;;
--help | -h)
#
# Print the usage message
#
print_usage
#
# Check the version before printing usage and exiting
#
version_check
EXITCODE=0
exit $EXITCODE
;;
*)
echo -e "${RED}Unrecognized option: $1${NC}"
print_usage
exit 1
;;
esac
shift
done
#
# Attempt to check the current version of ASH against what is found in
# the appropriate Git repository.
#
version_check
validate_input
# Export _ASH_* env vars for called script access to remove hardcoded paths.
# We default to the env var value if it's already set externally.
# We do this _after_ validate_input is called so that these values are resolved first.
export _ASH_SOURCE_DIR="${_ASH_SOURCE_DIR:-${SOURCE_DIR}}"
export _ASH_OUTPUT_DIR="${_ASH_OUTPUT_DIR:-${OUTPUT_DIR}}"
export _ASH_ROOT_DIR="${_ASH_ROOT_DIR:-${ASH_ROOT_DIR}}"
export _ASH_UTILS_LOCATION="${_ASH_UTILS_LOCATION:-${UTILS_LOCATION}}"
export _ASH_CFNRULES_LOCATION="${_ASH_CFNRULES_LOCATION:-${CFNRULES_LOCATION}}"
export _ASH_RUN_DIR="${_ASH_RUN_DIR:-$(mktemp -d -p /tmp ash-run-scan.XXXX)}"
export _ASH_OFFLINE=${_ASH_OFFLINE:-${OFFLINE}}
export _ASH_OFFLINE_SEMGREP_RULESETS=${_ASH_OFFLINE_SEMGREP_RULESETS:-${OFFLINE_SEMGREP_RULESETS}}
#
# Print out the current ASH version to start execution output
#
echo -e "\n${LPURPLE}ASH version ${GREEN}$VERSION${NC}\n"
# nosemgrep
IFS=$'\n' # Support directories with spaces, make the loop iterate over newline instead of space
pushd . >/dev/null 2>&1
cd "${SOURCE_DIR}"
# We do not include --output here explicitly to only yield the relative path
for zipfile in $(python "${_ASH_UTILS_LOCATION}/get-scan-set.py" --source . | grep '\.zip$');
do
tgt_dir=$(dirname "${OUTPUT_DIR}"/work/"${zipfile:2}")/"$(basename "${zipfile%.*}")"
mkdir -p "${tgt_dir}"
unzip ${QUIET_OUTPUT} -d "${tgt_dir}" -o $zipfile
done
popd >/dev/null 2>&1
unset IFS
declare -a all_files='' # Variable will be populated inside 'map_extensions_and_files' block
#
# Perform an initial scan of the files in the source directory tree to establish
# which scanners should be set up to be run.
#
map_extensions_and_files
TOTAL_FILES=$(echo "$all_files" | wc -l)
trap "echo Stopping; exit 0" SIGTERM SIGINT
echo -e "ASH found ${TOTAL_FILES} file(s) in the source directory..."
if [ $TOTAL_FILES -gt 1000 ]; then
echo -e "${RED}Depending on your machine this might take a while...${NC}"
echo -e "${RED}Waiting 5 seconds in case you want to stop (use CTRL-C)... ${NC}"
for i in {1..5}
do
echo -n "." && sleep 1
done
echo -e "${GREEN} Starting now!${NC}";
fi
#
# set up some variables for use further down
#
typeset -a JOBS JOBS_RC
typeset -i i j
#
# Collect all the jobs to be run into a list that can be looped through
#
# JOB_NAMES=("Dockerfile-git" "Dockerfile-py" "Dockerfile-yaml" "Dockerfile-js" "Dockerfile-grype" "Dockerfile-cdk")
JOB_NAMES=("Dockerfile-cdk" "Dockerfile-yaml" "Dockerfile-git" "Dockerfile-py" "Dockerfile-js" "Dockerfile-grype")
#
# Loop through the checks to start, grabbing the right extensions to add in
# and start the check as a background process
#
i=0
for jobName in "${JOB_NAMES[@]}"; do
if [ ${jobName} == 'Dockerfile-git' ]; then
JOB_EXTENSIONS=(${GIT_EXTENSIONS[@]})
elif [ ${jobName} == 'Dockerfile-py' ]; then
JOB_EXTENSIONS=(${PY_EXTENSIONS[@]})
elif [ ${jobName} == 'Dockerfile-yaml' ]; then
JOB_EXTENSIONS=(${INFRA_EXTENSIONS[@]})
elif [ ${jobName} == 'Dockerfile-js' ]; then
JOB_EXTENSIONS=(${JS_EXTENSIONS[@]})
elif [ ${jobName} == 'Dockerfile-grype' ]; then
JOB_EXTENSIONS=(${GRYPE_EXTENSIONS[@]})
elif [ ${jobName} == 'Dockerfile-cdk' ]; then
JOB_EXTENSIONS=(${CFN_EXTENSIONS[@]})
fi
# echo -e "${GREEN}run_security_check "${jobName}" "${JOB_EXTENSIONS[@]}" &${NC}"
if [ ${SINGLE_PROCESS} == 'false' ]; then
run_security_check "${jobName}" "${JOB_EXTENSIONS[@]}" &
JOBS[${i}]=$! # Note down the process ID of the child process to use later
else
RETURN_CODE=0
run_security_check "${jobName}" "${JOB_EXTENSIONS[@]}"
JOBS_RC[${i}]=${RETURN_CODE}
echo -e "${GREEN}${JOB_NAMES[${i}]}${CYAN} finished with return code ${JOBS_RC[${i}]}${NC}"
fi
i=${i}+1
done
if [ ${SINGLE_PROCESS} == 'false' ]; then
#
# Now that the jobs are started, wait for each job to finish, capturing the
# return code from the background process. The return code is set by the
# "exit ${_RETURN_CODE}" at the end of the run_security_check() function.
#
i=0
for pid in "${JOBS[@]}"; do
echo -e "${CYAN}waiting on ${GREEN}${JOB_NAMES[${i}]}${CYAN} to finish ...${NC}"
WAIT_ERR=0
j=5 # number of times to re-try a failed wait
while wait ${pid} || WAIT_ERR=$?; do
#
# This check allows for the "wait" to fail for some reason, if so
# it will return code 127, which we know will not be returned by the
# run_security_check() sub-process.
#
# So, loop on a wait until the wait succeeds for the job we're waiting on.
#
if [ ${WAIT_ERR} -ne 127 ]; then
JOBS_RC[${i}]=${WAIT_ERR}
break
else
j=${j}-1
if [ ${j} -gt 0 ]; then
echo -e "${RED}wait had and error, ${j} retries left, re-waiting ...${NC}"
else
JOBS_RC[${i}]=${WAIT_ERR}
echo -e "${RED}wait had and error, ${j} retries left, skipping wait for ${GREEN}${JOB_NAMES[${i}]}${RED} ...${NC}"
break
fi
fi
done
if [ ${JOBS_RC[${i}]} -ne 127 ]; then
echo -e "${GREEN}${JOB_NAMES[${i}]}${CYAN} finished with return code ${JOBS_RC[${i}]}${NC}"
else
echo -e "${GREEN}${JOB_NAMES[${i}]}${RED} wait for completion failed${NC}"
fi
i=$i+1
done
fi
#
# Now that all the jobs are complete, display a final report of
# the return code status for each job that was run.
#
i=0
echo -e "${CYAN}Jobs return code report:${NC}"
for pid in "${JOBS[@]}"; do
REPORT_COLOR=${GREEN}
if [ ${JOBS_RC[${i}]} -ne 0 ]; then
REPORT_COLOR=${RED}
if [ ${JOBS_RC[${i}]} -gt ${HIGHEST_RC} ]; then
HIGHEST_RC=${JOBS_RC[${i}]}
fi
else
REPORT_COLOR=${GREEN}
fi
printf "${REPORT_COLOR}%32s${CYAN} : %3d${NC}\\n" "${JOB_NAMES[${i}]}" "${JOBS_RC[${i}]}"
i=$i+1
done
# Cleanup any previous file
if [[ -n "${AGGREGATED_RESULTS_REPORT_FILENAME}" && -n "${OUTPUT_DIR}" && -f "${OUTPUT_DIR}"/"${AGGREGATED_RESULTS_REPORT_FILENAME}" ]]; then
rm -f "${OUTPUT_DIR}"/"${AGGREGATED_RESULTS_REPORT_FILENAME}"
fi
# if an extension was not found, no report file will be in place, so skip the final report
if [[ $(find "${OUTPUT_DIR}/work" -iname "*_report_result.txt" | wc -l | awk '{print $1}') -gt 0 ]];
then
# Aggregate the results output files
for result in "${OUTPUT_DIR}"/work/*_report_result.txt;
do
echo "#############################################" >> "${OUTPUT_DIR}"/"${AGGREGATED_RESULTS_REPORT_FILENAME}"
echo "Start of ${result}" >> "${OUTPUT_DIR}"/"${AGGREGATED_RESULTS_REPORT_FILENAME}"
echo "#############################################" >> "${OUTPUT_DIR}"/"${AGGREGATED_RESULTS_REPORT_FILENAME}"
cat "${result}" >> "${OUTPUT_DIR}"/"${AGGREGATED_RESULTS_REPORT_FILENAME}"
echo "#############################################" >> "${OUTPUT_DIR}"/"${AGGREGATED_RESULTS_REPORT_FILENAME}"
echo "End of ${result}" >> "${OUTPUT_DIR}"/"${AGGREGATED_RESULTS_REPORT_FILENAME}"
echo -e "#############################################\n\n" >> "${OUTPUT_DIR}"/"${AGGREGATED_RESULTS_REPORT_FILENAME}"
done
# Cleanup work directory containing all temp files
if [[ -z "${NO_CLEANUP_WORK_DIR}" && -n "${OUTPUT_DIR}" && -d "${OUTPUT_DIR}"/work ]]; then
rm -rf "${OUTPUT_DIR}"/work
fi
RESOLVED_OUTPUT_DIR=${ACTUAL_OUTPUT_DIR:-${OUTPUT_DIR}}
echo -e "${GREEN}\nYour final report can be found here:${NC} ${RESOLVED_OUTPUT_DIR}/${AGGREGATED_RESULTS_REPORT_FILENAME}"
if [[ "${ASH_OUTPUT_FORMAT:-text}" != "text" ]]; then
echo -e "${GREEN}Converting${NC} ${RESOLVED_OUTPUT_DIR}/${AGGREGATED_RESULTS_REPORT_FILENAME}${GREEN} to ASHARP JSON model${NC}"
asharp --input "${RESOLVED_OUTPUT_DIR}/${AGGREGATED_RESULTS_REPORT_FILENAME}" --output "${RESOLVED_OUTPUT_DIR}/${AGGREGATED_RESULTS_REPORT_FILENAME}.json"
fi
else
echo -e "${GREEN}No extensions were found, nothing to scan at the moment.${NC}"
fi
END_TIME=$(date +%s)
TOTAL_EXECUTION=$((END_TIME-START_TIME))
echo -e "${CYAN}ASH execution completed in ${TOTAL_EXECUTION} seconds.${NC}"
RCCOLOR=${GREEN}
if [[ $HIGHEST_RC -gt 0 ]]; then
RCCOLOR=${RED}
fi
echo -e "${RCCOLOR}Highest return code is $HIGHEST_RC${NC}"
exit $HIGHEST_RC