blob: 3b5a053073d00c8e3945cc4741b72839362e853f [file] [log] [blame]
Manuel Pégourié-Gonnard535e8aa2024-10-03 12:55:52 +02001# all-core.sh
2#
3# Copyright The Mbed TLS Contributors
4# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
5
Manuel Pégourié-Gonnard535e8aa2024-10-03 12:55:52 +02006################################################################
7#### Documentation
8################################################################
9
10# Purpose
11# -------
12#
13# To run all tests possible or available on the platform.
14#
Manuel Pégourié-Gonnard327edec2024-10-09 11:18:43 +020015# Files structure
16# ---------------
17#
18# The executable entry point for users and the CI is tests/scripts/all.sh.
19#
20# The actual content is in the following files:
21# - all-core.sh contains the core logic for running test components,
22# processing command line options, reporting results, etc.
23# - all-helpers.sh contains helper functions used by more than 1 component.
24# - components-*.sh contain the definitions of the various components.
25#
26# The first two parts are shared between repos and branches;
27# the component files are repo&branch-specific.
28#
29# The files all-*.sh and components-*.sh should only define functions and not
30# run code when sourced; the only exception being that all-core.sh runs
31# 'shopt' because that is necessary for the rest of the file to parse.
32#
Manuel Pégourié-Gonnard535e8aa2024-10-03 12:55:52 +020033# Notes for users
34# ---------------
35#
36# Warning: the test is destructive. It includes various build modes and
37# configurations, and can and will arbitrarily change the current CMake
38# configuration. The following files must be committed into git:
39# * include/mbedtls/mbedtls_config.h
40# * Makefile, library/Makefile, programs/Makefile, tests/Makefile,
41# programs/fuzz/Makefile
42# After running this script, the CMake cache will be lost and CMake
43# will no longer be initialised.
44#
45# The script assumes the presence of a number of tools:
46# * Basic Unix tools (Windows users note: a Unix-style find must be before
47# the Windows find in the PATH)
48# * Perl
49# * GNU Make
50# * CMake
51# * GCC and Clang (recent enough for using ASan with gcc and MemSan with clang, or valgrind)
52# * G++
53# * arm-gcc and mingw-gcc
54# * ArmCC 5 and ArmCC 6, unless invoked with --no-armcc
55# * OpenSSL and GnuTLS command line tools, in suitable versions for the
56# interoperability tests. The following are the official versions at the
57# time of writing:
58# * GNUTLS_{CLI,SERV} = 3.4.10
59# * GNUTLS_NEXT_{CLI,SERV} = 3.7.2
60# * OPENSSL = 1.0.2g (without Debian/Ubuntu patches)
61# * OPENSSL_NEXT = 3.1.2
62# See the invocation of check_tools below for details.
63#
64# This script must be invoked from the toplevel directory of a git
65# working copy of Mbed TLS.
66#
67# The behavior on an error depends on whether --keep-going (alias -k)
68# is in effect.
69# * Without --keep-going: the script stops on the first error without
70# cleaning up. This lets you work in the configuration of the failing
71# component.
72# * With --keep-going: the script runs all requested components and
73# reports failures at the end. In particular the script always cleans
74# up on exit.
75#
76# Note that the output is not saved. You may want to run
77# script -c tests/scripts/all.sh
78# or
79# tests/scripts/all.sh >all.log 2>&1
80#
81# Notes for maintainers
82# ---------------------
83#
84# The bulk of the code is organized into functions that follow one of the
85# following naming conventions:
Manuel Pégourié-Gonnard41ba5262024-10-09 12:51:05 +020086# * in all-core.sh:
87# * pre_XXX: things to do before running the tests, in order.
88# * post_XXX: things to do after running the tests.
89# * in components-*.sh:
90# * component_XXX: independent components. They can be run in any order.
91# * component_check_XXX: quick tests that aren't worth parallelizing.
92# * component_build_XXX: build things but don't run them.
93# * component_test_XXX: build and test.
94# * component_release_XXX: tests that the CI should skip during PR testing.
95# * support_XXX: if support_XXX exists and returns false then
96# component_XXX is not run by default.
97# * in various files:
98# * other: miscellaneous support functions.
Manuel Pégourié-Gonnard535e8aa2024-10-03 12:55:52 +020099#
100# Each component must start by invoking `msg` with a short informative message.
101#
102# Warning: due to the way bash detects errors, the failure of a command
103# inside 'if' or '!' is not detected. Use the 'not' function instead of '!'.
104#
105# Each component is executed in a separate shell process. The component
106# fails if any command in it returns a non-zero status.
107#
108# The framework performs some cleanup tasks after each component. This
109# means that components can assume that the working directory is in a
110# cleaned-up state, and don't need to perform the cleanup themselves.
111# * Run `make clean`.
112# * Restore `include/mbedtls/mbedtls_config.h` from a backup made before running
113# the component.
114# * Check out `Makefile`, `library/Makefile`, `programs/Makefile`,
115# `tests/Makefile` and `programs/fuzz/Makefile` from git.
116# This cleans up after an in-tree use of CMake.
Manuel Pégourié-Gonnard535e8aa2024-10-03 12:55:52 +0200117
118
119################################################################
120#### Initialization and command line parsing
121################################################################
122
123# Enable ksh/bash extended file matching patterns.
124# Must come before function definitions or some of them wouldn't parse.
125shopt -s extglob
126
127pre_set_shell_options () {
128 # Abort on errors (even on the left-hand side of a pipe).
129 # Treat uninitialised variables as errors.
130 set -e -o pipefail -u
131}
132
133# For project detection
134in_mbedtls_repo () {
135 test "$PROJECT_NAME" = "Mbed TLS"
136}
137
138in_tf_psa_crypto_repo () {
139 test "$PROJECT_NAME" = "TF-PSA-Crypto"
140}
141
142pre_check_environment () {
143 # For project detection
144 PROJECT_NAME_FILE='./scripts/project_name.txt'
145 if read -r PROJECT_NAME < "$PROJECT_NAME_FILE"; then :; else
146 echo "$PROJECT_NAME_FILE does not exist... Exiting..." >&2
147 exit 1
148 fi
149
150 if in_mbedtls_repo || in_tf_psa_crypto_repo; then :; else
151 echo "Must be run from Mbed TLS / TF-PSA-Crypto root" >&2
152 exit 1
153 fi
154}
155
156# Must be called before pre_initialize_variables which sets ALL_COMPONENTS.
157pre_load_components () {
158 # Include the components from components.sh
159 test_script_dir="${0%/*}"
Manuel Pégourié-Gonnard327edec2024-10-09 11:18:43 +0200160 for file in "$test_script_dir"/components-*.sh; do
Manuel Pégourié-Gonnard535e8aa2024-10-03 12:55:52 +0200161 source $file
162 done
163}
164
165pre_initialize_variables () {
166 if in_mbedtls_repo; then
167 CONFIG_H='include/mbedtls/mbedtls_config.h'
168 if [ -d tf-psa-crypto ]; then
169 CRYPTO_CONFIG_H='tf-psa-crypto/include/psa/crypto_config.h'
170 PSA_CORE_PATH='tf-psa-crypto/core'
171 BUILTIN_SRC_PATH='tf-psa-crypto/drivers/builtin/src'
172 else
173 CRYPTO_CONFIG_H='include/psa/crypto_config.h'
Manuel Pégourié-Gonnard3eac5082024-10-16 10:47:07 +0200174 # helper_armc6_build_test() relies on these being defined,
Manuel Pégourié-Gonnard901f6c12024-10-18 09:57:48 +0200175 # but empty if the paths don't exist (as in 3.6).
Manuel Pégourié-Gonnard3eac5082024-10-16 10:47:07 +0200176 PSA_CORE_PATH=''
177 BUILTIN_SRC_PATH=''
Manuel Pégourié-Gonnard535e8aa2024-10-03 12:55:52 +0200178 fi
179 else
180 CONFIG_H='drivers/builtin/include/mbedtls/mbedtls_config.h'
181 CRYPTO_CONFIG_H='include/psa/crypto_config.h'
182 PSA_CORE_PATH='core'
183 BUILTIN_SRC_PATH='drivers/builtin/src'
184 fi
185 CONFIG_TEST_DRIVER_H='tests/include/test/drivers/config_test_driver.h'
186
187 # Files that are clobbered by some jobs will be backed up. Use a different
188 # suffix from auxiliary scripts so that all.sh and auxiliary scripts can
189 # independently decide when to remove the backup file.
190 backup_suffix='.all.bak'
191 # Files clobbered by config.py
192 files_to_back_up="$CONFIG_H $CRYPTO_CONFIG_H $CONFIG_TEST_DRIVER_H"
193 if in_mbedtls_repo; then
194 # Files clobbered by in-tree cmake
195 files_to_back_up="$files_to_back_up Makefile library/Makefile programs/Makefile tests/Makefile programs/fuzz/Makefile"
196 fi
197
198 append_outcome=0
199 MEMORY=0
200 FORCE=0
201 QUIET=0
202 KEEP_GOING=0
203
204 # Seed value used with the --release-test option.
205 #
206 # See also RELEASE_SEED in basic-build-test.sh. Debugging is easier if
207 # both values are kept in sync. If you change the value here because it
208 # breaks some tests, you'll definitely want to change it in
209 # basic-build-test.sh as well.
210 RELEASE_SEED=1
211
212 # Specify character collation for regular expressions and sorting with C locale
213 export LC_COLLATE=C
214
215 : ${MBEDTLS_TEST_OUTCOME_FILE=}
216 : ${MBEDTLS_TEST_PLATFORM="$(uname -s | tr -c \\n0-9A-Za-z _)-$(uname -m | tr -c \\n0-9A-Za-z _)"}
217 export MBEDTLS_TEST_OUTCOME_FILE
218 export MBEDTLS_TEST_PLATFORM
219
220 # Default commands, can be overridden by the environment
221 : ${OPENSSL:="openssl"}
222 : ${OPENSSL_NEXT:="$OPENSSL"}
223 : ${GNUTLS_CLI:="gnutls-cli"}
224 : ${GNUTLS_SERV:="gnutls-serv"}
225 : ${OUT_OF_SOURCE_DIR:=./mbedtls_out_of_source_build}
226 : ${ARMC5_BIN_DIR:=/usr/bin}
227 : ${ARMC6_BIN_DIR:=/usr/bin}
228 : ${ARM_NONE_EABI_GCC_PREFIX:=arm-none-eabi-}
229 : ${ARM_LINUX_GNUEABI_GCC_PREFIX:=arm-linux-gnueabi-}
Bence Szépkútif38ee612024-07-11 09:50:45 +0100230 : ${ARM_LINUX_GNUEABIHF_GCC_PREFIX:=arm-linux-gnueabihf-}
Bence Szépkúti864ecda2024-07-11 15:52:07 +0100231 : ${AARCH64_LINUX_GNU_GCC_PREFIX:=aarch64-linux-gnu-}
Manuel Pégourié-Gonnard535e8aa2024-10-03 12:55:52 +0200232 : ${CLANG_LATEST:="clang-latest"}
233 : ${CLANG_EARLIEST:="clang-earliest"}
234 : ${GCC_LATEST:="gcc-latest"}
235 : ${GCC_EARLIEST:="gcc-earliest"}
236 # if MAKEFLAGS is not set add the -j option to speed up invocations of make
237 if [ -z "${MAKEFLAGS+set}" ]; then
238 export MAKEFLAGS="-j$(all_sh_nproc)"
239 fi
240 # if CC is not set, use clang by default (if present) to improve build times
241 if [ -z "${CC+set}" ] && (type clang > /dev/null 2>&1); then
242 export CC="clang"
243 fi
244
245 if [ -n "${OPENSSL_3+set}" ]; then
246 export OPENSSL_NEXT="$OPENSSL_3"
247 fi
248
249 # Include more verbose output for failing tests run by CMake or make
250 export CTEST_OUTPUT_ON_FAILURE=1
251
252 # CFLAGS and LDFLAGS for Asan builds that don't use CMake
253 # default to -O2, use -Ox _after_ this if you want another level
254 ASAN_CFLAGS='-O2 -Werror -fsanitize=address,undefined -fno-sanitize-recover=all'
255 # Normally, tests should use this compiler for ASAN testing
256 ASAN_CC=clang
257
258 # Platform tests have an allocation that returns null
259 export ASAN_OPTIONS="allocator_may_return_null=1"
260 export MSAN_OPTIONS="allocator_may_return_null=1"
261
262 # Gather the list of available components. These are the functions
263 # defined in this script whose name starts with "component_".
264 ALL_COMPONENTS=$(compgen -A function component_ | sed 's/component_//')
265
266 PSASIM_PATH='tests/psa-client-server/psasim/'
267
268 # Delay determining SUPPORTED_COMPONENTS until the command line options have a chance to override
269 # the commands set by the environment
270}
271
272setup_quiet_wrappers()
273{
274 # Pick up "quiet" wrappers for make and cmake, which don't output very much
275 # unless there is an error. This reduces logging overhead in the CI.
276 #
277 # Note that the cmake wrapper breaks unless we use an absolute path here.
278 if [[ -e ${PWD}/tests/scripts/quiet ]]; then
279 export PATH=${PWD}/tests/scripts/quiet:$PATH
280 fi
281}
282
283# Test whether the component $1 is included in the command line patterns.
284is_component_included()
285{
286 # Temporarily disable wildcard expansion so that $COMMAND_LINE_COMPONENTS
287 # only does word splitting.
288 set -f
289 for pattern in $COMMAND_LINE_COMPONENTS; do
290 set +f
291 case ${1#component_} in $pattern) return 0;; esac
292 done
293 set +f
294 return 1
295}
296
297usage()
298{
299 cat <<EOF
300Usage: $0 [OPTION]... [COMPONENT]...
301Run mbedtls release validation tests.
302By default, run all tests. With one or more COMPONENT, run only those.
303COMPONENT can be the name of a component or a shell wildcard pattern.
304
305Examples:
306 $0 "check_*"
307 Run all sanity checks.
308 $0 --no-armcc --except test_memsan
309 Run everything except builds that require armcc and MemSan.
310
311Special options:
312 -h|--help Print this help and exit.
313 --list-all-components List all available test components and exit.
314 --list-components List components supported on this platform and exit.
315
316General options:
317 -q|--quiet Only output component names, and errors if any.
318 -f|--force Force the tests to overwrite any modified files.
319 -k|--keep-going Run all tests and report errors at the end.
320 -m|--memory Additional optional memory tests.
321 --append-outcome Append to the outcome file (if used).
322 --arm-none-eabi-gcc-prefix=<string>
323 Prefix for a cross-compiler for arm-none-eabi
324 (default: "${ARM_NONE_EABI_GCC_PREFIX}")
325 --arm-linux-gnueabi-gcc-prefix=<string>
326 Prefix for a cross-compiler for arm-linux-gnueabi
327 (default: "${ARM_LINUX_GNUEABI_GCC_PREFIX}")
Bence Szépkúti2a45f0b2024-10-27 22:46:48 +0100328 --arm-linux-gnueabihf-gcc-prefix=<string>
329 Prefix for a cross-compiler for arm-linux-gnueabihf
330 (default: "${ARM_LINUX_GNUEABIHF_GCC_PREFIX}")
331 --aarch64-linux-gnu-gcc-prefix=<string>
332 Prefix for a cross-compiler for aarch64-linux-gnu
333 (default: "${AARCH64_LINUX_GNU_GCC_PREFIX}")
Manuel Pégourié-Gonnard535e8aa2024-10-03 12:55:52 +0200334 --armcc Run ARM Compiler builds (on by default).
335 --restore First clean up the build tree, restoring backed up
336 files. Do not run any components unless they are
337 explicitly specified.
338 --error-test Error test mode: run a failing function in addition
339 to any specified component. May be repeated.
340 --except Exclude the COMPONENTs listed on the command line,
341 instead of running only those.
342 --no-append-outcome Write a new outcome file and analyze it (default).
343 --no-armcc Skip ARM Compiler builds.
344 --no-force Refuse to overwrite modified files (default).
345 --no-keep-going Stop at the first error (default).
346 --no-memory No additional memory tests (default).
347 --no-quiet Print full output from components.
348 --out-of-source-dir=<path> Directory used for CMake out-of-source build tests.
349 --outcome-file=<path> File where test outcomes are written (not done if
350 empty; default: \$MBEDTLS_TEST_OUTCOME_FILE).
351 --random-seed Use a random seed value for randomized tests (default).
352 -r|--release-test Run this script in release mode. This fixes the seed value to ${RELEASE_SEED}.
353 -s|--seed Integer seed value to use for this test run.
354
355Tool path options:
356 --armc5-bin-dir=<ARMC5_bin_dir_path> ARM Compiler 5 bin directory.
357 --armc6-bin-dir=<ARMC6_bin_dir_path> ARM Compiler 6 bin directory.
358 --clang-earliest=<Clang_earliest_path> Earliest version of clang available
359 --clang-latest=<Clang_latest_path> Latest version of clang available
360 --gcc-earliest=<GCC_earliest_path> Earliest version of GCC available
361 --gcc-latest=<GCC_latest_path> Latest version of GCC available
362 --gnutls-cli=<GnuTLS_cli_path> GnuTLS client executable to use for most tests.
363 --gnutls-serv=<GnuTLS_serv_path> GnuTLS server executable to use for most tests.
364 --openssl=<OpenSSL_path> OpenSSL executable to use for most tests.
365 --openssl-next=<OpenSSL_path> OpenSSL executable to use for recent things like ARIA
366EOF
367}
368
369# Cleanup before/after running a component.
370# Remove built files as well as the cmake cache/config.
371# Does not remove generated source files.
372cleanup()
373{
374 if in_mbedtls_repo; then
375 command make clean
376 fi
377
378 # Remove CMake artefacts
379 find . -name .git -prune -o \
380 -iname CMakeFiles -exec rm -rf {} \+ -o \
381 \( -iname cmake_install.cmake -o \
382 -iname CTestTestfile.cmake -o \
383 -iname CMakeCache.txt -o \
384 -path './cmake/*.cmake' \) -exec rm -f {} \+
385 # Remove Makefiles generated by in-tree CMake builds
Manuel Pégourié-Gonnard96bfc172024-10-16 10:38:55 +0200386 # (Not all files will exist in all branches, but that's OK.)
387 rm -f 3rdparty/Makefile 3rdparty/*/Makefile
Manuel Pégourié-Gonnard535e8aa2024-10-03 12:55:52 +0200388 rm -f pkgconfig/Makefile framework/Makefile
389 rm -f include/Makefile programs/!(fuzz)/Makefile
390 rm -f tf-psa-crypto/Makefile tf-psa-crypto/include/Makefile
391 rm -f tf-psa-crypto/core/Makefile tf-psa-crypto/drivers/Makefile
392 rm -f tf-psa-crypto/tests/Makefile
393 rm -f tf-psa-crypto/drivers/everest/Makefile
394 rm -f tf-psa-crypto/drivers/p256-m/Makefile
395 rm -f tf-psa-crypto/drivers/builtin/Makefile
396 rm -f tf-psa-crypto/drivers/builtin/src/Makefile
397
398 # Remove any artifacts from the component_test_cmake_as_subdirectory test.
399 rm -rf programs/test/cmake_subproject/build
400 rm -f programs/test/cmake_subproject/Makefile
401 rm -f programs/test/cmake_subproject/cmake_subproject
402
403 # Remove any artifacts from the component_test_cmake_as_package test.
404 rm -rf programs/test/cmake_package/build
405 rm -f programs/test/cmake_package/Makefile
406 rm -f programs/test/cmake_package/cmake_package
407
408 # Remove any artifacts from the component_test_cmake_as_installed_package test.
409 rm -rf programs/test/cmake_package_install/build
410 rm -f programs/test/cmake_package_install/Makefile
411 rm -f programs/test/cmake_package_install/cmake_package_install
412
413 # Restore files that may have been clobbered by the job
414 restore_backed_up_files
415}
416
417# Restore files that may have been clobbered
418restore_backed_up_files () {
419 for x in $files_to_back_up; do
420 if [[ -e "$x$backup_suffix" ]]; then
421 cp -p "$x$backup_suffix" "$x"
422 fi
423 done
424}
425
426# Final cleanup when this script exits (except when exiting on a failure
427# in non-keep-going mode).
428final_cleanup () {
429 cleanup
430
431 for x in $files_to_back_up; do
432 rm -f "$x$backup_suffix"
433 done
434}
435
436# Executed on exit. May be redefined depending on command line options.
437final_report () {
438 :
439}
440
441fatal_signal () {
442 final_cleanup
443 final_report $1
444 trap - $1
445 kill -$1 $$
446}
447
Manuel Pégourié-Gonnard5d221de2024-10-09 11:20:06 +0200448pre_set_signal_handlers () {
449 trap 'fatal_signal HUP' HUP
450 trap 'fatal_signal INT' INT
451 trap 'fatal_signal TERM' TERM
452}
Manuel Pégourié-Gonnard535e8aa2024-10-03 12:55:52 +0200453
454# Number of processors on this machine. Used as the default setting
455# for parallel make.
456all_sh_nproc ()
457{
458 {
459 nproc || # Linux
460 sysctl -n hw.ncpuonline || # NetBSD, OpenBSD
461 sysctl -n hw.ncpu || # FreeBSD
462 echo 1
463 } 2>/dev/null
464}
465
466msg()
467{
468 if [ -n "${current_component:-}" ]; then
469 current_section="${current_component#component_}: $1"
470 else
471 current_section="$1"
472 fi
473
474 if [ $QUIET -eq 1 ]; then
475 return
476 fi
477
478 echo ""
479 echo "******************************************************************"
480 echo "* $current_section "
481 printf "* "; date
482 echo "******************************************************************"
483}
484
485err_msg()
486{
487 echo "$1" >&2
488}
489
490check_tools()
491{
492 for tool in "$@"; do
493 if ! `type "$tool" >/dev/null 2>&1`; then
494 err_msg "$tool not found!"
495 exit 1
496 fi
497 done
498}
499
500pre_parse_command_line () {
501 COMMAND_LINE_COMPONENTS=
502 all_except=0
503 error_test=0
504 list_components=0
505 restore_first=0
506 no_armcc=
507
508 # Note that legacy options are ignored instead of being omitted from this
509 # list of options, so invocations that worked with previous version of
510 # all.sh will still run and work properly.
511 while [ $# -gt 0 ]; do
512 case "$1" in
513 --append-outcome) append_outcome=1;;
514 --arm-none-eabi-gcc-prefix) shift; ARM_NONE_EABI_GCC_PREFIX="$1";;
515 --arm-linux-gnueabi-gcc-prefix) shift; ARM_LINUX_GNUEABI_GCC_PREFIX="$1";;
Bence Szépkúti2a45f0b2024-10-27 22:46:48 +0100516 --arm-linux-gnueabihf-gcc-prefix) shift; ARM_LINUX_GNUEABIHF_GCC_PREFIX="$1";;
517 --aarch64-linux-gnu-gcc-prefix) shift; AARCH64_LINUX_GNU_GCC_PREFIX="$1";;
Manuel Pégourié-Gonnard535e8aa2024-10-03 12:55:52 +0200518 --armcc) no_armcc=;;
519 --armc5-bin-dir) shift; ARMC5_BIN_DIR="$1";;
520 --armc6-bin-dir) shift; ARMC6_BIN_DIR="$1";;
521 --clang-earliest) shift; CLANG_EARLIEST="$1";;
522 --clang-latest) shift; CLANG_LATEST="$1";;
523 --error-test) error_test=$((error_test + 1));;
524 --except) all_except=1;;
525 --force|-f) FORCE=1;;
526 --gcc-earliest) shift; GCC_EARLIEST="$1";;
527 --gcc-latest) shift; GCC_LATEST="$1";;
528 --gnutls-cli) shift; GNUTLS_CLI="$1";;
529 --gnutls-legacy-cli) shift;; # ignored for backward compatibility
530 --gnutls-legacy-serv) shift;; # ignored for backward compatibility
531 --gnutls-serv) shift; GNUTLS_SERV="$1";;
532 --help|-h) usage; exit;;
533 --keep-going|-k) KEEP_GOING=1;;
534 --list-all-components) printf '%s\n' $ALL_COMPONENTS; exit;;
535 --list-components) list_components=1;;
536 --memory|-m) MEMORY=1;;
537 --no-append-outcome) append_outcome=0;;
538 --no-armcc) no_armcc=1;;
539 --no-force) FORCE=0;;
540 --no-keep-going) KEEP_GOING=0;;
541 --no-memory) MEMORY=0;;
542 --no-quiet) QUIET=0;;
543 --openssl) shift; OPENSSL="$1";;
544 --openssl-next) shift; OPENSSL_NEXT="$1";;
545 --outcome-file) shift; MBEDTLS_TEST_OUTCOME_FILE="$1";;
546 --out-of-source-dir) shift; OUT_OF_SOURCE_DIR="$1";;
547 --quiet|-q) QUIET=1;;
548 --random-seed) unset SEED;;
549 --release-test|-r) SEED=$RELEASE_SEED;;
550 --restore) restore_first=1;;
551 --seed|-s) shift; SEED="$1";;
552 -*)
553 echo >&2 "Unknown option: $1"
554 echo >&2 "Run $0 --help for usage."
555 exit 120
556 ;;
557 *) COMMAND_LINE_COMPONENTS="$COMMAND_LINE_COMPONENTS $1";;
558 esac
559 shift
560 done
561
562 # Exclude components that are not supported on this platform.
563 SUPPORTED_COMPONENTS=
564 for component in $ALL_COMPONENTS; do
565 case $(type "support_$component" 2>&1) in
566 *' function'*)
567 if ! support_$component; then continue; fi;;
568 esac
569 SUPPORTED_COMPONENTS="$SUPPORTED_COMPONENTS $component"
570 done
571
572 if [ $list_components -eq 1 ]; then
573 printf '%s\n' $SUPPORTED_COMPONENTS
574 exit
575 fi
576
577 # With no list of components, run everything.
578 if [ -z "$COMMAND_LINE_COMPONENTS" ] && [ $restore_first -eq 0 ]; then
579 all_except=1
580 fi
581
582 # --no-armcc is a legacy option. The modern way is --except '*_armcc*'.
583 # Ignore it if components are listed explicitly on the command line.
584 if [ -n "$no_armcc" ] && [ $all_except -eq 1 ]; then
585 COMMAND_LINE_COMPONENTS="$COMMAND_LINE_COMPONENTS *_armcc*"
586 fi
587
588 # Error out if an explicitly requested component doesn't exist.
589 if [ $all_except -eq 0 ]; then
590 unsupported=0
591 # Temporarily disable wildcard expansion so that $COMMAND_LINE_COMPONENTS
592 # only does word splitting.
593 set -f
594 for component in $COMMAND_LINE_COMPONENTS; do
595 set +f
596 # If the requested name includes a wildcard character, don't
597 # check it. Accept wildcard patterns that don't match anything.
598 case $component in
599 *[*?\[]*) continue;;
600 esac
601 case " $SUPPORTED_COMPONENTS " in
602 *" $component "*) :;;
603 *)
604 echo >&2 "Component $component was explicitly requested, but is not known or not supported."
605 unsupported=$((unsupported + 1));;
606 esac
607 done
608 set +f
609 if [ $unsupported -ne 0 ]; then
610 exit 2
611 fi
612 fi
613
614 # Build the list of components to run.
615 RUN_COMPONENTS=
616 for component in $SUPPORTED_COMPONENTS; do
617 if is_component_included "$component"; [ $? -eq $all_except ]; then
618 RUN_COMPONENTS="$RUN_COMPONENTS $component"
619 fi
620 done
621
622 unset all_except
623 unset no_armcc
624}
625
626pre_check_git () {
627 if [ $FORCE -eq 1 ]; then
628 rm -rf "$OUT_OF_SOURCE_DIR"
629 git checkout-index -f -q $CONFIG_H
630 cleanup
631 else
632
633 if [ -d "$OUT_OF_SOURCE_DIR" ]; then
634 echo "Warning - there is an existing directory at '$OUT_OF_SOURCE_DIR'" >&2
635 echo "You can either delete this directory manually, or force the test by rerunning"
636 echo "the script as: $0 --force --out-of-source-dir $OUT_OF_SOURCE_DIR"
637 exit 1
638 fi
639
640 if ! git diff --quiet "$CONFIG_H"; then
641 err_msg "Warning - the configuration file '$CONFIG_H' has been edited. "
642 echo "You can either delete or preserve your work, or force the test by rerunning the"
643 echo "script as: $0 --force"
644 exit 1
645 fi
646 fi
647}
648
649pre_restore_files () {
650 # If the makefiles have been generated by a framework such as cmake,
651 # restore them from git. If the makefiles look like modifications from
652 # the ones checked into git, take care not to modify them. Whatever
653 # this function leaves behind is what the script will restore before
654 # each component.
655 case "$(head -n1 Makefile)" in
656 *[Gg]enerated*)
657 git update-index --no-skip-worktree Makefile library/Makefile programs/Makefile tests/Makefile programs/fuzz/Makefile
658 git checkout -- Makefile library/Makefile programs/Makefile tests/Makefile programs/fuzz/Makefile
659 ;;
660 esac
661}
662
663pre_back_up () {
664 for x in $files_to_back_up; do
665 cp -p "$x" "$x$backup_suffix"
666 done
667}
668
669pre_setup_keep_going () {
670 failure_count=0 # Number of failed components
671 last_failure_status=0 # Last failure status in this component
672
673 # See err_trap
674 previous_failure_status=0
675 previous_failed_command=
676 previous_failure_funcall_depth=0
677 unset report_failed_command
678
679 start_red=
680 end_color=
681 if [ -t 1 ]; then
682 case "${TERM:-}" in
683 *color*|cygwin|linux|rxvt*|screen|[Eex]term*)
684 start_red=$(printf '\033[31m')
685 end_color=$(printf '\033[0m')
686 ;;
687 esac
688 fi
689
690 # Keep a summary of failures in a file. We'll print it out at the end.
691 failure_summary_file=$PWD/all-sh-failures-$$.log
692 : >"$failure_summary_file"
693
694 # Whether it makes sense to keep a component going after the specified
695 # command fails (test command) or not (configure or build).
696 # This function normally receives the failing simple command
697 # ($BASH_COMMAND) as an argument, but if $report_failed_command is set,
698 # this is passed instead.
699 # This doesn't have to be 100% accurate: all failures are recorded anyway.
700 # False positives result in running things that can't be expected to
701 # work. False negatives result in things not running after something else
702 # failed even though they might have given useful feedback.
703 can_keep_going_after_failure () {
704 case "$1" in
705 "msg "*) false;;
706 "cd "*) false;;
707 "diff "*) true;;
708 *make*[\ /]tests*) false;; # make tests, make CFLAGS=-I../tests, ...
709 *test*) true;; # make test, tests/stuff, env V=v tests/stuff, ...
710 *make*check*) true;;
711 "grep "*) true;;
712 "[ "*) true;;
713 "! "*) true;;
714 *) false;;
715 esac
716 }
717
718 # This function runs if there is any error in a component.
719 # It must either exit with a nonzero status, or set
720 # last_failure_status to a nonzero value.
721 err_trap () {
722 # Save $? (status of the failing command). This must be the very
723 # first thing, before $? is overridden.
724 last_failure_status=$?
725 failed_command=${report_failed_command-$BASH_COMMAND}
726
727 if [[ $last_failure_status -eq $previous_failure_status &&
728 "$failed_command" == "$previous_failed_command" &&
729 ${#FUNCNAME[@]} == $((previous_failure_funcall_depth - 1)) ]]
730 then
731 # The same command failed twice in a row, but this time one level
732 # less deep in the function call stack. This happens when the last
733 # command of a function returns a nonzero status, and the function
734 # returns that same status. Ignore the second failure.
735 previous_failure_funcall_depth=${#FUNCNAME[@]}
736 return
737 fi
738 previous_failure_status=$last_failure_status
739 previous_failed_command=$failed_command
740 previous_failure_funcall_depth=${#FUNCNAME[@]}
741
742 text="$current_section: $failed_command -> $last_failure_status"
743 echo "${start_red}^^^^$text^^^^${end_color}" >&2
744 echo "$text" >>"$failure_summary_file"
745
746 # If the command is fatal (configure or build command), stop this
747 # component. Otherwise (test command) keep the component running
748 # (run more tests from the same build).
749 if ! can_keep_going_after_failure "$failed_command"; then
750 exit $last_failure_status
751 fi
752 }
753
754 final_report () {
755 if [ $failure_count -gt 0 ]; then
756 echo
757 echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
758 echo "${start_red}FAILED: $failure_count components${end_color}"
759 cat "$failure_summary_file"
760 echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
761 elif [ -z "${1-}" ]; then
762 echo "SUCCESS :)"
763 fi
764 if [ -n "${1-}" ]; then
765 echo "Killed by SIG$1."
766 fi
767 rm -f "$failure_summary_file"
768 if [ $failure_count -gt 0 ]; then
769 exit 1
770 fi
771 }
772}
773
774# '! true' does not trigger the ERR trap. Arrange to trigger it, with
775# a reasonably informative error message (not just "$@").
776not () {
777 if "$@"; then
778 report_failed_command="! $*"
779 false
780 unset report_failed_command
781 fi
782}
783
784pre_prepare_outcome_file () {
785 case "$MBEDTLS_TEST_OUTCOME_FILE" in
786 [!/]*) MBEDTLS_TEST_OUTCOME_FILE="$PWD/$MBEDTLS_TEST_OUTCOME_FILE";;
787 esac
788 if [ -n "$MBEDTLS_TEST_OUTCOME_FILE" ] && [ "$append_outcome" -eq 0 ]; then
789 rm -f "$MBEDTLS_TEST_OUTCOME_FILE"
790 fi
791}
792
793pre_print_configuration () {
794 if [ $QUIET -eq 1 ]; then
795 return
796 fi
797
798 msg "info: $0 configuration"
799 echo "MEMORY: $MEMORY"
800 echo "FORCE: $FORCE"
801 echo "MBEDTLS_TEST_OUTCOME_FILE: ${MBEDTLS_TEST_OUTCOME_FILE:-(none)}"
802 echo "SEED: ${SEED-"UNSET"}"
803 echo
804 echo "OPENSSL: $OPENSSL"
805 echo "OPENSSL_NEXT: $OPENSSL_NEXT"
806 echo "GNUTLS_CLI: $GNUTLS_CLI"
807 echo "GNUTLS_SERV: $GNUTLS_SERV"
808 echo "ARMC5_BIN_DIR: $ARMC5_BIN_DIR"
809 echo "ARMC6_BIN_DIR: $ARMC6_BIN_DIR"
810}
811
812# Make sure the tools we need are available.
813pre_check_tools () {
814 # Build the list of variables to pass to output_env.sh.
815 set env
816
817 case " $RUN_COMPONENTS " in
818 # Require OpenSSL and GnuTLS if running any tests (as opposed to
819 # only doing builds). Not all tests run OpenSSL and GnuTLS, but this
820 # is a good enough approximation in practice.
821 *" test_"* | *" release_test_"*)
822 # To avoid setting OpenSSL and GnuTLS for each call to compat.sh
823 # and ssl-opt.sh, we just export the variables they require.
824 export OPENSSL="$OPENSSL"
825 export GNUTLS_CLI="$GNUTLS_CLI"
826 export GNUTLS_SERV="$GNUTLS_SERV"
827 # Avoid passing --seed flag in every call to ssl-opt.sh
828 if [ -n "${SEED-}" ]; then
829 export SEED
830 fi
831 set "$@" OPENSSL="$OPENSSL"
832 set "$@" GNUTLS_CLI="$GNUTLS_CLI" GNUTLS_SERV="$GNUTLS_SERV"
833 check_tools "$OPENSSL" "$OPENSSL_NEXT" \
834 "$GNUTLS_CLI" "$GNUTLS_SERV"
835 ;;
836 esac
837
838 case " $RUN_COMPONENTS " in
839 *_doxygen[_\ ]*) check_tools "doxygen" "dot";;
840 esac
841
842 case " $RUN_COMPONENTS " in
843 *_arm_none_eabi_gcc[_\ ]*) check_tools "${ARM_NONE_EABI_GCC_PREFIX}gcc";;
844 esac
845
846 case " $RUN_COMPONENTS " in
847 *_mingw[_\ ]*) check_tools "i686-w64-mingw32-gcc";;
848 esac
849
850 case " $RUN_COMPONENTS " in
851 *" test_zeroize "*) check_tools "gdb";;
852 esac
853
854 case " $RUN_COMPONENTS " in
855 *_armcc*)
856 ARMC5_CC="$ARMC5_BIN_DIR/armcc"
857 ARMC5_AR="$ARMC5_BIN_DIR/armar"
858 ARMC5_FROMELF="$ARMC5_BIN_DIR/fromelf"
859 ARMC6_CC="$ARMC6_BIN_DIR/armclang"
860 ARMC6_AR="$ARMC6_BIN_DIR/armar"
861 ARMC6_FROMELF="$ARMC6_BIN_DIR/fromelf"
862 check_tools "$ARMC5_CC" "$ARMC5_AR" "$ARMC5_FROMELF" \
863 "$ARMC6_CC" "$ARMC6_AR" "$ARMC6_FROMELF";;
864 esac
865
866 # past this point, no call to check_tool, only printing output
867 if [ $QUIET -eq 1 ]; then
868 return
869 fi
870
871 msg "info: output_env.sh"
872 case $RUN_COMPONENTS in
873 *_armcc*)
874 set "$@" ARMC5_CC="$ARMC5_CC" ARMC6_CC="$ARMC6_CC" RUN_ARMCC=1;;
875 *) set "$@" RUN_ARMCC=0;;
876 esac
877 "$@" scripts/output_env.sh
878}
879
880pre_generate_files() {
881 # since make doesn't have proper dependencies, remove any possibly outdate
882 # file that might be around before generating fresh ones
883 make neat
884 if [ $QUIET -eq 1 ]; then
885 make generated_files >/dev/null
886 else
887 make generated_files
888 fi
889}
890
891pre_load_helpers () {
892 # The path is going to change when this is moved to the framework
893 test_script_dir="${0%/*}"
894 source "$test_script_dir"/all-helpers.sh
895}
896
897################################################################
898#### Termination
899################################################################
900
901post_report () {
902 msg "Done, cleaning up"
903 final_cleanup
904
905 final_report
906}
907
908################################################################
909#### Run all the things
910################################################################
911
912# Function invoked by --error-test to test error reporting.
913pseudo_component_error_test () {
914 msg "Testing error reporting $error_test_i"
915 if [ $KEEP_GOING -ne 0 ]; then
916 echo "Expect three failing commands."
917 fi
918 # If the component doesn't run in a subshell, changing error_test_i to an
919 # invalid integer will cause an error in the loop that runs this function.
920 error_test_i=this_should_not_be_used_since_the_component_runs_in_a_subshell
921 # Expected error: 'grep non_existent /dev/null -> 1'
922 grep non_existent /dev/null
923 # Expected error: '! grep -q . tests/scripts/all.sh -> 1'
924 not grep -q . "$0"
925 # Expected error: 'make unknown_target -> 2'
926 make unknown_target
927 false "this should not be executed"
928}
929
930# Run one component and clean up afterwards.
931run_component () {
932 current_component="$1"
933 export MBEDTLS_TEST_CONFIGURATION="$current_component"
934
935 # Unconditionally create a seedfile that's sufficiently long.
936 # Do this before each component, because a previous component may
937 # have messed it up or shortened it.
938 local dd_cmd
939 dd_cmd=(dd if=/dev/urandom of=./tests/seedfile bs=64 count=1)
940 case $OSTYPE in
941 linux*|freebsd*|openbsd*) dd_cmd+=(status=none)
942 esac
943 "${dd_cmd[@]}"
944
945 if [ -d tf-psa-crypto ]; then
946 dd_cmd=(dd if=/dev/urandom of=./tf-psa-crypto/tests/seedfile bs=64 count=1)
947 case $OSTYPE in
948 linux*|freebsd*|openbsd*) dd_cmd+=(status=none)
949 esac
950 "${dd_cmd[@]}"
951 fi
952
953 # Run the component in a subshell, with error trapping and output
954 # redirection set up based on the relevant options.
955 if [ $KEEP_GOING -eq 1 ]; then
956 # We want to keep running if the subshell fails, so 'set -e' must
957 # be off when the subshell runs.
958 set +e
959 fi
960 (
961 if [ $QUIET -eq 1 ]; then
962 # msg() will be silenced, so just print the component name here.
963 echo "${current_component#component_}"
964 exec >/dev/null
965 fi
966 if [ $KEEP_GOING -eq 1 ]; then
967 # Keep "set -e" off, and run an ERR trap instead to record failures.
968 set -E
969 trap err_trap ERR
970 fi
971 # The next line is what runs the component
972 "$@"
973 if [ $KEEP_GOING -eq 1 ]; then
974 trap - ERR
975 exit $last_failure_status
976 fi
977 )
978 component_status=$?
979 if [ $KEEP_GOING -eq 1 ]; then
980 set -e
981 if [ $component_status -ne 0 ]; then
982 failure_count=$((failure_count + 1))
983 fi
984 fi
985
986 # Restore the build tree to a clean state.
987 cleanup
988 unset current_component
989}
990
991################################################################
992#### Main
993################################################################
994
995main () {
996 # Preliminary setup
997 pre_set_shell_options
Manuel Pégourié-Gonnard5d221de2024-10-09 11:20:06 +0200998 pre_set_signal_handlers
Manuel Pégourié-Gonnard535e8aa2024-10-03 12:55:52 +0200999 pre_check_environment
1000 pre_load_helpers
1001 pre_load_components
1002 pre_initialize_variables
1003 pre_parse_command_line "$@"
1004
1005 setup_quiet_wrappers
1006 pre_check_git
1007 pre_restore_files
1008 pre_back_up
1009
1010 build_status=0
1011 if [ $KEEP_GOING -eq 1 ]; then
1012 pre_setup_keep_going
1013 fi
1014 pre_prepare_outcome_file
1015 pre_print_configuration
1016 pre_check_tools
1017 cleanup
1018 if in_mbedtls_repo; then
1019 pre_generate_files
1020 fi
1021
1022 # Run the requested tests.
1023 for ((error_test_i=1; error_test_i <= error_test; error_test_i++)); do
1024 run_component pseudo_component_error_test
1025 done
1026 unset error_test_i
1027 for component in $RUN_COMPONENTS; do
1028 run_component "component_$component"
1029 done
1030
1031 # We're done.
1032 post_report
1033}