blob: 69f141f92ef3df0239d888bf9116f0685c48320e [file] [log] [blame]
Gilles Peskine3de7be82020-03-27 16:35:23 +01001#! /usr/bin/env bash
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +01002
Simon Butcher3ea7f522016-03-07 23:22:10 +00003# all.sh
4#
Bence Szépkúti1e148272020-08-07 13:07:28 +02005# Copyright The Mbed TLS Contributors
Dave Rodgman7ff79652023-11-03 12:04:52 +00006# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Gilles Peskine192c72f2017-12-21 15:59:21 +01007
8
9
10################################################################
11#### Documentation
12################################################################
13
Simon Butcher3ea7f522016-03-07 23:22:10 +000014# Purpose
Gilles Peskine192c72f2017-12-21 15:59:21 +010015# -------
Simon Butcher3ea7f522016-03-07 23:22:10 +000016#
SimonB2e23c822016-04-16 21:54:39 +010017# To run all tests possible or available on the platform.
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +010018#
Gilles Peskine192c72f2017-12-21 15:59:21 +010019# Notes for users
20# ---------------
21#
SimonB2e23c822016-04-16 21:54:39 +010022# Warning: the test is destructive. It includes various build modes and
23# configurations, and can and will arbitrarily change the current CMake
Gilles Peskine192c72f2017-12-21 15:59:21 +010024# configuration. The following files must be committed into git:
25# * include/mbedtls/config.h
Gilles Peskine636c26a2020-03-04 20:46:15 +010026# * Makefile, library/Makefile, programs/Makefile, tests/Makefile,
27# programs/fuzz/Makefile
Gilles Peskine192c72f2017-12-21 15:59:21 +010028# After running this script, the CMake cache will be lost and CMake
29# will no longer be initialised.
Manuel Pégourié-Gonnard3895f5a2014-03-27 14:44:04 +010030#
Gilles Peskine192c72f2017-12-21 15:59:21 +010031# The script assumes the presence of a number of tools:
32# * Basic Unix tools (Windows users note: a Unix-style find must be before
33# the Windows find in the PATH)
34# * Perl
35# * GNU Make
36# * CMake
37# * GCC and Clang (recent enough for using ASan with gcc and MemSan with clang, or valgrind)
Andrzej Kurek05be06c2018-06-28 04:41:50 -040038# * G++
Gilles Peskine192c72f2017-12-21 15:59:21 +010039# * arm-gcc and mingw-gcc
40# * ArmCC 5 and ArmCC 6, unless invoked with --no-armcc
Gilles Peskine549a9612023-08-27 21:39:21 +020041# * OpenSSL and GnuTLS command line tools, in suitable versions for the
42# interoperability tests. The following are the official versions at the
43# time of writing:
44# * GNUTLS_{CLI,SERV} = 3.4.10
45# * GNUTLS_NEXT_{CLI,SERV} = 3.7.2
46# * OPENSSL_LEGACY = 1.0.1j
47# * OPENSSL = 1.0.2g (without Debian/Ubuntu patches)
48# * OPENSSL_NEXT = 1.1.1a
Gilles Peskine192c72f2017-12-21 15:59:21 +010049# See the invocation of check_tools below for details.
50#
51# This script must be invoked from the toplevel directory of a git
52# working copy of Mbed TLS.
53#
Gilles Peskine7105a332020-03-28 18:50:43 +010054# The behavior on an error depends on whether --keep-going (alias -k)
55# is in effect.
56# * Without --keep-going: the script stops on the first error without
57# cleaning up. This lets you work in the configuration of the failing
58# component.
59# * With --keep-going: the script runs all requested components and
60# reports failures at the end. In particular the script always cleans
61# up on exit.
62#
Gilles Peskine192c72f2017-12-21 15:59:21 +010063# Note that the output is not saved. You may want to run
64# script -c tests/scripts/all.sh
65# or
66# tests/scripts/all.sh >all.log 2>&1
67#
68# Notes for maintainers
69# ---------------------
70#
Gilles Peskine8f073122018-11-27 15:58:47 +010071# The bulk of the code is organized into functions that follow one of the
72# following naming conventions:
73# * pre_XXX: things to do before running the tests, in order.
74# * component_XXX: independent components. They can be run in any order.
Gilles Peskinec70637a2019-01-09 22:29:17 +010075# * component_check_XXX: quick tests that aren't worth parallelizing.
76# * component_build_XXX: build things but don't run them.
77# * component_test_XXX: build and test.
Gilles Peskine878cf602019-01-06 20:50:38 +000078# * support_XXX: if support_XXX exists and returns false then
79# component_XXX is not run by default.
Gilles Peskine8f073122018-11-27 15:58:47 +010080# * post_XXX: things to do after running the tests.
81# * other: miscellaneous support functions.
82#
Gilles Peskinec70637a2019-01-09 22:29:17 +010083# Each component must start by invoking `msg` with a short informative message.
84#
Gilles Peskine39a3b112020-03-28 21:27:40 +010085# Warning: due to the way bash detects errors, the failure of a command
86# inside 'if' or '!' is not detected. Use the 'not' function instead of '!'.
87#
Gilles Peskine7105a332020-03-28 18:50:43 +010088# Each component is executed in a separate shell process. The component
89# fails if any command in it returns a non-zero status.
90#
Gilles Peskinec70637a2019-01-09 22:29:17 +010091# The framework performs some cleanup tasks after each component. This
92# means that components can assume that the working directory is in a
93# cleaned-up state, and don't need to perform the cleanup themselves.
94# * Run `make clean`.
95# * Restore `include/mbedtks/config.h` from a backup made before running
96# the component.
Gilles Peskine636c26a2020-03-04 20:46:15 +010097# * Check out `Makefile`, `library/Makefile`, `programs/Makefile`,
98# `tests/Makefile` and `programs/fuzz/Makefile` from git.
99# This cleans up after an in-tree use of CMake.
Gilles Peskinec70637a2019-01-09 22:29:17 +0100100#
Gilles Peskine192c72f2017-12-21 15:59:21 +0100101# The tests are roughly in order from fastest to slowest. This doesn't
102# have to be exact, but in general you should add slower tests towards
103# the end and fast checks near the beginning.
Gilles Peskine192c72f2017-12-21 15:59:21 +0100104
105
106
107################################################################
108#### Initialization and command line parsing
109################################################################
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +0100110
Gilles Peskine8ab29942020-03-28 18:50:49 +0100111# Abort on errors (even on the left-hand side of a pipe).
112# Treat uninitialised variables as errors.
113set -e -o pipefail -u
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +0100114
Gilles Peskine79598582022-08-30 21:02:44 +0200115# Enable ksh/bash extended file matching patterns
116shopt -s extglob
117
Gilles Peskine8f073122018-11-27 15:58:47 +0100118pre_check_environment () {
Gilles Peskinea16c2b12019-01-06 19:58:02 +0000119 if [ -d library -a -d include -a -d tests ]; then :; else
Gilles Peskinef08ca832023-09-12 19:21:54 +0200120 echo "Must be run from Mbed TLS root" >&2
Gilles Peskine8f073122018-11-27 15:58:47 +0100121 exit 1
122 fi
123}
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +0100124
Gilles Peskine8f073122018-11-27 15:58:47 +0100125pre_initialize_variables () {
126 CONFIG_H='include/mbedtls/config.h'
John Durkopbd069d32020-10-31 22:14:03 -0700127 CRYPTO_CONFIG_H='include/psa/crypto_config.h'
Gilles Peskine24bdf022020-03-30 20:11:39 +0200128
129 # Files that are clobbered by some jobs will be backed up. Use a different
130 # suffix from auxiliary scripts so that all.sh and auxiliary scripts can
131 # independently decide when to remove the backup file.
132 backup_suffix='.all.bak'
133 # Files clobbered by config.py
134 files_to_back_up="$CONFIG_H $CRYPTO_CONFIG_H"
Gilles Peskineef64e7f2021-07-12 18:16:01 +0200135 # Files clobbered by in-tree cmake
136 files_to_back_up="$files_to_back_up Makefile library/Makefile programs/Makefile tests/Makefile programs/fuzz/Makefile"
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +0200137
Gilles Peskine67ffdaf2019-09-16 15:55:46 +0200138 append_outcome=0
Gilles Peskine8f073122018-11-27 15:58:47 +0100139 MEMORY=0
140 FORCE=0
Manuel Pégourié-Gonnard2b2bdaa2020-06-02 11:28:07 +0200141 QUIET=0
Gilles Peskine8f073122018-11-27 15:58:47 +0100142 KEEP_GOING=0
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +0100143
Manuel Pégourié-Gonnarde0501912020-06-08 12:59:27 +0200144 # Seed value used with the --release-test option.
Manuel Pégourié-Gonnard54304472020-06-22 10:11:47 +0200145 #
146 # See also RELEASE_SEED in basic-build-test.sh. Debugging is easier if
147 # both values are kept in sync. If you change the value here because it
148 # breaks some tests, you'll definitely want to change it in
149 # basic-build-test.sh as well.
Manuel Pégourié-Gonnarde0501912020-06-08 12:59:27 +0200150 RELEASE_SEED=1
151
Gilles Peskine67ffdaf2019-09-16 15:55:46 +0200152 : ${MBEDTLS_TEST_OUTCOME_FILE=}
Gilles Peskine9004a172019-09-16 15:20:36 +0200153 : ${MBEDTLS_TEST_PLATFORM="$(uname -s | tr -c \\n0-9A-Za-z _)-$(uname -m | tr -c \\n0-9A-Za-z _)"}
Gilles Peskine67ffdaf2019-09-16 15:55:46 +0200154 export MBEDTLS_TEST_OUTCOME_FILE
Gilles Peskine9004a172019-09-16 15:20:36 +0200155 export MBEDTLS_TEST_PLATFORM
156
Jaeden Ameroc4cc2512019-01-30 15:35:44 +0000157 # Default commands, can be overridden by the environment
Gilles Peskine8f073122018-11-27 15:58:47 +0100158 : ${OPENSSL:="openssl"}
159 : ${OPENSSL_LEGACY:="$OPENSSL"}
160 : ${OPENSSL_NEXT:="$OPENSSL"}
161 : ${GNUTLS_CLI:="gnutls-cli"}
162 : ${GNUTLS_SERV:="gnutls-serv"}
Gilles Peskine8f073122018-11-27 15:58:47 +0100163 : ${OUT_OF_SOURCE_DIR:=./mbedtls_out_of_source_build}
164 : ${ARMC5_BIN_DIR:=/usr/bin}
165 : ${ARMC6_BIN_DIR:=/usr/bin}
Gilles Peskine6d061342020-04-30 18:19:32 +0200166 : ${ARM_NONE_EABI_GCC_PREFIX:=arm-none-eabi-}
Manuel Pégourié-Gonnard71930162020-08-18 10:28:51 +0200167 : ${ARM_LINUX_GNUEABI_GCC_PREFIX:=arm-linux-gnueabi-}
Gowtham Suresh Kumarcc029af2023-08-01 09:48:32 +0100168 : ${CLANG_LATEST:="clang-latest"}
169 : ${CLANG_EARLIEST:="clang-earliest"}
170 : ${GCC_LATEST:="gcc-latest"}
171 : ${GCC_EARLIEST:="gcc-earliest"}
Andres AGdc192212016-08-31 17:33:13 +0100172
Gilles Peskine8f073122018-11-27 15:58:47 +0100173 # if MAKEFLAGS is not set add the -j option to speed up invocations of make
Gilles Peskinea1fc4b52019-01-06 20:15:26 +0000174 if [ -z "${MAKEFLAGS+set}" ]; then
Gilles Peskine85229ac2021-09-30 18:24:21 +0200175 export MAKEFLAGS="-j$(all_sh_nproc)"
Gilles Peskine8f073122018-11-27 15:58:47 +0100176 fi
Gilles Peskine878cf602019-01-06 20:50:38 +0000177
Gilles Peskinec761d8f2021-09-20 18:57:55 +0200178 # Include more verbose output for failing tests run by CMake or make
Jaeden Amerod48e9c72019-02-07 17:43:39 +0000179 export CTEST_OUTPUT_ON_FAILURE=1
180
Gilles Peskine8fd59422019-10-21 17:11:33 +0200181 # CFLAGS and LDFLAGS for Asan builds that don't use CMake
Manuel Pégourié-Gonnard717f2302022-11-30 10:42:03 +0100182 # default to -O2, use -Ox _after_ this if you want another level
Manuel Pégourié-Gonnard154b84e2022-11-28 13:12:10 +0100183 ASAN_CFLAGS='-O2 -Werror -fsanitize=address,undefined -fno-sanitize-recover=all'
Gilles Peskine8fd59422019-10-21 17:11:33 +0200184
Andrzej Kurekd95b8ed2023-06-27 10:02:09 -0400185 # Platform tests have an allocation that returns null
186 export ASAN_OPTIONS="allocator_may_return_null=1"
Andrzej Kurek6e4a9be2023-07-05 08:32:43 -0400187 export MSAN_OPTIONS="allocator_may_return_null=1"
Andrzej Kurekd95b8ed2023-06-27 10:02:09 -0400188
Gilles Peskine878cf602019-01-06 20:50:38 +0000189 # Gather the list of available components. These are the functions
190 # defined in this script whose name starts with "component_".
Gowtham Suresh Kumar13850f32023-07-28 16:41:21 +0100191 ALL_COMPONENTS=$(compgen -A function component_ | sed 's/component_//')
Gilles Peskine878cf602019-01-06 20:50:38 +0000192
193 # Exclude components that are not supported on this platform.
194 SUPPORTED_COMPONENTS=
195 for component in $ALL_COMPONENTS; do
196 case $(type "support_$component" 2>&1) in
197 *' function'*)
198 if ! support_$component; then continue; fi;;
199 esac
200 SUPPORTED_COMPONENTS="$SUPPORTED_COMPONENTS $component"
201 done
Gilles Peskine8f073122018-11-27 15:58:47 +0100202}
Andres AG38495a32016-07-12 16:54:33 +0100203
Gilles Peskinea28db922019-01-10 00:05:18 +0100204# Test whether the component $1 is included in the command line patterns.
205is_component_included()
Gilles Peskine81b96ed2018-11-27 21:37:53 +0100206{
Gilles Peskine6702ce92021-08-06 11:35:17 +0200207 # Temporarily disable wildcard expansion so that $COMMAND_LINE_COMPONENTS
208 # only does word splitting.
Gilles Peskine81b96ed2018-11-27 21:37:53 +0100209 set -f
Gilles Peskinebeb3a812019-01-06 22:11:25 +0000210 for pattern in $COMMAND_LINE_COMPONENTS; do
Gilles Peskine81b96ed2018-11-27 21:37:53 +0100211 set +f
212 case ${1#component_} in $pattern) return 0;; esac
213 done
214 set +f
215 return 1
216}
Andres AG7770ea82016-10-10 15:46:20 +0100217
Simon Butcher41eeccf2016-09-07 00:07:09 +0100218usage()
Andres AGd9eba4b2016-08-26 14:42:14 +0100219{
Gilles Peskine709346a2017-12-10 23:43:39 +0100220 cat <<EOF
Gilles Peskine92525112018-11-27 18:15:35 +0100221Usage: $0 [OPTION]... [COMPONENT]...
Gilles Peskine348fb9a2018-11-27 17:04:29 +0100222Run mbedtls release validation tests.
Gilles Peskine92525112018-11-27 18:15:35 +0100223By default, run all tests. With one or more COMPONENT, run only those.
Gilles Peskinea28db922019-01-10 00:05:18 +0100224COMPONENT can be the name of a component or a shell wildcard pattern.
225
226Examples:
227 $0 "check_*"
228 Run all sanity checks.
229 $0 --no-armcc --except test_memsan
230 Run everything except builds that require armcc and MemSan.
Gilles Peskine348fb9a2018-11-27 17:04:29 +0100231
232Special options:
233 -h|--help Print this help and exit.
Gilles Peskine878cf602019-01-06 20:50:38 +0000234 --list-all-components List all available test components and exit.
235 --list-components List components supported on this platform and exit.
Gilles Peskine709346a2017-12-10 23:43:39 +0100236
237General options:
Manuel Pégourié-Gonnard2b2bdaa2020-06-02 11:28:07 +0200238 -q|--quiet Only output component names, and errors if any.
Gilles Peskine709346a2017-12-10 23:43:39 +0100239 -f|--force Force the tests to overwrite any modified files.
Gilles Peskine7c652162017-12-11 00:01:40 +0100240 -k|--keep-going Run all tests and report errors at the end.
Gilles Peskine709346a2017-12-10 23:43:39 +0100241 -m|--memory Additional optional memory tests.
Gilles Peskine67ffdaf2019-09-16 15:55:46 +0200242 --append-outcome Append to the outcome file (if used).
Gilles Peskine6d061342020-04-30 18:19:32 +0200243 --arm-none-eabi-gcc-prefix=<string>
244 Prefix for a cross-compiler for arm-none-eabi
245 (default: "${ARM_NONE_EABI_GCC_PREFIX}")
Manuel Pégourié-Gonnard71930162020-08-18 10:28:51 +0200246 --arm-linux-gnueabi-gcc-prefix=<string>
247 Prefix for a cross-compiler for arm-linux-gnueabi
248 (default: "${ARM_LINUX_GNUEABI_GCC_PREFIX}")
Gilles Peskinebca6ab92017-12-19 18:24:31 +0100249 --armcc Run ARM Compiler builds (on by default).
Gilles Peskine8eb3c952021-08-06 11:51:59 +0200250 --restore First clean up the build tree, restoring backed up
251 files. Do not run any components unless they are
252 explicitly specified.
Gilles Peskinea5eb22d2020-03-28 21:09:21 +0100253 --error-test Error test mode: run a failing function in addition
Gilles Peskinea25c5672021-08-05 15:11:33 +0200254 to any specified component. May be repeated.
Gilles Peskinea28db922019-01-10 00:05:18 +0100255 --except Exclude the COMPONENTs listed on the command line,
256 instead of running only those.
Gilles Peskine67ffdaf2019-09-16 15:55:46 +0200257 --no-append-outcome Write a new outcome file and analyze it (default).
Gilles Peskinebca6ab92017-12-19 18:24:31 +0100258 --no-armcc Skip ARM Compiler builds.
Gilles Peskine38d81652018-03-21 08:40:26 +0100259 --no-force Refuse to overwrite modified files (default).
260 --no-keep-going Stop at the first error (default).
261 --no-memory No additional memory tests (default).
Shaun Case0e7791f2021-12-20 21:14:10 -0800262 --no-quiet Print full output from components.
Gilles Peskine709346a2017-12-10 23:43:39 +0100263 --out-of-source-dir=<path> Directory used for CMake out-of-source build tests.
Gilles Peskine67ffdaf2019-09-16 15:55:46 +0200264 --outcome-file=<path> File where test outcomes are written (not done if
265 empty; default: \$MBEDTLS_TEST_OUTCOME_FILE).
Gilles Peskine38d81652018-03-21 08:40:26 +0100266 --random-seed Use a random seed value for randomized tests (default).
Manuel Pégourié-Gonnarde0501912020-06-08 12:59:27 +0200267 -r|--release-test Run this script in release mode. This fixes the seed value to ${RELEASE_SEED}.
Gilles Peskine709346a2017-12-10 23:43:39 +0100268 -s|--seed Integer seed value to use for this test run.
269
270Tool path options:
271 --armc5-bin-dir=<ARMC5_bin_dir_path> ARM Compiler 5 bin directory.
272 --armc6-bin-dir=<ARMC6_bin_dir_path> ARM Compiler 6 bin directory.
Gowtham Suresh Kumar2afb24f2023-08-01 09:45:57 +0100273 --clang-earliest=<Clang_earliest_path> Earliest version of clang available
274 --clang-latest=<Clang_latest_path> Latest version of clang available
275 --gcc-earliest=<GCC_earliest_path> Earliest version of GCC available
276 --gcc-latest=<GCC_latest_path> Latest version of GCC available
Gilles Peskine709346a2017-12-10 23:43:39 +0100277 --gnutls-cli=<GnuTLS_cli_path> GnuTLS client executable to use for most tests.
278 --gnutls-serv=<GnuTLS_serv_path> GnuTLS server executable to use for most tests.
Gilles Peskine709346a2017-12-10 23:43:39 +0100279 --openssl=<OpenSSL_path> OpenSSL executable to use for most tests.
280 --openssl-legacy=<OpenSSL_path> OpenSSL executable to use for legacy tests e.g. SSLv3.
Manuel Pégourié-Gonnard6b368922018-02-20 12:02:07 +0100281 --openssl-next=<OpenSSL_path> OpenSSL executable to use for recent things like ARIA
Gilles Peskine709346a2017-12-10 23:43:39 +0100282EOF
SimonB2e23c822016-04-16 21:54:39 +0100283}
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +0100284
Gilles Peskine4fa948f2021-08-03 13:44:28 +0200285# Cleanup before/after running a component.
286# Remove built files as well as the cmake cache/config.
287# Does not remove generated source files.
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +0100288cleanup()
289{
Gilles Peskine7c652162017-12-11 00:01:40 +0100290 command make clean
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +0200291
Gilles Peskine31b07e22018-03-21 12:15:06 +0100292 # Remove CMake artefacts
Jaeden Amero2d0e00f2018-11-07 18:46:41 +0000293 find . -name .git -prune -o \
Gilles Peskine31b07e22018-03-21 12:15:06 +0100294 -iname CMakeFiles -exec rm -rf {} \+ -o \
295 \( -iname cmake_install.cmake -o \
296 -iname CTestTestfile.cmake -o \
297 -iname CMakeCache.txt \) -exec rm {} \+
298 # Recover files overwritten by in-tree CMake builds
Gilles Peskine79598582022-08-30 21:02:44 +0200299 rm -f include/Makefile include/mbedtls/Makefile programs/!(fuzz)/Makefile
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +0200300
Jaeden Ameroab83fdf2019-06-20 17:38:22 +0100301 # Remove any artifacts from the component_test_cmake_as_subdirectory test.
302 rm -rf programs/test/cmake_subproject/build
303 rm -f programs/test/cmake_subproject/Makefile
304 rm -f programs/test/cmake_subproject/cmake_subproject
305
Gilles Peskine24bdf022020-03-30 20:11:39 +0200306 # Restore files that may have been clobbered by the job
307 for x in $files_to_back_up; do
Gilles Peskine423dd132022-08-30 21:02:00 +0200308 if [[ -e "$x$backup_suffix" ]]; then
309 cp -p "$x$backup_suffix" "$x"
310 fi
Gilles Peskine24bdf022020-03-30 20:11:39 +0200311 done
312}
John Durkopbd069d32020-10-31 22:14:03 -0700313
Gilles Peskine4fa948f2021-08-03 13:44:28 +0200314# Final cleanup when this script exits (except when exiting on a failure
315# in non-keep-going mode).
Gilles Peskine24bdf022020-03-30 20:11:39 +0200316final_cleanup () {
317 cleanup
318
319 for x in $files_to_back_up; do
320 rm -f "$x$backup_suffix"
321 done
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +0100322}
323
Gilles Peskine7c652162017-12-11 00:01:40 +0100324# Executed on exit. May be redefined depending on command line options.
325final_report () {
326 :
327}
328
329fatal_signal () {
Gilles Peskine24bdf022020-03-30 20:11:39 +0200330 final_cleanup
Gilles Peskine7c652162017-12-11 00:01:40 +0100331 final_report $1
332 trap - $1
333 kill -$1 $$
334}
335
336trap 'fatal_signal HUP' HUP
337trap 'fatal_signal INT' INT
338trap 'fatal_signal TERM' TERM
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +0200339
Gilles Peskine85229ac2021-09-30 18:24:21 +0200340# Number of processors on this machine. Used as the default setting
341# for parallel make.
342all_sh_nproc ()
343{
344 {
345 nproc || # Linux
346 sysctl -n hw.ncpuonline || # NetBSD, OpenBSD
347 sysctl -n hw.ncpu || # FreeBSD
348 echo 1
349 } 2>/dev/null
350}
351
Manuel Pégourié-Gonnard3895f5a2014-03-27 14:44:04 +0100352msg()
353{
Gilles Peskineffcdeff2018-12-04 12:49:28 +0100354 if [ -n "${current_component:-}" ]; then
355 current_section="${current_component#component_}: $1"
356 else
357 current_section="$1"
358 fi
Manuel Pégourié-Gonnard2b2bdaa2020-06-02 11:28:07 +0200359
360 if [ $QUIET -eq 1 ]; then
361 return
362 fi
363
Manuel Pégourié-Gonnard3895f5a2014-03-27 14:44:04 +0100364 echo ""
365 echo "******************************************************************"
Gilles Peskineffcdeff2018-12-04 12:49:28 +0100366 echo "* $current_section "
Manuel Pégourié-Gonnard392d3dd2015-01-26 14:03:56 +0000367 printf "* "; date
Manuel Pégourié-Gonnard3895f5a2014-03-27 14:44:04 +0100368 echo "******************************************************************"
369}
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +0100370
Gilles Peskine8f073122018-11-27 15:58:47 +0100371armc6_build_test()
372{
373 FLAGS="$1"
Andres AGa5cd9732016-10-17 15:23:10 +0100374
Gilles Peskine18487f62020-04-30 23:11:54 +0200375 msg "build: ARM Compiler 6 ($FLAGS)"
Gilles Peskine8f073122018-11-27 15:58:47 +0100376 ARM_TOOL_VARIANT="ult" CC="$ARMC6_CC" AR="$ARMC6_AR" CFLAGS="$FLAGS" \
Dave Rodgman6cda3d32023-03-02 13:39:04 +0000377 WARNING_CFLAGS='-Werror -xc -std=c99' make lib
Gilles Peskine18487f62020-04-30 23:11:54 +0200378
379 msg "size: ARM Compiler 6 ($FLAGS)"
380 "$ARMC6_FROMELF" -z library/*.o
381
Gilles Peskine8f073122018-11-27 15:58:47 +0100382 make clean
383}
Andres AGa5cd9732016-10-17 15:23:10 +0100384
Andres AGd9eba4b2016-08-26 14:42:14 +0100385err_msg()
386{
387 echo "$1" >&2
388}
389
390check_tools()
391{
392 for TOOL in "$@"; do
Andres AG98393602017-01-31 17:04:45 +0000393 if ! `type "$TOOL" >/dev/null 2>&1`; then
Andres AGd9eba4b2016-08-26 14:42:14 +0100394 err_msg "$TOOL not found!"
395 exit 1
396 fi
397 done
398}
399
Gilles Peskine8f073122018-11-27 15:58:47 +0100400pre_parse_command_line () {
Gilles Peskinebeb3a812019-01-06 22:11:25 +0000401 COMMAND_LINE_COMPONENTS=
Gilles Peskinea28db922019-01-10 00:05:18 +0100402 all_except=0
Gilles Peskinea5eb22d2020-03-28 21:09:21 +0100403 error_test=0
Gilles Peskine8eb3c952021-08-06 11:51:59 +0200404 restore_first=0
Gilles Peskine5331c6e2019-01-06 22:23:42 +0000405 no_armcc=
SimonB2e23c822016-04-16 21:54:39 +0100406
Jaeden Amero9b90f2e2018-11-02 18:34:17 +0000407 # Note that legacy options are ignored instead of being omitted from this
408 # list of options, so invocations that worked with previous version of
409 # all.sh will still run and work properly.
Gilles Peskine8f073122018-11-27 15:58:47 +0100410 while [ $# -gt 0 ]; do
Gilles Peskine55f7c942019-01-09 22:28:21 +0100411 case "$1" in
Gilles Peskine67ffdaf2019-09-16 15:55:46 +0200412 --append-outcome) append_outcome=1;;
Gilles Peskine6d061342020-04-30 18:19:32 +0200413 --arm-none-eabi-gcc-prefix) shift; ARM_NONE_EABI_GCC_PREFIX="$1";;
Manuel Pégourié-Gonnard71930162020-08-18 10:28:51 +0200414 --arm-linux-gnueabi-gcc-prefix) shift; ARM_LINUX_GNUEABI_GCC_PREFIX="$1";;
Gilles Peskine5331c6e2019-01-06 22:23:42 +0000415 --armcc) no_armcc=;;
Gilles Peskine55f7c942019-01-09 22:28:21 +0100416 --armc5-bin-dir) shift; ARMC5_BIN_DIR="$1";;
417 --armc6-bin-dir) shift; ARMC6_BIN_DIR="$1";;
Gowtham Suresh Kumar2afb24f2023-08-01 09:45:57 +0100418 --clang-earliest) shift; CLANG_EARLIEST="$1";;
419 --clang-latest) shift; CLANG_LATEST="$1";;
Gilles Peskinea5eb22d2020-03-28 21:09:21 +0100420 --error-test) error_test=$((error_test + 1));;
Gilles Peskinebeb3a812019-01-06 22:11:25 +0000421 --except) all_except=1;;
Gilles Peskine55f7c942019-01-09 22:28:21 +0100422 --force|-f) FORCE=1;;
Gowtham Suresh Kumar2afb24f2023-08-01 09:45:57 +0100423 --gcc-earliest) shift; GCC_EARLIEST="$1";;
424 --gcc-latest) shift; GCC_LATEST="$1";;
Gilles Peskine55f7c942019-01-09 22:28:21 +0100425 --gnutls-cli) shift; GNUTLS_CLI="$1";;
Gilles Peskine549a9612023-08-27 21:39:21 +0200426 --gnutls-legacy-cli) shift;; # ignored for backward compatibility
427 --gnutls-legacy-serv) shift;; # ignored for backward compatibility
Gilles Peskine55f7c942019-01-09 22:28:21 +0100428 --gnutls-serv) shift; GNUTLS_SERV="$1";;
429 --help|-h) usage; exit;;
430 --keep-going|-k) KEEP_GOING=1;;
Gilles Peskine878cf602019-01-06 20:50:38 +0000431 --list-all-components) printf '%s\n' $ALL_COMPONENTS; exit;;
432 --list-components) printf '%s\n' $SUPPORTED_COMPONENTS; exit;;
Gilles Peskine55f7c942019-01-09 22:28:21 +0100433 --memory|-m) MEMORY=1;;
Gilles Peskine67ffdaf2019-09-16 15:55:46 +0200434 --no-append-outcome) append_outcome=0;;
Gilles Peskine5331c6e2019-01-06 22:23:42 +0000435 --no-armcc) no_armcc=1;;
Gilles Peskine55f7c942019-01-09 22:28:21 +0100436 --no-force) FORCE=0;;
437 --no-keep-going) KEEP_GOING=0;;
438 --no-memory) MEMORY=0;;
Manuel Pégourié-Gonnard2b2bdaa2020-06-02 11:28:07 +0200439 --no-quiet) QUIET=0;;
Gilles Peskine55f7c942019-01-09 22:28:21 +0100440 --openssl) shift; OPENSSL="$1";;
441 --openssl-legacy) shift; OPENSSL_LEGACY="$1";;
442 --openssl-next) shift; OPENSSL_NEXT="$1";;
Gilles Peskine67ffdaf2019-09-16 15:55:46 +0200443 --outcome-file) shift; MBEDTLS_TEST_OUTCOME_FILE="$1";;
Gilles Peskine55f7c942019-01-09 22:28:21 +0100444 --out-of-source-dir) shift; OUT_OF_SOURCE_DIR="$1";;
Manuel Pégourié-Gonnard2b2bdaa2020-06-02 11:28:07 +0200445 --quiet|-q) QUIET=1;;
Gilles Peskine55f7c942019-01-09 22:28:21 +0100446 --random-seed) unset SEED;;
Manuel Pégourié-Gonnarde0501912020-06-08 12:59:27 +0200447 --release-test|-r) SEED=$RELEASE_SEED;;
Gilles Peskine8eb3c952021-08-06 11:51:59 +0200448 --restore) restore_first=1;;
Gilles Peskine55f7c942019-01-09 22:28:21 +0100449 --seed|-s) shift; SEED="$1";;
450 -*)
451 echo >&2 "Unknown option: $1"
452 echo >&2 "Run $0 --help for usage."
453 exit 120
454 ;;
Gilles Peskinebeb3a812019-01-06 22:11:25 +0000455 *) COMMAND_LINE_COMPONENTS="$COMMAND_LINE_COMPONENTS $1";;
Gilles Peskine55f7c942019-01-09 22:28:21 +0100456 esac
457 shift
Gilles Peskine8f073122018-11-27 15:58:47 +0100458 done
SimonB2e23c822016-04-16 21:54:39 +0100459
Gilles Peskinea28db922019-01-10 00:05:18 +0100460 # With no list of components, run everything.
Gilles Peskine8eb3c952021-08-06 11:51:59 +0200461 if [ -z "$COMMAND_LINE_COMPONENTS" ] && [ $restore_first -eq 0 ]; then
Gilles Peskinebeb3a812019-01-06 22:11:25 +0000462 all_except=1
Andres AGdc192212016-08-31 17:33:13 +0100463 fi
464
Gilles Peskine5331c6e2019-01-06 22:23:42 +0000465 # --no-armcc is a legacy option. The modern way is --except '*_armcc*'.
466 # Ignore it if components are listed explicitly on the command line.
Gilles Peskinea28db922019-01-10 00:05:18 +0100467 if [ -n "$no_armcc" ] && [ $all_except -eq 1 ]; then
Gilles Peskine5331c6e2019-01-06 22:23:42 +0000468 COMMAND_LINE_COMPONENTS="$COMMAND_LINE_COMPONENTS *_armcc*"
SimonB2e23c822016-04-16 21:54:39 +0100469 fi
SimonB2e23c822016-04-16 21:54:39 +0100470
Gilles Peskine4fa948f2021-08-03 13:44:28 +0200471 # Error out if an explicitly requested component doesn't exist.
Gilles Peskinee8056c52020-03-28 21:37:59 +0100472 if [ $all_except -eq 0 ]; then
473 unsupported=0
Gilles Peskine6702ce92021-08-06 11:35:17 +0200474 # Temporarily disable wildcard expansion so that $COMMAND_LINE_COMPONENTS
475 # only does word splitting.
Gilles Peskine8bfe15f2021-08-03 13:43:36 +0200476 set -f
Gilles Peskinee8056c52020-03-28 21:37:59 +0100477 for component in $COMMAND_LINE_COMPONENTS; do
Gilles Peskine8bfe15f2021-08-03 13:43:36 +0200478 set +f
Gilles Peskine4fa948f2021-08-03 13:44:28 +0200479 # If the requested name includes a wildcard character, don't
480 # check it. Accept wildcard patterns that don't match anything.
Gilles Peskinee8056c52020-03-28 21:37:59 +0100481 case $component in
482 *[*?\[]*) continue;;
483 esac
484 case " $SUPPORTED_COMPONENTS " in
485 *" $component "*) :;;
486 *)
487 echo >&2 "Component $component was explicitly requested, but is not known or not supported."
488 unsupported=$((unsupported + 1));;
489 esac
490 done
Gilles Peskine8bfe15f2021-08-03 13:43:36 +0200491 set +f
Gilles Peskinee8056c52020-03-28 21:37:59 +0100492 if [ $unsupported -ne 0 ]; then
493 exit 2
494 fi
495 fi
496
Gilles Peskinebeb3a812019-01-06 22:11:25 +0000497 # Build the list of components to run.
Gilles Peskinea28db922019-01-10 00:05:18 +0100498 RUN_COMPONENTS=
499 for component in $SUPPORTED_COMPONENTS; do
500 if is_component_included "$component"; [ $? -eq $all_except ]; then
501 RUN_COMPONENTS="$RUN_COMPONENTS $component"
502 fi
503 done
Gilles Peskinebeb3a812019-01-06 22:11:25 +0000504
505 unset all_except
Gilles Peskine5331c6e2019-01-06 22:23:42 +0000506 unset no_armcc
Gilles Peskine8f073122018-11-27 15:58:47 +0100507}
SimonB2e23c822016-04-16 21:54:39 +0100508
Gilles Peskine8f073122018-11-27 15:58:47 +0100509pre_check_git () {
510 if [ $FORCE -eq 1 ]; then
Gilles Peskine53190e62019-01-09 23:17:35 +0100511 rm -rf "$OUT_OF_SOURCE_DIR"
Gilles Peskine8f073122018-11-27 15:58:47 +0100512 git checkout-index -f -q $CONFIG_H
513 cleanup
514 else
SimonB2e23c822016-04-16 21:54:39 +0100515
Gilles Peskine8f073122018-11-27 15:58:47 +0100516 if [ -d "$OUT_OF_SOURCE_DIR" ]; then
517 echo "Warning - there is an existing directory at '$OUT_OF_SOURCE_DIR'" >&2
518 echo "You can either delete this directory manually, or force the test by rerunning"
519 echo "the script as: $0 --force --out-of-source-dir $OUT_OF_SOURCE_DIR"
520 exit 1
521 fi
522
Gilles Peskined1174cf2019-01-09 22:30:01 +0100523 if ! git diff --quiet include/mbedtls/config.h; then
Gilles Peskine8f073122018-11-27 15:58:47 +0100524 err_msg "Warning - the configuration file 'include/mbedtls/config.h' has been edited. "
525 echo "You can either delete or preserve your work, or force the test by rerunning the"
526 echo "script as: $0 --force"
527 exit 1
528 fi
SimonB2e23c822016-04-16 21:54:39 +0100529 fi
Andrzej Kurekeb508712019-02-14 07:18:59 -0500530}
531
Gilles Peskineef64e7f2021-07-12 18:16:01 +0200532pre_restore_files () {
533 # If the makefiles have been generated by a framework such as cmake,
534 # restore them from git. If the makefiles look like modifications from
535 # the ones checked into git, take care not to modify them. Whatever
536 # this function leaves behind is what the script will restore before
537 # each component.
538 case "$(head -n1 Makefile)" in
539 *[Gg]enerated*)
540 git update-index --no-skip-worktree Makefile library/Makefile programs/Makefile tests/Makefile programs/fuzz/Makefile
541 git checkout -- Makefile library/Makefile programs/Makefile tests/Makefile programs/fuzz/Makefile
542 ;;
543 esac
544}
545
Gilles Peskine24bdf022020-03-30 20:11:39 +0200546pre_back_up () {
547 for x in $files_to_back_up; do
548 cp -p "$x" "$x$backup_suffix"
549 done
550}
551
Gilles Peskine8f073122018-11-27 15:58:47 +0100552pre_setup_keep_going () {
Gilles Peskine7105a332020-03-28 18:50:43 +0100553 failure_count=0 # Number of failed components
554 last_failure_status=0 # Last failure status in this component
555
Gilles Peskine4848d7b2020-03-28 19:34:23 +0100556 # See err_trap
557 previous_failure_status=0
558 previous_failed_command=
559 previous_failure_funcall_depth=0
Gilles Peskine39a3b112020-03-28 21:27:40 +0100560 unset report_failed_command
Gilles Peskine4848d7b2020-03-28 19:34:23 +0100561
Gilles Peskine7c652162017-12-11 00:01:40 +0100562 start_red=
563 end_color=
564 if [ -t 1 ]; then
Gilles Peskine9736b9d2018-01-02 21:54:17 +0100565 case "${TERM:-}" in
Gilles Peskine7c652162017-12-11 00:01:40 +0100566 *color*|cygwin|linux|rxvt*|screen|[Eex]term*)
567 start_red=$(printf '\033[31m')
568 end_color=$(printf '\033[0m')
569 ;;
570 esac
571 fi
Gilles Peskine7105a332020-03-28 18:50:43 +0100572
573 # Keep a summary of failures in a file. We'll print it out at the end.
574 failure_summary_file=$PWD/all-sh-failures-$$.log
575 : >"$failure_summary_file"
576
577 # Whether it makes sense to keep a component going after the specified
578 # command fails (test command) or not (configure or build).
Gilles Peskine6702ce92021-08-06 11:35:17 +0200579 # This function normally receives the failing simple command
580 # ($BASH_COMMAND) as an argument, but if $report_failed_command is set,
581 # this is passed instead.
Gilles Peskine7105a332020-03-28 18:50:43 +0100582 # This doesn't have to be 100% accurate: all failures are recorded anyway.
Gilles Peskine76d40fa2021-08-02 23:29:53 +0200583 # False positives result in running things that can't be expected to
584 # work. False negatives result in things not running after something else
585 # failed even though they might have given useful feedback.
Gilles Peskine7105a332020-03-28 18:50:43 +0100586 can_keep_going_after_failure () {
587 case "$1" in
588 "msg "*) false;;
Gilles Peskine76d40fa2021-08-02 23:29:53 +0200589 "cd "*) false;;
590 *make*[\ /]tests*) false;; # make tests, make CFLAGS=-I../tests, ...
591 *test*) true;; # make test, tests/stuff, env V=v tests/stuff, ...
592 *make*check*) true;;
593 "grep "*) true;;
594 "[ "*) true;;
595 "! "*) true;;
Gilles Peskine7105a332020-03-28 18:50:43 +0100596 *) false;;
Gilles Peskine7c652162017-12-11 00:01:40 +0100597 esac
598 }
Gilles Peskine7105a332020-03-28 18:50:43 +0100599
600 # This function runs if there is any error in a component.
601 # It must either exit with a nonzero status, or set
602 # last_failure_status to a nonzero value.
603 err_trap () {
604 # Save $? (status of the failing command). This must be the very
605 # first thing, before $? is overridden.
606 last_failure_status=$?
Gilles Peskine39a3b112020-03-28 21:27:40 +0100607 failed_command=${report_failed_command-$BASH_COMMAND}
Gilles Peskine7105a332020-03-28 18:50:43 +0100608
Gilles Peskine4848d7b2020-03-28 19:34:23 +0100609 if [[ $last_failure_status -eq $previous_failure_status &&
610 "$failed_command" == "$previous_failed_command" &&
611 ${#FUNCNAME[@]} == $((previous_failure_funcall_depth - 1)) ]]
612 then
613 # The same command failed twice in a row, but this time one level
614 # less deep in the function call stack. This happens when the last
615 # command of a function returns a nonzero status, and the function
616 # returns that same status. Ignore the second failure.
617 previous_failure_funcall_depth=${#FUNCNAME[@]}
618 return
619 fi
620 previous_failure_status=$last_failure_status
621 previous_failed_command=$failed_command
622 previous_failure_funcall_depth=${#FUNCNAME[@]}
623
Gilles Peskine7105a332020-03-28 18:50:43 +0100624 text="$current_section: $failed_command -> $last_failure_status"
625 echo "${start_red}^^^^$text^^^^${end_color}" >&2
626 echo "$text" >>"$failure_summary_file"
627
628 # If the command is fatal (configure or build command), stop this
629 # component. Otherwise (test command) keep the component running
630 # (run more tests from the same build).
631 if ! can_keep_going_after_failure "$failed_command"; then
632 exit $last_failure_status
633 fi
634 }
635
Gilles Peskine7c652162017-12-11 00:01:40 +0100636 final_report () {
637 if [ $failure_count -gt 0 ]; then
638 echo
639 echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
Gilles Peskine7105a332020-03-28 18:50:43 +0100640 echo "${start_red}FAILED: $failure_count components${end_color}"
641 cat "$failure_summary_file"
Gilles Peskine7c652162017-12-11 00:01:40 +0100642 echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
643 elif [ -z "${1-}" ]; then
644 echo "SUCCESS :)"
645 fi
646 if [ -n "${1-}" ]; then
647 echo "Killed by SIG$1."
648 fi
Gilles Peskine7105a332020-03-28 18:50:43 +0100649 rm -f "$failure_summary_file"
650 if [ $failure_count -gt 0 ]; then
651 exit 1
652 fi
Gilles Peskine7c652162017-12-11 00:01:40 +0100653 }
Gilles Peskine8f073122018-11-27 15:58:47 +0100654}
655
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200656# record_status() and if_build_succeeded() are kept temporarily for backward
657# compatibility. Don't use them in new components.
Gilles Peskine7105a332020-03-28 18:50:43 +0100658record_status () {
659 "$@"
Gilles Peskine7c652162017-12-11 00:01:40 +0100660}
Gilles Peskine7c652162017-12-11 00:01:40 +0100661if_build_succeeded () {
Gilles Peskine7105a332020-03-28 18:50:43 +0100662 "$@"
Gilles Peskine7c652162017-12-11 00:01:40 +0100663}
664
Gilles Peskine39a3b112020-03-28 21:27:40 +0100665# '! true' does not trigger the ERR trap. Arrange to trigger it, with
666# a reasonably informative error message (not just "$@").
667not () {
668 if "$@"; then
669 report_failed_command="! $*"
670 false
671 unset report_failed_command
Manuel Pégourié-Gonnard2b2bdaa2020-06-02 11:28:07 +0200672 fi
673}
674
Gilles Peskine67ffdaf2019-09-16 15:55:46 +0200675pre_prepare_outcome_file () {
676 case "$MBEDTLS_TEST_OUTCOME_FILE" in
677 [!/]*) MBEDTLS_TEST_OUTCOME_FILE="$PWD/$MBEDTLS_TEST_OUTCOME_FILE";;
678 esac
679 if [ -n "$MBEDTLS_TEST_OUTCOME_FILE" ] && [ "$append_outcome" -eq 0 ]; then
680 rm -f "$MBEDTLS_TEST_OUTCOME_FILE"
681 fi
682}
683
Gilles Peskine8f073122018-11-27 15:58:47 +0100684pre_print_configuration () {
Manuel Pégourié-Gonnard2b2bdaa2020-06-02 11:28:07 +0200685 if [ $QUIET -eq 1 ]; then
686 return
687 fi
688
Gilles Peskine8f073122018-11-27 15:58:47 +0100689 msg "info: $0 configuration"
690 echo "MEMORY: $MEMORY"
691 echo "FORCE: $FORCE"
Gilles Peskine67ffdaf2019-09-16 15:55:46 +0200692 echo "MBEDTLS_TEST_OUTCOME_FILE: ${MBEDTLS_TEST_OUTCOME_FILE:-(none)}"
Gilles Peskine8f073122018-11-27 15:58:47 +0100693 echo "SEED: ${SEED-"UNSET"}"
Gilles Peskine636c26a2020-03-04 20:46:15 +0100694 echo
Gilles Peskine8f073122018-11-27 15:58:47 +0100695 echo "OPENSSL: $OPENSSL"
696 echo "OPENSSL_LEGACY: $OPENSSL_LEGACY"
697 echo "OPENSSL_NEXT: $OPENSSL_NEXT"
698 echo "GNUTLS_CLI: $GNUTLS_CLI"
699 echo "GNUTLS_SERV: $GNUTLS_SERV"
Gilles Peskine8f073122018-11-27 15:58:47 +0100700 echo "ARMC5_BIN_DIR: $ARMC5_BIN_DIR"
701 echo "ARMC6_BIN_DIR: $ARMC6_BIN_DIR"
702}
Andres AG7770ea82016-10-10 15:46:20 +0100703
Andres AGd9eba4b2016-08-26 14:42:14 +0100704# Make sure the tools we need are available.
Gilles Peskine8f073122018-11-27 15:58:47 +0100705pre_check_tools () {
Gilles Peskinecc9f0b92019-01-06 22:46:21 +0000706 # Build the list of variables to pass to output_env.sh.
707 set env
SimonB2e23c822016-04-16 21:54:39 +0100708
Gilles Peskine87964262019-01-06 22:40:00 +0000709 case " $RUN_COMPONENTS " in
710 # Require OpenSSL and GnuTLS if running any tests (as opposed to
711 # only doing builds). Not all tests run OpenSSL and GnuTLS, but this
712 # is a good enough approximation in practice.
713 *" test_"*)
714 # To avoid setting OpenSSL and GnuTLS for each call to compat.sh
715 # and ssl-opt.sh, we just export the variables they require.
Manuel Pégourié-Gonnard89d40272022-12-19 11:42:12 +0100716 export OPENSSL="$OPENSSL"
Gilles Peskine87964262019-01-06 22:40:00 +0000717 export GNUTLS_CLI="$GNUTLS_CLI"
718 export GNUTLS_SERV="$GNUTLS_SERV"
719 # Avoid passing --seed flag in every call to ssl-opt.sh
720 if [ -n "${SEED-}" ]; then
721 export SEED
722 fi
Gilles Peskinecc9f0b92019-01-06 22:46:21 +0000723 set "$@" OPENSSL="$OPENSSL" OPENSSL_LEGACY="$OPENSSL_LEGACY"
724 set "$@" GNUTLS_CLI="$GNUTLS_CLI" GNUTLS_SERV="$GNUTLS_SERV"
Gilles Peskine87964262019-01-06 22:40:00 +0000725 check_tools "$OPENSSL" "$OPENSSL_LEGACY" "$OPENSSL_NEXT" \
Gilles Peskine549a9612023-08-27 21:39:21 +0200726 "$GNUTLS_CLI" "$GNUTLS_SERV"
Gilles Peskine87964262019-01-06 22:40:00 +0000727 ;;
728 esac
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +0200729
Gilles Peskine87964262019-01-06 22:40:00 +0000730 case " $RUN_COMPONENTS " in
731 *_doxygen[_\ ]*) check_tools "doxygen" "dot";;
732 esac
Andres AGd9eba4b2016-08-26 14:42:14 +0100733
Gilles Peskine87964262019-01-06 22:40:00 +0000734 case " $RUN_COMPONENTS " in
Gilles Peskine6d061342020-04-30 18:19:32 +0200735 *_arm_none_eabi_gcc[_\ ]*) check_tools "${ARM_NONE_EABI_GCC_PREFIX}gcc";;
Gilles Peskine87964262019-01-06 22:40:00 +0000736 esac
Andres AGd9eba4b2016-08-26 14:42:14 +0100737
Gilles Peskine87964262019-01-06 22:40:00 +0000738 case " $RUN_COMPONENTS " in
739 *_mingw[_\ ]*) check_tools "i686-w64-mingw32-gcc";;
740 esac
741
742 case " $RUN_COMPONENTS " in
743 *" test_zeroize "*) check_tools "gdb";;
744 esac
745
746 case " $RUN_COMPONENTS " in
Gilles Peskine5331c6e2019-01-06 22:23:42 +0000747 *_armcc*)
Gilles Peskine87964262019-01-06 22:40:00 +0000748 ARMC5_CC="$ARMC5_BIN_DIR/armcc"
749 ARMC5_AR="$ARMC5_BIN_DIR/armar"
Gilles Peskine18487f62020-04-30 23:11:54 +0200750 ARMC5_FROMELF="$ARMC5_BIN_DIR/fromelf"
Gilles Peskine87964262019-01-06 22:40:00 +0000751 ARMC6_CC="$ARMC6_BIN_DIR/armclang"
752 ARMC6_AR="$ARMC6_BIN_DIR/armar"
Gilles Peskine18487f62020-04-30 23:11:54 +0200753 ARMC6_FROMELF="$ARMC6_BIN_DIR/fromelf"
754 check_tools "$ARMC5_CC" "$ARMC5_AR" "$ARMC5_FROMELF" \
755 "$ARMC6_CC" "$ARMC6_AR" "$ARMC6_FROMELF";;
Gilles Peskine5331c6e2019-01-06 22:23:42 +0000756 esac
Gilles Peskinecc9f0b92019-01-06 22:46:21 +0000757
Manuel Pégourié-Gonnard2b2bdaa2020-06-02 11:28:07 +0200758 # past this point, no call to check_tool, only printing output
759 if [ $QUIET -eq 1 ]; then
760 return
761 fi
762
Gilles Peskinecc9f0b92019-01-06 22:46:21 +0000763 msg "info: output_env.sh"
764 case $RUN_COMPONENTS in
765 *_armcc*)
766 set "$@" ARMC5_CC="$ARMC5_CC" ARMC6_CC="$ARMC6_CC" RUN_ARMCC=1;;
767 *) set "$@" RUN_ARMCC=0;;
768 esac
769 "$@" scripts/output_env.sh
Gilles Peskine8f073122018-11-27 15:58:47 +0100770}
Manuel Pégourié-Gonnard9bda9b32014-11-20 13:10:22 +0100771
Gilles Peskine192c72f2017-12-21 15:59:21 +0100772
773
774################################################################
775#### Basic checks
776################################################################
Manuel Pégourié-Gonnard9bda9b32014-11-20 13:10:22 +0100777
778#
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +0200779# Test Suites to be executed
Manuel Pégourié-Gonnard89d69b32014-11-20 13:48:53 +0100780#
Manuel Pégourié-Gonnard3d404b42015-07-08 21:59:16 +0100781# The test ordering tries to optimize for the following criteria:
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +0200782# 1. Catch possible problems early, by running first tests that run quickly
Manuel Pégourié-Gonnard89d69b32014-11-20 13:48:53 +0100783# and/or are more likely to fail than others (eg I use Clang most of the
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +0200784# time, so start with a GCC build).
785# 2. Minimize total running time, by avoiding useless rebuilds
Manuel Pégourié-Gonnard89d69b32014-11-20 13:48:53 +0100786#
Manuel Pégourié-Gonnard259b08a2016-01-08 16:27:41 +0100787# Indicative running times are given for reference.
788
Gilles Peskine8f073122018-11-27 15:58:47 +0100789component_check_recursion () {
Gilles Peskine600bb692019-09-19 21:29:11 +0200790 msg "Check: recursion.pl" # < 1s
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200791 tests/scripts/recursion.pl library/*.c
Gilles Peskine8f073122018-11-27 15:58:47 +0100792}
Janos Follathb72c6782016-07-19 14:54:17 +0100793
Gilles Peskine8f073122018-11-27 15:58:47 +0100794component_check_generated_files () {
Gilles Peskine600bb692019-09-19 21:29:11 +0200795 msg "Check: freshness of generated source files" # < 1s
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200796 tests/scripts/check-generated-files.sh
Gilles Peskine8f073122018-11-27 15:58:47 +0100797}
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +0200798
Gilles Peskine8f073122018-11-27 15:58:47 +0100799component_check_doxy_blocks () {
Gilles Peskine600bb692019-09-19 21:29:11 +0200800 msg "Check: doxygen markup outside doxygen blocks" # < 1s
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200801 tests/scripts/check-doxy-blocks.pl
Gilles Peskine8f073122018-11-27 15:58:47 +0100802}
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +0200803
Gilles Peskine8f073122018-11-27 15:58:47 +0100804component_check_files () {
Gilles Peskine600bb692019-09-19 21:29:11 +0200805 msg "Check: file sanity checks (permissions, encodings)" # < 1s
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200806 tests/scripts/check_files.py
Gilles Peskine8f073122018-11-27 15:58:47 +0100807}
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +0200808
Gilles Peskine30e0bb42020-05-10 17:40:49 +0200809component_check_changelog () {
810 msg "Check: changelog entries" # < 1s
811 rm -f ChangeLog.new
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200812 scripts/assemble_changelog.py -o ChangeLog.new
Gilles Peskine30e0bb42020-05-10 17:40:49 +0200813 if [ -e ChangeLog.new ]; then
814 # Show the diff for information. It isn't an error if the diff is
815 # non-empty.
816 diff -u ChangeLog ChangeLog.new || true
817 rm ChangeLog.new
818 fi
819}
820
Gilles Peskine8f073122018-11-27 15:58:47 +0100821component_check_names () {
Gilles Peskine600bb692019-09-19 21:29:11 +0200822 msg "Check: declared and exported names (builds the library)" # < 3s
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200823 tests/scripts/check_names.py -v
Gilles Peskine8f073122018-11-27 15:58:47 +0100824}
Darryl Greena07039c2018-03-13 16:48:16 +0000825
Gilles Peskine895868b2019-09-19 21:30:05 +0200826component_check_test_cases () {
827 msg "Check: test case descriptions" # < 1s
Manuel Pégourié-Gonnarda9119162020-06-02 11:51:40 +0200828 if [ $QUIET -eq 1 ]; then
Manuel Pégourié-Gonnard304b0992020-06-08 10:59:41 +0200829 opt='--quiet'
Manuel Pégourié-Gonnarda9119162020-06-02 11:51:40 +0200830 else
Manuel Pégourié-Gonnard304b0992020-06-08 10:59:41 +0200831 opt=''
Manuel Pégourié-Gonnarda9119162020-06-02 11:51:40 +0200832 fi
Gilles Peskine58987962022-12-15 14:46:31 +0100833 tests/scripts/check_test_cases.py -q $opt
Manuel Pégourié-Gonnard304b0992020-06-08 10:59:41 +0200834 unset opt
Gilles Peskine895868b2019-09-19 21:30:05 +0200835}
836
Gilles Peskine8f073122018-11-27 15:58:47 +0100837component_check_doxygen_warnings () {
Gilles Peskine600bb692019-09-19 21:29:11 +0200838 msg "Check: doxygen warnings (builds the documentation)" # ~ 3s
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200839 tests/scripts/doxygen.sh
Gilles Peskine8f073122018-11-27 15:58:47 +0100840}
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +0200841
Gilles Peskine192c72f2017-12-21 15:59:21 +0100842
Gilles Peskine636c26a2020-03-04 20:46:15 +0100843
Gilles Peskine192c72f2017-12-21 15:59:21 +0100844################################################################
845#### Build and test many configurations and targets
846################################################################
847
Gilles Peskine7832c9f2019-04-08 17:00:15 +0200848component_test_default_out_of_box () {
849 msg "build: make, default config (out-of-box)" # ~1min
850 make
Gilles Peskine67ffdaf2019-09-16 15:55:46 +0200851 # Disable fancy stuff
852 unset MBEDTLS_TEST_OUTCOME_FILE
Gilles Peskine7832c9f2019-04-08 17:00:15 +0200853
854 msg "test: main suites make, default config (out-of-box)" # ~10s
855 make test
856
857 msg "selftest: make, default config (out-of-box)" # ~10s
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200858 programs/test/selftest
Gilles Peskine93aaf2e2019-06-14 18:27:03 +0200859
860 msg "program demos: make, default config (out-of-box)" # ~10s
861 tests/scripts/run_demos.py
Gilles Peskine7832c9f2019-04-08 17:00:15 +0200862}
863
Gilles Peskine8f073122018-11-27 15:58:47 +0100864component_test_default_cmake_gcc_asan () {
865 msg "build: cmake, gcc, ASan" # ~ 1 min 50s
Gilles Peskine8f073122018-11-27 15:58:47 +0100866 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
867 make
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +0200868
Gilles Peskine8f073122018-11-27 15:58:47 +0100869 msg "test: main suites (inc. selftests) (ASan build)" # ~ 50s
870 make test
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +0200871
Gilles Peskine93aaf2e2019-06-14 18:27:03 +0200872 msg "program demos (ASan build)" # ~10s
873 tests/scripts/run_demos.py
874
Gilles Peskine97bea012020-04-23 23:37:45 +0200875 msg "test: selftest (ASan build)" # ~ 10s
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200876 programs/test/selftest
Gilles Peskine97bea012020-04-23 23:37:45 +0200877
Gilles Peskine8f073122018-11-27 15:58:47 +0100878 msg "test: ssl-opt.sh (ASan build)" # ~ 1 min
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200879 tests/ssl-opt.sh
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +0200880
Gilles Peskine8f073122018-11-27 15:58:47 +0100881 msg "test: compat.sh (ASan build)" # ~ 6 min
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200882 tests/compat.sh
Piotr Nowicki9978e6e2020-04-07 16:07:05 +0200883
884 msg "test: context-info.sh (ASan build)" # ~ 15 sec
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200885 tests/context-info.sh
Gilles Peskine8f073122018-11-27 15:58:47 +0100886}
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +0200887
Hanno Becker01635512019-02-26 14:27:09 +0000888component_test_full_cmake_gcc_asan () {
889 msg "build: full config, cmake, gcc, ASan"
Gilles Peskine5d46f6a2019-07-27 23:52:53 +0200890 scripts/config.py full
Hanno Becker01635512019-02-26 14:27:09 +0000891 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
892 make
893
894 msg "test: main suites (inc. selftests) (full config, ASan build)"
895 make test
Gilles Peskine636c26a2020-03-04 20:46:15 +0100896
Gilles Peskine97bea012020-04-23 23:37:45 +0200897 msg "test: selftest (ASan build)" # ~ 10s
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200898 programs/test/selftest
Gilles Peskine97bea012020-04-23 23:37:45 +0200899
Gilles Peskine636c26a2020-03-04 20:46:15 +0100900 msg "test: ssl-opt.sh (full config, ASan build)"
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200901 tests/ssl-opt.sh
Gilles Peskine636c26a2020-03-04 20:46:15 +0100902
903 msg "test: compat.sh (full config, ASan build)"
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200904 tests/compat.sh
Piotr Nowicki9978e6e2020-04-07 16:07:05 +0200905
906 msg "test: context-info.sh (full config, ASan build)" # ~ 15 sec
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200907 tests/context-info.sh
Gilles Peskine636c26a2020-03-04 20:46:15 +0100908}
909
Ronald Cronc3623db2020-10-29 10:51:32 +0100910component_test_psa_crypto_key_id_encodes_owner () {
911 msg "build: full config - USE_PSA_CRYPTO + PSA_CRYPTO_KEY_ID_ENCODES_OWNER, cmake, gcc, ASan"
912 scripts/config.py full
913 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
914 scripts/config.py set MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER
915 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
916 make
917
918 msg "test: full config - USE_PSA_CRYPTO + PSA_CRYPTO_KEY_ID_ENCODES_OWNER, cmake, gcc, ASan"
919 make test
920}
921
Gilles Peskine99a34622021-06-17 11:37:52 +0200922# check_renamed_symbols HEADER LIB
923# Check that if HEADER contains '#define MACRO ...' then MACRO is not a symbol
924# name is LIB.
925check_renamed_symbols () {
926 ! nm "$2" | sed 's/.* //' |
927 grep -x -F "$(sed -n 's/^ *# *define *\([A-Z_a-z][0-9A-Z_a-z]*\)..*/\1/p' "$1")"
928}
929
Gilles Peskine984c19f2021-06-15 18:37:38 +0200930component_build_psa_crypto_spm () {
931 msg "build: full config - USE_PSA_CRYPTO + PSA_CRYPTO_KEY_ID_ENCODES_OWNER + PSA_CRYPTO_SPM, make, gcc"
932 scripts/config.py full
933 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
934 scripts/config.py unset MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS
935 scripts/config.py set MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER
936 scripts/config.py set MBEDTLS_PSA_CRYPTO_SPM
937 # We can only compile, not link, since our test and sample programs
938 # aren't equipped for the modified names used when MBEDTLS_PSA_CRYPTO_SPM
939 # is active.
940 make CC=gcc CFLAGS='-Werror -Wall -Wextra -I../tests/include/spe' lib
Gilles Peskine99a34622021-06-17 11:37:52 +0200941
942 # Check that if a symbol is renamed by crypto_spe.h, the non-renamed
943 # version is not present.
944 echo "Checking for renamed symbols in the library"
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200945 check_renamed_symbols tests/include/spe/crypto_spe.h library/libmbedcrypto.a
Gilles Peskine984c19f2021-06-15 18:37:38 +0200946}
947
Ronald Cron336678b2021-01-28 17:54:24 +0100948component_test_psa_crypto_client () {
949 msg "build: default config - PSA_CRYPTO_C + PSA_CRYPTO_CLIENT, make"
950 scripts/config.py unset MBEDTLS_PSA_CRYPTO_C
951 scripts/config.py unset MBEDTLS_PSA_CRYPTO_STORAGE_C
952 scripts/config.py set MBEDTLS_PSA_CRYPTO_CLIENT
953 make
954
955 msg "test: default config - PSA_CRYPTO_C + PSA_CRYPTO_CLIENT, make"
956 make test
957}
958
Gilles Peskine636c26a2020-03-04 20:46:15 +0100959component_test_zlib_make() {
960 msg "build: zlib enabled, make"
961 scripts/config.py set MBEDTLS_ZLIB_SUPPORT
Gilles Peskine6fa69862021-10-05 09:36:03 +0200962 make ZLIB=1 CFLAGS='-Werror -O2'
Gilles Peskine636c26a2020-03-04 20:46:15 +0100963
964 msg "test: main suites (zlib, make)"
965 make test
966
967 msg "test: ssl-opt.sh (zlib, make)"
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200968 tests/ssl-opt.sh
Gilles Peskine636c26a2020-03-04 20:46:15 +0100969}
970support_test_zlib_make () {
971 base=support_test_zlib_$$
972 cat <<'EOF' > ${base}.c
973#include "zlib.h"
974int main(void) { return 0; }
975EOF
976 gcc -o ${base}.exe ${base}.c -lz 2>/dev/null
977 ret=$?
978 rm -f ${base}.*
979 return $ret
980}
981
982component_test_zlib_cmake() {
983 msg "build: zlib enabled, cmake"
984 scripts/config.py set MBEDTLS_ZLIB_SUPPORT
Gilles Peskine25319702021-10-07 19:34:57 +0200985 cmake -D ENABLE_ZLIB_SUPPORT=On -D CMAKE_BUILD_TYPE:String=Release .
Gilles Peskine636c26a2020-03-04 20:46:15 +0100986 make
987
988 msg "test: main suites (zlib, cmake)"
989 make test
990
991 msg "test: ssl-opt.sh (zlib, cmake)"
Gilles Peskinef6d29c62021-07-08 18:41:16 +0200992 tests/ssl-opt.sh
Gilles Peskine636c26a2020-03-04 20:46:15 +0100993}
994support_test_zlib_cmake () {
995 support_test_zlib_make "$@"
Manuel Pégourié-Gonnardf2e29022020-01-24 10:17:20 +0100996}
Manuel Pégourié-Gonnard95e04492020-01-02 11:45:12 +0100997
Jaeden Ameroc17f2932021-05-14 08:34:32 +0100998component_test_psa_crypto_rsa_no_genprime() {
999 msg "build: default config minus MBEDTLS_GENPRIME"
1000 scripts/config.py unset MBEDTLS_GENPRIME
1001 make
1002
1003 msg "test: default config minus MBEDTLS_GENPRIME"
1004 make test
1005}
1006
Gilles Peskine782f4112018-11-27 16:11:09 +01001007component_test_ref_configs () {
1008 msg "test/build: ref-configs (ASan build)" # ~ 6 min 20s
1009 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001010 tests/scripts/test-ref-configs.pl
Gilles Peskine782f4112018-11-27 16:11:09 +01001011}
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +02001012
Gilles Peskine8f073122018-11-27 15:58:47 +01001013component_test_sslv3 () {
1014 msg "build: Default + SSLv3 (ASan build)" # ~ 6 min
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02001015 scripts/config.py set MBEDTLS_SSL_PROTO_SSL3
Gilles Peskine8f073122018-11-27 15:58:47 +01001016 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
1017 make
Manuel Pégourié-Gonnard57255b12014-06-09 11:21:49 +02001018
Gilles Peskine8f073122018-11-27 15:58:47 +01001019 msg "test: SSLv3 - main suites (inc. selftests) (ASan build)" # ~ 50s
1020 make test
Simon Butcher3ea7f522016-03-07 23:22:10 +00001021
Gilles Peskine8f073122018-11-27 15:58:47 +01001022 msg "build: SSLv3 - compat.sh (ASan build)" # ~ 6 min
Gilles Peskinec67c3b32023-08-27 21:33:41 +02001023 tests/compat.sh -m 'ssl3 tls1 tls1_1 tls12 dtls1 dtls12'
Simon Butcher3ea7f522016-03-07 23:22:10 +00001024
Gilles Peskine8f073122018-11-27 15:58:47 +01001025 msg "build: SSLv3 - ssl-opt.sh (ASan build)" # ~ 6 min
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001026 tests/ssl-opt.sh
Piotr Nowicki9978e6e2020-04-07 16:07:05 +02001027
1028 msg "build: SSLv3 - context-info.sh (ASan build)" # ~ 15 sec
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001029 tests/context-info.sh
Gilles Peskine8f073122018-11-27 15:58:47 +01001030}
Simon Butcher3ea7f522016-03-07 23:22:10 +00001031
Gilles Peskine8f073122018-11-27 15:58:47 +01001032component_test_no_renegotiation () {
1033 msg "build: Default + !MBEDTLS_SSL_RENEGOTIATION (ASan build)" # ~ 6 min
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02001034 scripts/config.py unset MBEDTLS_SSL_RENEGOTIATION
Gilles Peskine8f073122018-11-27 15:58:47 +01001035 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
1036 make
Simon Butcher3ea7f522016-03-07 23:22:10 +00001037
Gilles Peskine8f073122018-11-27 15:58:47 +01001038 msg "test: !MBEDTLS_SSL_RENEGOTIATION - main suites (inc. selftests) (ASan build)" # ~ 50s
1039 make test
Hanno Becker134c2ab2017-10-12 15:29:50 +01001040
Gilles Peskine8f073122018-11-27 15:58:47 +01001041 msg "test: !MBEDTLS_SSL_RENEGOTIATION - ssl-opt.sh (ASan build)" # ~ 6 min
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001042 tests/ssl-opt.sh
Gilles Peskine8f073122018-11-27 15:58:47 +01001043}
Hanno Becker134c2ab2017-10-12 15:29:50 +01001044
Gilles Peskine56194432023-02-01 18:44:11 +01001045component_test_no_certs () {
1046 msg "build: full minus MBEDTLS_CERTS_C"
1047 scripts/config.py full
1048 scripts/config.py unset MBEDTLS_CERTS_C
1049 # Quick build+test (we're checking for stray uses of the test certs,
1050 # not expecting their absence to lead to subtle problems).
1051 make
1052
1053 msg "test: full minus MBEDTLS_CERTS_C - main suites"
1054 make test
1055}
1056
Gilles Peskine636c26a2020-03-04 20:46:15 +01001057component_test_no_pem_no_fs () {
1058 msg "build: Default + !MBEDTLS_PEM_PARSE_C + !MBEDTLS_FS_IO (ASan build)"
1059 scripts/config.py unset MBEDTLS_PEM_PARSE_C
1060 scripts/config.py unset MBEDTLS_FS_IO
1061 scripts/config.py unset MBEDTLS_PSA_ITS_FILE_C # requires a filesystem
1062 scripts/config.py unset MBEDTLS_PSA_CRYPTO_STORAGE_C # requires PSA ITS
1063 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
1064 make
1065
1066 msg "test: !MBEDTLS_PEM_PARSE_C !MBEDTLS_FS_IO - main suites (inc. selftests) (ASan build)" # ~ 50s
1067 make test
1068
1069 msg "test: !MBEDTLS_PEM_PARSE_C !MBEDTLS_FS_IO - ssl-opt.sh (ASan build)" # ~ 6 min
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001070 tests/ssl-opt.sh
Gilles Peskine636c26a2020-03-04 20:46:15 +01001071}
1072
Gilles Peskine8f073122018-11-27 15:58:47 +01001073component_test_rsa_no_crt () {
1074 msg "build: Default + RSA_NO_CRT (ASan build)" # ~ 6 min
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02001075 scripts/config.py set MBEDTLS_RSA_NO_CRT
Gilles Peskine8f073122018-11-27 15:58:47 +01001076 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
1077 make
Manuel Pégourié-Gonnard246978d2014-11-20 13:29:53 +01001078
Gilles Peskine8f073122018-11-27 15:58:47 +01001079 msg "test: RSA_NO_CRT - main suites (inc. selftests) (ASan build)" # ~ 50s
1080 make test
Hanno Beckerd5ba5ef2017-09-28 12:53:51 +01001081
Gilles Peskine8f073122018-11-27 15:58:47 +01001082 msg "test: RSA_NO_CRT - RSA-related part of ssl-opt.sh (ASan build)" # ~ 5s
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001083 tests/ssl-opt.sh -f RSA
Hanno Beckerd5ba5ef2017-09-28 12:53:51 +01001084
Gilles Peskine8f073122018-11-27 15:58:47 +01001085 msg "test: RSA_NO_CRT - RSA-related part of compat.sh (ASan build)" # ~ 3 min
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001086 tests/compat.sh -t RSA
Piotr Nowicki9978e6e2020-04-07 16:07:05 +02001087
1088 msg "test: RSA_NO_CRT - RSA-related part of context-info.sh (ASan build)" # ~ 15 sec
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001089 tests/context-info.sh
Gilles Peskine8f073122018-11-27 15:58:47 +01001090}
Hanno Beckerd5ba5ef2017-09-28 12:53:51 +01001091
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001092component_test_no_ctr_drbg_classic () {
1093 msg "build: Full minus CTR_DRBG, classic crypto in TLS"
Manuel Pégourié-Gonnard817e3682020-05-28 12:55:10 +02001094 scripts/config.py full
1095 scripts/config.py unset MBEDTLS_CTR_DRBG_C
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001096 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
Manuel Pégourié-Gonnard817e3682020-05-28 12:55:10 +02001097
1098 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
1099 make
1100
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001101 msg "test: Full minus CTR_DRBG, classic crypto - main suites"
Manuel Pégourié-Gonnard817e3682020-05-28 12:55:10 +02001102 make test
1103
Gilles Peskineba749042021-01-13 20:02:03 +01001104 # In this configuration, the TLS test programs use HMAC_DRBG.
1105 # The SSL tests are slow, so run a small subset, just enough to get
1106 # confidence that the SSL code copes with HMAC_DRBG.
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001107 msg "test: Full minus CTR_DRBG, classic crypto - ssl-opt.sh (subset)"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001108 tests/ssl-opt.sh -f 'Default\|SSL async private.*delay=\|tickets enabled on server'
Gilles Peskineba749042021-01-13 20:02:03 +01001109
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001110 msg "test: Full minus CTR_DRBG, classic crypto - compat.sh (subset)"
Xiaofei Baif40545d2021-12-02 08:43:35 +00001111 tests/compat.sh -m tls12 -t 'ECDSA PSK' -V NO -p OpenSSL
Manuel Pégourié-Gonnard5b942dc2020-06-05 09:29:51 +02001112}
1113
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001114component_test_no_ctr_drbg_use_psa () {
1115 msg "build: Full minus CTR_DRBG, PSA crypto in TLS"
Manuel Pégourié-Gonnard5b942dc2020-06-05 09:29:51 +02001116 scripts/config.py full
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001117 scripts/config.py unset MBEDTLS_CTR_DRBG_C
1118 scripts/config.py set MBEDTLS_USE_PSA_CRYPTO
Manuel Pégourié-Gonnard5b942dc2020-06-05 09:29:51 +02001119
1120 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
1121 make
1122
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001123 msg "test: Full minus CTR_DRBG, USE_PSA_CRYPTO - main suites"
1124 make test
1125
1126 # In this configuration, the TLS test programs use HMAC_DRBG.
1127 # The SSL tests are slow, so run a small subset, just enough to get
1128 # confidence that the SSL code copes with HMAC_DRBG.
1129 msg "test: Full minus CTR_DRBG, USE_PSA_CRYPTO - ssl-opt.sh (subset)"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001130 tests/ssl-opt.sh -f 'Default\|SSL async private.*delay=\|tickets enabled on server'
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001131
1132 msg "test: Full minus CTR_DRBG, USE_PSA_CRYPTO - compat.sh (subset)"
Xiaofei Baif40545d2021-12-02 08:43:35 +00001133 tests/compat.sh -m tls12 -t 'ECDSA PSK' -V NO -p OpenSSL
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001134}
1135
1136component_test_no_hmac_drbg_classic () {
1137 msg "build: Full minus HMAC_DRBG, classic crypto in TLS"
1138 scripts/config.py full
1139 scripts/config.py unset MBEDTLS_HMAC_DRBG_C
1140 scripts/config.py unset MBEDTLS_ECDSA_DETERMINISTIC # requires HMAC_DRBG
1141 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
1142
1143 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
1144 make
1145
1146 msg "test: Full minus HMAC_DRBG, classic crypto - main suites"
Manuel Pégourié-Gonnard5b942dc2020-06-05 09:29:51 +02001147 make test
1148
Gilles Peskinea2224342020-11-19 22:14:34 +01001149 # Normally our ECDSA implementation uses deterministic ECDSA. But since
1150 # HMAC_DRBG is disabled in this configuration, randomized ECDSA is used
1151 # instead.
1152 # Test SSL with non-deterministic ECDSA. Only test features that
1153 # might be affected by how ECDSA signature is performed.
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001154 msg "test: Full minus HMAC_DRBG, classic crypto - ssl-opt.sh (subset)"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001155 tests/ssl-opt.sh -f 'Default\|SSL async private: sign'
Gilles Peskinea2224342020-11-19 22:14:34 +01001156
1157 # To save time, only test one protocol version, since this part of
1158 # the protocol is identical in (D)TLS up to 1.2.
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001159 msg "test: Full minus HMAC_DRBG, classic crypto - compat.sh (ECDSA)"
Xiaofei Baif40545d2021-12-02 08:43:35 +00001160 tests/compat.sh -m tls12 -t 'ECDSA'
Manuel Pégourié-Gonnard817e3682020-05-28 12:55:10 +02001161}
1162
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001163component_test_no_hmac_drbg_use_psa () {
1164 msg "build: Full minus HMAC_DRBG, PSA crypto in TLS"
1165 scripts/config.py full
1166 scripts/config.py unset MBEDTLS_HMAC_DRBG_C
1167 scripts/config.py unset MBEDTLS_ECDSA_DETERMINISTIC # requires HMAC_DRBG
1168 scripts/config.py set MBEDTLS_USE_PSA_CRYPTO
1169
1170 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
1171 make
1172
1173 msg "test: Full minus HMAC_DRBG, USE_PSA_CRYPTO - main suites"
1174 make test
1175
1176 # Normally our ECDSA implementation uses deterministic ECDSA. But since
1177 # HMAC_DRBG is disabled in this configuration, randomized ECDSA is used
1178 # instead.
1179 # Test SSL with non-deterministic ECDSA. Only test features that
1180 # might be affected by how ECDSA signature is performed.
1181 msg "test: Full minus HMAC_DRBG, USE_PSA_CRYPTO - ssl-opt.sh (subset)"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001182 tests/ssl-opt.sh -f 'Default\|SSL async private: sign'
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001183
1184 # To save time, only test one protocol version, since this part of
1185 # the protocol is identical in (D)TLS up to 1.2.
1186 msg "test: Full minus HMAC_DRBG, USE_PSA_CRYPTO - compat.sh (ECDSA)"
Xiaofei Baif40545d2021-12-02 08:43:35 +00001187 tests/compat.sh -m tls12 -t 'ECDSA'
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001188}
1189
1190component_test_psa_external_rng_no_drbg_classic () {
1191 msg "build: PSA_CRYPTO_EXTERNAL_RNG minus *_DRBG, classic crypto in TLS"
1192 scripts/config.py full
1193 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
1194 scripts/config.py set MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG
Gilles Peskine38c12fd2021-02-08 21:02:53 +01001195 scripts/config.py unset MBEDTLS_ENTROPY_C
1196 scripts/config.py unset MBEDTLS_ENTROPY_NV_SEED
1197 scripts/config.py unset MBEDTLS_PLATFORM_NV_SEED_ALT
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001198 scripts/config.py unset MBEDTLS_CTR_DRBG_C
1199 scripts/config.py unset MBEDTLS_HMAC_DRBG_C
1200 scripts/config.py unset MBEDTLS_ECDSA_DETERMINISTIC # requires HMAC_DRBG
1201 scripts/config.py set MBEDTLS_ECP_NO_INTERNAL_RNG
Gilles Peskine8eb29432021-02-03 20:07:11 +01001202 # When MBEDTLS_USE_PSA_CRYPTO is disabled and there is no DRBG,
1203 # the SSL test programs don't have an RNG and can't work. Explicitly
1204 # make them use the PSA RNG with -DMBEDTLS_TEST_USE_PSA_CRYPTO_RNG.
1205 make CFLAGS="$ASAN_CFLAGS -O2 -DMBEDTLS_TEST_USE_PSA_CRYPTO_RNG" LDFLAGS="$ASAN_CFLAGS"
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001206
1207 msg "test: PSA_CRYPTO_EXTERNAL_RNG minus *_DRBG, classic crypto - main suites"
1208 make test
1209
Gilles Peskine8eb29432021-02-03 20:07:11 +01001210 msg "test: PSA_CRYPTO_EXTERNAL_RNG minus *_DRBG, classic crypto - ssl-opt.sh (subset)"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001211 tests/ssl-opt.sh -f 'Default'
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001212}
1213
1214component_test_psa_external_rng_no_drbg_use_psa () {
1215 msg "build: PSA_CRYPTO_EXTERNAL_RNG minus *_DRBG, PSA crypto in TLS"
Gilles Peskinec109b372020-11-23 17:39:04 +01001216 scripts/config.py full
1217 scripts/config.py set MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG
Gilles Peskine38c12fd2021-02-08 21:02:53 +01001218 scripts/config.py unset MBEDTLS_ENTROPY_C
1219 scripts/config.py unset MBEDTLS_ENTROPY_NV_SEED
1220 scripts/config.py unset MBEDTLS_PLATFORM_NV_SEED_ALT
Gilles Peskinec109b372020-11-23 17:39:04 +01001221 scripts/config.py unset MBEDTLS_CTR_DRBG_C
1222 scripts/config.py unset MBEDTLS_HMAC_DRBG_C
1223 scripts/config.py unset MBEDTLS_ECDSA_DETERMINISTIC # requires HMAC_DRBG
1224 scripts/config.py set MBEDTLS_ECP_NO_INTERNAL_RNG
1225 make CFLAGS="$ASAN_CFLAGS -O2" LDFLAGS="$ASAN_CFLAGS"
1226
Gilles Peskine2747d7d2021-02-03 14:56:51 +01001227 msg "test: PSA_CRYPTO_EXTERNAL_RNG minus *_DRBG, PSA crypto - main suites"
Gilles Peskinec109b372020-11-23 17:39:04 +01001228 make test
1229
Gilles Peskine8eb29432021-02-03 20:07:11 +01001230 msg "test: PSA_CRYPTO_EXTERNAL_RNG minus *_DRBG, PSA crypto - ssl-opt.sh (subset)"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001231 tests/ssl-opt.sh -f 'Default\|opaque'
Gilles Peskinec109b372020-11-23 17:39:04 +01001232}
1233
1234component_test_psa_external_rng_use_psa_crypto () {
1235 msg "build: full + PSA_CRYPTO_EXTERNAL_RNG + USE_PSA_CRYPTO minus CTR_DRBG"
1236 scripts/config.py full
1237 scripts/config.py set MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG
1238 scripts/config.py set MBEDTLS_USE_PSA_CRYPTO
1239 scripts/config.py unset MBEDTLS_CTR_DRBG_C
1240 make CFLAGS="$ASAN_CFLAGS -O2" LDFLAGS="$ASAN_CFLAGS"
1241
1242 msg "test: full + PSA_CRYPTO_EXTERNAL_RNG + USE_PSA_CRYPTO minus CTR_DRBG"
1243 make test
1244
Gilles Peskineba749042021-01-13 20:02:03 +01001245 msg "test: full + PSA_CRYPTO_EXTERNAL_RNG + USE_PSA_CRYPTO minus CTR_DRBG"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001246 tests/ssl-opt.sh -f 'Default\|opaque'
Gilles Peskinec109b372020-11-23 17:39:04 +01001247}
1248
Gilles Peskine55e89982023-04-28 21:04:28 +02001249component_test_psa_inject_entropy () {
1250 msg "build: full + MBEDTLS_PSA_INJECT_ENTROPY"
1251 scripts/config.py full
1252 scripts/config.py set MBEDTLS_PSA_INJECT_ENTROPY
1253 scripts/config.py set MBEDTLS_ENTROPY_NV_SEED
1254 scripts/config.py set MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES
1255 scripts/config.py unset MBEDTLS_PLATFORM_NV_SEED_ALT
1256 scripts/config.py unset MBEDTLS_PLATFORM_STD_NV_SEED_READ
1257 scripts/config.py unset MBEDTLS_PLATFORM_STD_NV_SEED_WRITE
1258 make CFLAGS="$ASAN_CFLAGS '-DMBEDTLS_USER_CONFIG_FILE=\"../tests/configs/user-config-for-test.h\"'" LDFLAGS="$ASAN_CFLAGS"
1259
1260 msg "test: full + MBEDTLS_PSA_INJECT_ENTROPY"
1261 make test
1262}
1263
Manuel Pégourié-Gonnard1a3f9ed2020-05-19 12:38:31 +02001264component_test_ecp_no_internal_rng () {
1265 msg "build: Default plus ECP_NO_INTERNAL_RNG minus DRBG modules"
1266 scripts/config.py set MBEDTLS_ECP_NO_INTERNAL_RNG
1267 scripts/config.py unset MBEDTLS_CTR_DRBG_C
1268 scripts/config.py unset MBEDTLS_HMAC_DRBG_C
1269 scripts/config.py unset MBEDTLS_ECDSA_DETERMINISTIC # requires HMAC_DRBG
1270 scripts/config.py unset MBEDTLS_PSA_CRYPTO_C # requires a DRBG
1271 scripts/config.py unset MBEDTLS_PSA_CRYPTO_STORAGE_C # requires PSA Crypto
1272
1273 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
1274 make
1275
1276 msg "test: ECP_NO_INTERNAL_RNG, no DRBG module"
1277 make test
1278
1279 # no SSL tests as they all depend on having a DRBG
1280}
1281
Manuel Pégourié-Gonnard53fb66d2020-06-04 09:43:14 +02001282component_test_ecp_restartable_no_internal_rng () {
1283 msg "build: Default plus ECP_RESTARTABLE and ECP_NO_INTERNAL_RNG, no DRBG"
1284 scripts/config.py set MBEDTLS_ECP_NO_INTERNAL_RNG
1285 scripts/config.py set MBEDTLS_ECP_RESTARTABLE
1286 scripts/config.py unset MBEDTLS_CTR_DRBG_C
1287 scripts/config.py unset MBEDTLS_HMAC_DRBG_C
1288 scripts/config.py unset MBEDTLS_ECDSA_DETERMINISTIC # requires HMAC_DRBG
1289 scripts/config.py unset MBEDTLS_PSA_CRYPTO_C # requires CTR_DRBG
1290 scripts/config.py unset MBEDTLS_PSA_CRYPTO_STORAGE_C # requires PSA Crypto
1291
1292 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
1293 make
1294
1295 msg "test: ECP_RESTARTABLE and ECP_NO_INTERNAL_RNG, no DRBG module"
1296 make test
1297
1298 # no SSL tests as they all depend on having a DRBG
1299}
1300
Przemek Stekiele5352702022-10-05 11:37:54 +02001301component_test_tls1_2_default_stream_cipher_only () {
1302 msg "build: default with only stream cipher"
1303
1304 # Disable AEAD (controlled by the presence of one of GCM_C, CCM_C, CHACHAPOLY_C
1305 scripts/config.py unset MBEDTLS_GCM_C
1306 scripts/config.py unset MBEDTLS_CCM_C
1307 scripts/config.py unset MBEDTLS_CHACHAPOLY_C
1308 # Disable CBC-legacy (controlled by MBEDTLS_CIPHER_MODE_CBC plus at least one block cipher (AES, ARIA, Camellia, DES))
1309 scripts/config.py unset MBEDTLS_CIPHER_MODE_CBC
1310 # Disable CBC-EtM (controlled by the same as CBC-legacy plus MBEDTLS_SSL_ENCRYPT_THEN_MAC)
1311 scripts/config.py unset MBEDTLS_SSL_ENCRYPT_THEN_MAC
1312 # Enable stream (currently that's just the NULL pseudo-cipher (controlled by MBEDTLS_CIPHER_NULL_CIPHER))
1313 scripts/config.py set MBEDTLS_CIPHER_NULL_CIPHER
1314 # Modules that depend on AEAD
1315 scripts/config.py unset MBEDTLS_SSL_CONTEXT_SERIALIZATION
Przemek Stekiel97d57402022-10-10 14:08:51 +02001316 scripts/config.py unset MBEDTLS_SSL_TICKET_C
Przemek Stekiele5352702022-10-05 11:37:54 +02001317
1318 make
1319
1320 msg "test: default with only stream cipher"
1321 make test
1322
1323 # Not running ssl-opt.sh because most tests require a non-NULL ciphersuite.
1324}
1325
1326component_test_tls1_2_default_stream_cipher_only_use_psa () {
1327 msg "build: default with only stream cipher use psa"
1328
1329 scripts/config.py set MBEDTLS_USE_PSA_CRYPTO
1330 # Disable AEAD (controlled by the presence of one of GCM_C, CCM_C, CHACHAPOLY_C)
1331 scripts/config.py unset MBEDTLS_GCM_C
1332 scripts/config.py unset MBEDTLS_CCM_C
1333 scripts/config.py unset MBEDTLS_CHACHAPOLY_C
1334 # Disable CBC-legacy (controlled by MBEDTLS_CIPHER_MODE_CBC plus at least one block cipher (AES, ARIA, Camellia, DES))
1335 scripts/config.py unset MBEDTLS_CIPHER_MODE_CBC
1336 # Disable CBC-EtM (controlled by the same as CBC-legacy plus MBEDTLS_SSL_ENCRYPT_THEN_MAC)
1337 scripts/config.py unset MBEDTLS_SSL_ENCRYPT_THEN_MAC
1338 # Enable stream (currently that's just the NULL pseudo-cipher (controlled by MBEDTLS_CIPHER_NULL_CIPHER))
1339 scripts/config.py set MBEDTLS_CIPHER_NULL_CIPHER
1340 # Modules that depend on AEAD
1341 scripts/config.py unset MBEDTLS_SSL_CONTEXT_SERIALIZATION
Przemek Stekiel97d57402022-10-10 14:08:51 +02001342 scripts/config.py unset MBEDTLS_SSL_TICKET_C
Przemek Stekiele5352702022-10-05 11:37:54 +02001343
1344 make
1345
1346 msg "test: default with only stream cipher use psa"
1347 make test
1348
1349 # Not running ssl-opt.sh because most tests require a non-NULL ciphersuite.
1350}
1351
1352component_test_tls1_2_default_cbc_legacy_cipher_only () {
1353 msg "build: default with only CBC-legacy cipher"
1354
1355 # Disable AEAD (controlled by the presence of one of GCM_C, CCM_C, CHACHAPOLY_C)
1356 scripts/config.py unset MBEDTLS_GCM_C
1357 scripts/config.py unset MBEDTLS_CCM_C
1358 scripts/config.py unset MBEDTLS_CHACHAPOLY_C
1359 # Enable CBC-legacy (controlled by MBEDTLS_CIPHER_MODE_CBC plus at least one block cipher (AES, ARIA, Camellia, DES))
1360 scripts/config.py set MBEDTLS_CIPHER_MODE_CBC
1361 # Disable CBC-EtM (controlled by the same as CBC-legacy plus MBEDTLS_SSL_ENCRYPT_THEN_MAC)
1362 scripts/config.py unset MBEDTLS_SSL_ENCRYPT_THEN_MAC
1363 # Disable stream (currently that's just the NULL pseudo-cipher (controlled by MBEDTLS_CIPHER_NULL_CIPHER))
1364 scripts/config.py unset MBEDTLS_CIPHER_NULL_CIPHER
1365 # Modules that depend on AEAD
1366 scripts/config.py unset MBEDTLS_SSL_CONTEXT_SERIALIZATION
Przemek Stekiel97d57402022-10-10 14:08:51 +02001367 scripts/config.py unset MBEDTLS_SSL_TICKET_C
Przemek Stekiele5352702022-10-05 11:37:54 +02001368
1369 make
1370
1371 msg "test: default with only CBC-legacy cipher"
1372 make test
1373
1374 msg "test: default with only CBC-legacy cipher - ssl-opt.sh (subset)"
1375 tests/ssl-opt.sh -f "TLS 1.2"
1376}
1377
1378component_test_tls1_2_deafult_cbc_legacy_cipher_only_use_psa () {
1379 msg "build: default with only CBC-legacy cipher use psa"
1380
1381 scripts/config.py set MBEDTLS_USE_PSA_CRYPTO
1382 # Disable AEAD (controlled by the presence of one of GCM_C, CCM_C, CHACHAPOLY_C)
1383 scripts/config.py unset MBEDTLS_GCM_C
1384 scripts/config.py unset MBEDTLS_CCM_C
1385 scripts/config.py unset MBEDTLS_CHACHAPOLY_C
1386 # Enable CBC-legacy (controlled by MBEDTLS_CIPHER_MODE_CBC plus at least one block cipher (AES, ARIA, Camellia, DES))
1387 scripts/config.py set MBEDTLS_CIPHER_MODE_CBC
1388 # Disable CBC-EtM (controlled by the same as CBC-legacy plus MBEDTLS_SSL_ENCRYPT_THEN_MAC)
1389 scripts/config.py unset MBEDTLS_SSL_ENCRYPT_THEN_MAC
1390 # Disable stream (currently that's just the NULL pseudo-cipher (controlled by MBEDTLS_CIPHER_NULL_CIPHER))
1391 scripts/config.py unset MBEDTLS_CIPHER_NULL_CIPHER
1392 # Modules that depend on AEAD
1393 scripts/config.py unset MBEDTLS_SSL_CONTEXT_SERIALIZATION
Przemek Stekiel97d57402022-10-10 14:08:51 +02001394 scripts/config.py unset MBEDTLS_SSL_TICKET_C
Przemek Stekiele5352702022-10-05 11:37:54 +02001395
1396 make
1397
1398 msg "test: default with only CBC-legacy cipher use psa"
1399 make test
1400
1401 msg "test: default with only CBC-legacy cipher use psa - ssl-opt.sh (subset)"
1402 tests/ssl-opt.sh -f "TLS 1.2"
1403}
1404
1405component_test_tls1_2_default_cbc_legacy_cbc_etm_cipher_only () {
1406 msg "build: default with only CBC-legacy and CBC-EtM ciphers"
1407
1408 # Disable AEAD (controlled by the presence of one of GCM_C, CCM_C, CHACHAPOLY_C)
1409 scripts/config.py unset MBEDTLS_GCM_C
1410 scripts/config.py unset MBEDTLS_CCM_C
1411 scripts/config.py unset MBEDTLS_CHACHAPOLY_C
1412 # Enable CBC-legacy (controlled by MBEDTLS_CIPHER_MODE_CBC plus at least one block cipher (AES, ARIA, Camellia, DES))
1413 scripts/config.py set MBEDTLS_CIPHER_MODE_CBC
1414 # Enable CBC-EtM (controlled by the same as CBC-legacy plus MBEDTLS_SSL_ENCRYPT_THEN_MAC)
1415 scripts/config.py set MBEDTLS_SSL_ENCRYPT_THEN_MAC
1416 # Disable stream (currently that's just the NULL pseudo-cipher (controlled by MBEDTLS_CIPHER_NULL_CIPHER))
1417 scripts/config.py unset MBEDTLS_CIPHER_NULL_CIPHER
1418 # Modules that depend on AEAD
1419 scripts/config.py unset MBEDTLS_SSL_CONTEXT_SERIALIZATION
Przemek Stekiel97d57402022-10-10 14:08:51 +02001420 scripts/config.py unset MBEDTLS_SSL_TICKET_C
Przemek Stekiele5352702022-10-05 11:37:54 +02001421
1422 make
1423
1424 msg "test: default with only CBC-legacy and CBC-EtM ciphers"
1425 make test
1426
1427 msg "test: default with only CBC-legacy and CBC-EtM ciphers - ssl-opt.sh (subset)"
1428 tests/ssl-opt.sh -f "TLS 1.2"
1429}
1430
1431component_test_tls1_2_default_cbc_legacy_cbc_etm_cipher_only_use_psa () {
1432 msg "build: default with only CBC-legacy and CBC-EtM ciphers use psa"
1433
1434 scripts/config.py set MBEDTLS_USE_PSA_CRYPTO
1435 # Disable AEAD (controlled by the presence of one of GCM_C, CCM_C, CHACHAPOLY_C)
1436 scripts/config.py unset MBEDTLS_GCM_C
1437 scripts/config.py unset MBEDTLS_CCM_C
1438 scripts/config.py unset MBEDTLS_CHACHAPOLY_C
1439 # Enable CBC-legacy (controlled by MBEDTLS_CIPHER_MODE_CBC plus at least one block cipher (AES, ARIA, Camellia, DES))
1440 scripts/config.py set MBEDTLS_CIPHER_MODE_CBC
1441 # Enable CBC-EtM (controlled by the same as CBC-legacy plus MBEDTLS_SSL_ENCRYPT_THEN_MAC)
1442 scripts/config.py set MBEDTLS_SSL_ENCRYPT_THEN_MAC
1443 # Disable stream (currently that's just the NULL pseudo-cipher (controlled by MBEDTLS_CIPHER_NULL_CIPHER))
1444 scripts/config.py unset MBEDTLS_CIPHER_NULL_CIPHER
1445 # Modules that depend on AEAD
1446 scripts/config.py unset MBEDTLS_SSL_CONTEXT_SERIALIZATION
Przemek Stekiel97d57402022-10-10 14:08:51 +02001447 scripts/config.py unset MBEDTLS_SSL_TICKET_C
Przemek Stekiele5352702022-10-05 11:37:54 +02001448
1449 make
1450
1451 msg "test: default with only CBC-legacy and CBC-EtM ciphers use psa"
1452 make test
1453
1454 msg "test: default with only CBC-legacy and CBC-EtM ciphers use psa - ssl-opt.sh (subset)"
1455 tests/ssl-opt.sh -f "TLS 1.2"
1456}
1457
Gilles Peskine636c26a2020-03-04 20:46:15 +01001458component_test_new_ecdh_context () {
1459 msg "build: new ECDH context (ASan build)" # ~ 6 min
1460 scripts/config.py unset MBEDTLS_ECDH_LEGACY_CONTEXT
1461 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
1462 make
1463
1464 msg "test: new ECDH context - main suites (inc. selftests) (ASan build)" # ~ 50s
1465 make test
1466
1467 msg "test: new ECDH context - ECDH-related part of ssl-opt.sh (ASan build)" # ~ 5s
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001468 tests/ssl-opt.sh -f ECDH
Gilles Peskine636c26a2020-03-04 20:46:15 +01001469
1470 msg "test: new ECDH context - compat.sh with some ECDH ciphersuites (ASan build)" # ~ 3 min
1471 # Exclude some symmetric ciphers that are redundant here to gain time.
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001472 tests/compat.sh -f ECDH -V NO -e 'ARCFOUR\|ARIA\|CAMELLIA\|CHACHA\|DES\|RC4'
Gilles Peskine636c26a2020-03-04 20:46:15 +01001473}
1474
1475component_test_everest () {
1476 msg "build: Everest ECDH context (ASan build)" # ~ 6 min
1477 scripts/config.py unset MBEDTLS_ECDH_LEGACY_CONTEXT
1478 scripts/config.py set MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED
1479 CC=clang cmake -D CMAKE_BUILD_TYPE:String=Asan .
1480 make
1481
1482 msg "test: Everest ECDH context - main suites (inc. selftests) (ASan build)" # ~ 50s
1483 make test
1484
1485 msg "test: Everest ECDH context - ECDH-related part of ssl-opt.sh (ASan build)" # ~ 5s
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001486 tests/ssl-opt.sh -f ECDH
Gilles Peskine636c26a2020-03-04 20:46:15 +01001487
1488 msg "test: Everest ECDH context - compat.sh with some ECDH ciphersuites (ASan build)" # ~ 3 min
1489 # Exclude some symmetric ciphers that are redundant here to gain time.
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001490 tests/compat.sh -f ECDH -V NO -e 'ARCFOUR\|ARIA\|CAMELLIA\|CHACHA\|DES\|RC4'
Gilles Peskine636c26a2020-03-04 20:46:15 +01001491}
1492
Gilles Peskined3beca92020-07-03 00:15:37 +02001493component_test_everest_curve25519_only () {
1494 msg "build: Everest ECDH context, only Curve25519" # ~ 6 min
1495 scripts/config.py unset MBEDTLS_ECDH_LEGACY_CONTEXT
1496 scripts/config.py set MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED
1497 scripts/config.py unset MBEDTLS_ECDSA_C
1498 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
1499 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
1500 # Disable all curves
1501 for c in $(sed -n 's/#define \(MBEDTLS_ECP_DP_[0-9A-Z_a-z]*_ENABLED\).*/\1/p' <"$CONFIG_H"); do
1502 scripts/config.py unset "$c"
1503 done
1504 scripts/config.py set MBEDTLS_ECP_DP_CURVE25519_ENABLED
1505
1506 make CFLAGS="$ASAN_CFLAGS -O2" LDFLAGS="$ASAN_CFLAGS"
1507
1508 msg "test: Everest ECDH context, only Curve25519" # ~ 50s
1509 make test
1510}
1511
Gilles Peskine8f073122018-11-27 15:58:47 +01001512component_test_small_ssl_out_content_len () {
1513 msg "build: small SSL_OUT_CONTENT_LEN (ASan build)"
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02001514 scripts/config.py set MBEDTLS_SSL_IN_CONTENT_LEN 16384
1515 scripts/config.py set MBEDTLS_SSL_OUT_CONTENT_LEN 4096
Gilles Peskine8f073122018-11-27 15:58:47 +01001516 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
1517 make
Hanno Beckerd5ba5ef2017-09-28 12:53:51 +01001518
Gilles Peskine8f073122018-11-27 15:58:47 +01001519 msg "test: small SSL_OUT_CONTENT_LEN - ssl-opt.sh MFL and large packet tests"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001520 tests/ssl-opt.sh -f "Max fragment\|Large packet"
Gilles Peskine8f073122018-11-27 15:58:47 +01001521}
Angus Grattonc4dd0732018-04-11 16:28:39 +10001522
Gilles Peskine8f073122018-11-27 15:58:47 +01001523component_test_small_ssl_in_content_len () {
1524 msg "build: small SSL_IN_CONTENT_LEN (ASan build)"
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02001525 scripts/config.py set MBEDTLS_SSL_IN_CONTENT_LEN 4096
1526 scripts/config.py set MBEDTLS_SSL_OUT_CONTENT_LEN 16384
Gilles Peskine8f073122018-11-27 15:58:47 +01001527 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
1528 make
Angus Grattonc4dd0732018-04-11 16:28:39 +10001529
Gilles Peskine8f073122018-11-27 15:58:47 +01001530 msg "test: small SSL_IN_CONTENT_LEN - ssl-opt.sh MFL tests"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001531 tests/ssl-opt.sh -f "Max fragment"
Gilles Peskine8f073122018-11-27 15:58:47 +01001532}
Angus Grattonc4dd0732018-04-11 16:28:39 +10001533
Gilles Peskine8f073122018-11-27 15:58:47 +01001534component_test_small_ssl_dtls_max_buffering () {
1535 msg "build: small MBEDTLS_SSL_DTLS_MAX_BUFFERING #0"
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02001536 scripts/config.py set MBEDTLS_SSL_DTLS_MAX_BUFFERING 1000
Gilles Peskine8f073122018-11-27 15:58:47 +01001537 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
1538 make
Angus Grattonc4dd0732018-04-11 16:28:39 +10001539
Gilles Peskine8f073122018-11-27 15:58:47 +01001540 msg "test: small MBEDTLS_SSL_DTLS_MAX_BUFFERING #0 - ssl-opt.sh specific reordering test"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001541 tests/ssl-opt.sh -f "DTLS reordering: Buffer out-of-order hs msg before reassembling next, free buffered msg"
Gilles Peskine8f073122018-11-27 15:58:47 +01001542}
Hanno Becker2f5aa4c2018-08-24 14:43:44 +01001543
Gilles Peskine8f073122018-11-27 15:58:47 +01001544component_test_small_mbedtls_ssl_dtls_max_buffering () {
1545 msg "build: small MBEDTLS_SSL_DTLS_MAX_BUFFERING #1"
Gilles Peskine636c26a2020-03-04 20:46:15 +01001546 scripts/config.py set MBEDTLS_SSL_DTLS_MAX_BUFFERING 190
Gilles Peskine8f073122018-11-27 15:58:47 +01001547 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
1548 make
Hanno Becker2f5aa4c2018-08-24 14:43:44 +01001549
Gilles Peskine8f073122018-11-27 15:58:47 +01001550 msg "test: small MBEDTLS_SSL_DTLS_MAX_BUFFERING #1 - ssl-opt.sh specific reordering test"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001551 tests/ssl-opt.sh -f "DTLS reordering: Buffer encrypted Finished message, drop for fragmented NewSessionTicket"
Gilles Peskine8f073122018-11-27 15:58:47 +01001552}
Hanno Becker2f5aa4c2018-08-24 14:43:44 +01001553
Gilles Peskine75cc7712019-09-06 19:47:17 +02001554component_test_psa_collect_statuses () {
1555 msg "build+test: psa_collect_statuses" # ~30s
Gilles Peskine3bdd4122019-07-27 23:52:53 +02001556 scripts/config.py full
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001557 tests/scripts/psa_collect_statuses.py
Gilles Peskine75cc7712019-09-06 19:47:17 +02001558 # Check that psa_crypto_init() succeeded at least once
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001559 grep -q '^0:psa_crypto_init:' tests/statuses.log
Gilles Peskine75cc7712019-09-06 19:47:17 +02001560 rm -f tests/statuses.log
1561}
1562
Gilles Peskine8f073122018-11-27 15:58:47 +01001563component_test_full_cmake_clang () {
1564 msg "build: cmake, full config, clang" # ~ 50s
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02001565 scripts/config.py full
Gilles Peskine83264be2022-10-30 21:02:40 +01001566 CC=clang CXX=clang cmake -D CMAKE_BUILD_TYPE:String=Release -D ENABLE_TESTING=On -D TEST_CPP=1 .
Gilles Peskine8f073122018-11-27 15:58:47 +01001567 make
Hanno Becker2f5aa4c2018-08-24 14:43:44 +01001568
k-stachowiak0291cb72019-06-26 15:52:12 +02001569 msg "test: main suites (full config, clang)" # ~ 5s
Gilles Peskine8f073122018-11-27 15:58:47 +01001570 make test
Manuel Pégourié-Gonnard3895f5a2014-03-27 14:44:04 +01001571
Gilles Peskine83264be2022-10-30 21:02:40 +01001572 msg "test: cpp_dummy_build (full config, clang)" # ~ 1s
1573 programs/test/cpp_dummy_build
1574
Gilles Peskine93aaf2e2019-06-14 18:27:03 +02001575 msg "program demos (full config, clang)" # ~10s
1576 tests/scripts/run_demos.py
1577
k-stachowiak0291cb72019-06-26 15:52:12 +02001578 msg "test: psa_constant_names (full config, clang)" # ~ 1s
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001579 tests/scripts/test_psa_constant_names.py
Gilles Peskine69e8f7f2020-02-26 19:51:43 +01001580
Gilles Peskine8f073122018-11-27 15:58:47 +01001581 msg "test: ssl-opt.sh default, ECJPAKE, SSL async (full config)" # ~ 1s
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001582 tests/ssl-opt.sh -f 'Default\|ECJPAKE\|SSL async private'
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +02001583
Gilles Peskinec67c3b32023-08-27 21:33:41 +02001584 msg "test: compat.sh RC4, 3DES & NULL (full config)" # ~ 2min
1585 tests/compat.sh -e '^$' -f 'NULL\|3DES\|DES-CBC3\|RC4\|ARCFOUR'
1586
1587 msg "test: compat.sh single-DES (full config)" # ~ 30s
1588 env OPENSSL="$OPENSSL_LEGACY" tests/compat.sh -e '3DES\|DES-CBC3' -f 'DES'
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +02001589
Gilles Peskine8f073122018-11-27 15:58:47 +01001590 msg "test: compat.sh ARIA + ChachaPoly"
Manuel Pégourié-Gonnard89d40272022-12-19 11:42:12 +01001591 env OPENSSL="$OPENSSL_NEXT" tests/compat.sh -e '^$' -f 'ARIA\|CHACHA'
Gilles Peskine8f073122018-11-27 15:58:47 +01001592}
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +02001593
Gilles Peskine9603a442022-11-29 16:01:41 +01001594skip_suites_without_constant_flow () {
1595 # Skip the test suites that don't have any constant-flow annotations.
1596 # This will need to be adjusted if we ever start declaring things as
1597 # secret from macros or functions inside tests/include or tests/src.
1598 SKIP_TEST_SUITES=$(
1599 git -C tests/suites grep -L TEST_CF_ 'test_suite_*.function' |
1600 sed 's/test_suite_//; s/\.function$//' |
1601 tr '\n' ,)
1602 export SKIP_TEST_SUITES
1603}
1604
Manuel Pégourié-Gonnard6240def2020-07-10 09:35:54 +02001605component_test_memsan_constant_flow () {
Manuel Pégourié-Gonnard0b2112d2020-07-22 11:09:28 +02001606 # This tests both (1) accesses to undefined memory, and (2) branches or
1607 # memory access depending on secret values. To distinguish between those:
1608 # - unset MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN - does the failure persist?
1609 # - or alternatively, change the build type to MemSanDbg, which enables
1610 # origin tracking and nicer stack traces (which are useful for debugging
1611 # anyway), and check if the origin was TEST_CF_SECRET() or something else.
1612 msg "build: cmake MSan (clang), full config with constant flow testing"
Manuel Pégourié-Gonnard6240def2020-07-10 09:35:54 +02001613 scripts/config.py full
1614 scripts/config.py set MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN
1615 scripts/config.py unset MBEDTLS_AESNI_C # memsan doesn't grok asm
1616 CC=clang cmake -D CMAKE_BUILD_TYPE:String=MemSan .
1617 make
1618
Manuel Pégourié-Gonnard0b2112d2020-07-22 11:09:28 +02001619 msg "test: main suites (Msan + constant flow)"
Manuel Pégourié-Gonnard6240def2020-07-10 09:35:54 +02001620 make test
1621}
1622
Manuel Pégourié-Gonnard73afa372020-08-19 10:27:38 +02001623component_test_valgrind_constant_flow () {
1624 # This tests both (1) everything that valgrind's memcheck usually checks
1625 # (heap buffer overflows, use of uninitialized memory, use-after-free,
1626 # etc.) and (2) branches or memory access depending on secret values,
1627 # which will be reported as uninitialized memory. To distinguish between
1628 # secret and actually uninitialized:
1629 # - unset MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND - does the failure persist?
1630 # - or alternatively, build with debug info and manually run the offending
1631 # test suite with valgrind --track-origins=yes, then check if the origin
1632 # was TEST_CF_SECRET() or something else.
1633 msg "build: cmake release GCC, full config with constant flow testing"
1634 scripts/config.py full
1635 scripts/config.py set MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND
Gilles Peskine9603a442022-11-29 16:01:41 +01001636 skip_suites_without_constant_flow
Manuel Pégourié-Gonnard73afa372020-08-19 10:27:38 +02001637 cmake -D CMAKE_BUILD_TYPE:String=Release .
1638 make
1639
1640 # this only shows a summary of the results (how many of each type)
1641 # details are left in Testing/<date>/DynamicAnalysis.xml
Gilles Peskine9603a442022-11-29 16:01:41 +01001642 msg "test: some suites (valgrind + constant flow)"
Manuel Pégourié-Gonnard73afa372020-08-19 10:27:38 +02001643 make memcheck
1644}
1645
Gilles Peskine1093d9f2020-04-13 01:03:21 +02001646component_test_default_no_deprecated () {
Gilles Peskine8386ea22020-04-30 09:07:29 +02001647 # Test that removing the deprecated features from the default
1648 # configuration leaves something consistent.
Gilles Peskine1093d9f2020-04-13 01:03:21 +02001649 msg "build: make, default + MBEDTLS_DEPRECATED_REMOVED" # ~ 30s
1650 scripts/config.py set MBEDTLS_DEPRECATED_REMOVED
1651 make CC=gcc CFLAGS='-O -Werror -Wall -Wextra'
1652
1653 msg "test: make, default + MBEDTLS_DEPRECATED_REMOVED" # ~ 5s
1654 make test
1655}
1656
1657component_test_full_no_deprecated () {
Gilles Peskine30de2e82020-04-20 21:39:22 +02001658 msg "build: make, full_no_deprecated config" # ~ 30s
1659 scripts/config.py full_no_deprecated
Gilles Peskine1093d9f2020-04-13 01:03:21 +02001660 make CC=gcc CFLAGS='-O -Werror -Wall -Wextra'
1661
Gilles Peskine30de2e82020-04-20 21:39:22 +02001662 msg "test: make, full_no_deprecated config" # ~ 5s
Gilles Peskine1093d9f2020-04-13 01:03:21 +02001663 make test
1664}
1665
Gilles Peskine8386ea22020-04-30 09:07:29 +02001666component_test_full_no_deprecated_deprecated_warning () {
1667 # Test that there is nothing deprecated in "full_no_deprecated".
1668 # A deprecated feature would trigger a warning (made fatal) from
1669 # MBEDTLS_DEPRECATED_WARNING.
Gilles Peskine30de2e82020-04-20 21:39:22 +02001670 msg "build: make, full_no_deprecated config, MBEDTLS_DEPRECATED_WARNING" # ~ 30s
1671 scripts/config.py full_no_deprecated
Gilles Peskine1093d9f2020-04-13 01:03:21 +02001672 scripts/config.py unset MBEDTLS_DEPRECATED_REMOVED
1673 scripts/config.py set MBEDTLS_DEPRECATED_WARNING
1674 make CC=gcc CFLAGS='-O -Werror -Wall -Wextra'
1675
Gilles Peskine30de2e82020-04-20 21:39:22 +02001676 msg "test: make, full_no_deprecated config, MBEDTLS_DEPRECATED_WARNING" # ~ 5s
Gilles Peskine1093d9f2020-04-13 01:03:21 +02001677 make test
1678}
1679
Gilles Peskine8386ea22020-04-30 09:07:29 +02001680component_test_full_deprecated_warning () {
1681 # Test that when MBEDTLS_DEPRECATED_WARNING is enabled, the build passes
1682 # with only certain whitelisted types of warnings.
Gilles Peskine1093d9f2020-04-13 01:03:21 +02001683 msg "build: make, full config + MBEDTLS_DEPRECATED_WARNING, expect warnings" # ~ 30s
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02001684 scripts/config.py full
1685 scripts/config.py set MBEDTLS_DEPRECATED_WARNING
Gilles Peskine1093d9f2020-04-13 01:03:21 +02001686 # Expect warnings from '#warning' directives in check_config.h.
1687 make CC=gcc CFLAGS='-O -Werror -Wall -Wextra -Wno-error=cpp' lib programs
Manuel Pégourié-Gonnard6b368922018-02-20 12:02:07 +01001688
Gilles Peskine8386ea22020-04-30 09:07:29 +02001689 msg "build: make tests, full config + MBEDTLS_DEPRECATED_WARNING, expect warnings" # ~ 30s
1690 # Set MBEDTLS_TEST_DEPRECATED to enable tests for deprecated features.
1691 # By default those are disabled when MBEDTLS_DEPRECATED_WARNING is set.
Gilles Peskine1093d9f2020-04-13 01:03:21 +02001692 # Expect warnings from '#warning' directives in check_config.h and
1693 # from the use of deprecated functions in test suites.
1694 make CC=gcc CFLAGS='-O -Werror -Wall -Wextra -Wno-error=deprecated-declarations -Wno-error=cpp -DMBEDTLS_TEST_DEPRECATED' tests
Gilles Peskine841b14b2019-11-26 17:37:37 +01001695
Gilles Peskine1093d9f2020-04-13 01:03:21 +02001696 msg "test: full config + MBEDTLS_TEST_DEPRECATED" # ~ 30s
1697 make test
Gilles Peskine93aaf2e2019-06-14 18:27:03 +02001698
1699 msg "program demos: full config + MBEDTLS_TEST_DEPRECATED" # ~10s
1700 tests/scripts/run_demos.py
Gilles Peskine8f073122018-11-27 15:58:47 +01001701}
Jaeden Ameroed93bdc2018-11-02 16:57:24 +00001702
Gilles Peskineec541fe2020-01-31 14:24:14 +01001703# Check that the specified libraries exist and are empty.
1704are_empty_libraries () {
1705 nm "$@" >/dev/null 2>/dev/null
1706 ! nm "$@" 2>/dev/null | grep -v ':$' | grep .
1707}
1708
1709component_build_crypto_default () {
1710 msg "build: make, crypto only"
1711 scripts/config.py crypto
Gilles Peskine6bb39152020-02-03 11:59:20 +01001712 make CFLAGS='-O1 -Werror'
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001713 are_empty_libraries library/libmbedx509.* library/libmbedtls.*
Gilles Peskineec541fe2020-01-31 14:24:14 +01001714}
1715
1716component_build_crypto_full () {
1717 msg "build: make, crypto only, full config"
1718 scripts/config.py crypto_full
Gilles Peskine6bb39152020-02-03 11:59:20 +01001719 make CFLAGS='-O1 -Werror'
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001720 are_empty_libraries library/libmbedx509.* library/libmbedtls.*
Gilles Peskineec541fe2020-01-31 14:24:14 +01001721}
1722
Gilles Peskine8df27482022-10-21 19:34:54 +02001723component_test_crypto_for_psa_service () {
Gilles Peskine21503df2022-10-11 21:05:06 +02001724 msg "build: make, config for PSA crypto service"
1725 scripts/config.py crypto
1726 scripts/config.py set MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER
1727 # Disable things that are not needed for just cryptography, to
1728 # reach a configuration that would be typical for a PSA cryptography
1729 # service providing all implemented PSA algorithms.
1730 # System stuff
1731 scripts/config.py unset MBEDTLS_ERROR_C
1732 scripts/config.py unset MBEDTLS_TIMING_C
Gilles Peskine031c8c22022-10-25 21:09:49 +02001733 scripts/config.py unset MBEDTLS_VERSION_FEATURES
Gilles Peskine21503df2022-10-11 21:05:06 +02001734 # Crypto stuff with no PSA interface
1735 scripts/config.py unset MBEDTLS_BASE64_C
Gilles Peskine031c8c22022-10-25 21:09:49 +02001736 scripts/config.py unset MBEDTLS_BLOWFISH_C
1737 # Keep MBEDTLS_CIPHER_C because psa_crypto_cipher, CCM and GCM need it.
1738 # Keep MBEDTLS_MD_C because RSA and ECDSA need it, also HMAC_DRBG which
1739 # is needed for deterministic ECDSA.
1740 scripts/config.py unset MBEDTLS_ECJPAKE_C
1741 scripts/config.py unset MBEDTLS_HKDF_C # PSA's HKDF is independent
Gilles Peskine21503df2022-10-11 21:05:06 +02001742 scripts/config.py unset MBEDTLS_NIST_KW_C
1743 scripts/config.py unset MBEDTLS_PEM_PARSE_C
1744 scripts/config.py unset MBEDTLS_PEM_WRITE_C
1745 scripts/config.py unset MBEDTLS_PKCS12_C
1746 scripts/config.py unset MBEDTLS_PKCS5_C
Gilles Peskine031c8c22022-10-25 21:09:49 +02001747 # We keep MBEDTLS_PK_{,PARSE,WRITE}_C because PSA with RSA needs it.
1748 scripts/config.py unset MBEDTLS_XTEA_C
Gilles Peskine21503df2022-10-11 21:05:06 +02001749 make CFLAGS='-O1 -Werror' all test
1750 are_empty_libraries library/libmbedx509.* library/libmbedtls.*
1751}
1752
Gilles Peskineec541fe2020-01-31 14:24:14 +01001753component_build_crypto_baremetal () {
1754 msg "build: make, crypto only, baremetal config"
1755 scripts/config.py crypto_baremetal
David Horstmann3cb5e9b2021-11-30 11:40:54 +00001756 make CFLAGS="-O1 -Werror -I$PWD/tests/include/baremetal-override/"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001757 are_empty_libraries library/libmbedx509.* library/libmbedtls.*
Gilles Peskineec541fe2020-01-31 14:24:14 +01001758}
Daniel Axtens6f63cc72020-09-02 21:30:13 +10001759support_build_crypto_baremetal () {
Daniel Axtens1a021af2020-08-31 14:22:58 +10001760 support_build_baremetal "$@"
1761}
1762
1763component_build_baremetal () {
1764 msg "build: make, baremetal config"
1765 scripts/config.py baremetal
David Horstmann3cb5e9b2021-11-30 11:40:54 +00001766 make CFLAGS="-O1 -Werror -I$PWD/tests/include/baremetal-override/"
Daniel Axtens1a021af2020-08-31 14:22:58 +10001767}
1768support_build_baremetal () {
Daniel Axtens6f63cc72020-09-02 21:30:13 +10001769 # Older Glibc versions include time.h from other headers such as stdlib.h,
1770 # which makes the no-time.h-in-baremetal check fail. Ubuntu 16.04 has this
1771 # problem, Ubuntu 18.04 is ok.
1772 ! grep -q -F time.h /usr/include/x86_64-linux-gnu/sys/types.h
1773}
Gilles Peskineec541fe2020-01-31 14:24:14 +01001774
Andrzej Kurek20d8a5f2022-10-24 10:49:22 -04001775# depends.py family of tests
Andrzej Kurek85d69302022-10-05 09:14:07 -04001776component_test_depends_py_cipher_id () {
1777 msg "test/build: depends.py cipher_id (gcc)"
Andrzej Kurek20d8a5f2022-10-24 10:49:22 -04001778 tests/scripts/depends.py cipher_id --unset-use-psa
Gilles Peskine8f073122018-11-27 15:58:47 +01001779}
Jaeden Ameroacaabe72018-11-07 11:52:52 +00001780
Andrzej Kurek85d69302022-10-05 09:14:07 -04001781component_test_depends_py_cipher_chaining () {
1782 msg "test/build: depends.py cipher_chaining (gcc)"
Andrzej Kurek20d8a5f2022-10-24 10:49:22 -04001783 tests/scripts/depends.py cipher_chaining --unset-use-psa
John Durkopc14be902020-08-20 06:16:41 -07001784}
1785
Andrzej Kurek85d69302022-10-05 09:14:07 -04001786component_test_depends_py_cipher_padding () {
1787 msg "test/build: depends.py cipher_padding (gcc)"
Andrzej Kurek20d8a5f2022-10-24 10:49:22 -04001788 tests/scripts/depends.py cipher_padding --unset-use-psa
Gilles Peskine8f073122018-11-27 15:58:47 +01001789}
Jaeden Ameroacaabe72018-11-07 11:52:52 +00001790
Andrzej Kurek85d69302022-10-05 09:14:07 -04001791component_test_depends_py_curves () {
1792 msg "test/build: depends.py curves (gcc)"
Andrzej Kurek20d8a5f2022-10-24 10:49:22 -04001793 tests/scripts/depends.py curves --unset-use-psa
John Durkop2ec2eaa2020-08-24 18:29:15 -07001794}
1795
Andrzej Kurek85d69302022-10-05 09:14:07 -04001796component_test_depends_py_hashes () {
1797 msg "test/build: depends.py hashes (gcc)"
Andrzej Kurek20d8a5f2022-10-24 10:49:22 -04001798 tests/scripts/depends.py hashes --unset-use-psa
Gilles Peskine8f073122018-11-27 15:58:47 +01001799}
Manuel Pégourié-Gonnard655c0a82018-10-30 11:20:45 +01001800
Andrzej Kurek85d69302022-10-05 09:14:07 -04001801component_test_depends_py_kex () {
1802 msg "test/build: depends.py kex (gcc)"
Andrzej Kurek20d8a5f2022-10-24 10:49:22 -04001803 tests/scripts/depends.py kex --unset-use-psa
Manuel Pégourié-Gonnard655c0a82018-10-30 11:20:45 +01001804}
1805
Andrzej Kurek85d69302022-10-05 09:14:07 -04001806component_test_depends_py_pkalgs () {
1807 msg "test/build: depends.py pkalgs (gcc)"
Andrzej Kurek20d8a5f2022-10-24 10:49:22 -04001808 tests/scripts/depends.py pkalgs --unset-use-psa
1809}
1810
1811# PSA equivalents of the depends.py tests
1812component_test_depends_py_cipher_id_psa () {
1813 msg "test/build: depends.py cipher_id (gcc) with MBEDTLS_USE_PSA_CRYPTO defined"
1814 tests/scripts/depends.py cipher_id
1815}
1816
1817component_test_depends_py_cipher_chaining_psa () {
1818 msg "test/build: depends.py cipher_chaining (gcc) with MBEDTLS_USE_PSA_CRYPTO defined"
1819 tests/scripts/depends.py cipher_chaining
1820}
1821
1822component_test_depends_py_cipher_padding_psa () {
1823 msg "test/build: depends.py cipher_padding (gcc) with MBEDTLS_USE_PSA_CRYPTO defined"
1824 tests/scripts/depends.py cipher_padding
1825}
1826
1827component_test_depends_py_curves_psa () {
1828 msg "test/build: depends.py curves (gcc) with MBEDTLS_USE_PSA_CRYPTO defined"
1829 tests/scripts/depends.py curves
1830}
1831
1832component_test_depends_py_hashes_psa () {
1833 msg "test/build: depends.py hashes (gcc) with MBEDTLS_USE_PSA_CRYPTO defined"
1834 tests/scripts/depends.py hashes
1835}
1836
1837component_test_depends_py_kex_psa () {
1838 msg "test/build: depends.py kex (gcc) with MBEDTLS_USE_PSA_CRYPTO defined"
1839 tests/scripts/depends.py kex
1840}
1841
1842component_test_depends_py_pkalgs_psa () {
1843 msg "test/build: depends.py pkalgs (gcc) with MBEDTLS_USE_PSA_CRYPTO defined"
Andrzej Kurek85d69302022-10-05 09:14:07 -04001844 tests/scripts/depends.py pkalgs
Gilles Peskine8f073122018-11-27 15:58:47 +01001845}
Manuel Pégourié-Gonnard655c0a82018-10-30 11:20:45 +01001846
Dave Rodgman5fce4f62023-01-20 13:18:05 +00001847component_build_no_pk_rsa_alt_support () {
1848 msg "build: !MBEDTLS_PK_RSA_ALT_SUPPORT" # ~30s
1849
1850 scripts/config.py full
1851 scripts/config.py unset MBEDTLS_PK_RSA_ALT_SUPPORT
1852 scripts/config.py set MBEDTLS_RSA_C
1853 scripts/config.py set MBEDTLS_X509_CRT_WRITE_C
1854
1855 # Only compile - this is primarily to test for compile issues
1856 make CC=gcc CFLAGS='-Werror -Wall -Wextra -I../tests/include/alt-dummy'
1857}
1858
Manuel Pégourié-Gonnard971dea32019-02-01 12:38:40 +01001859component_test_no_use_psa_crypto_full_cmake_asan() {
1860 # full minus MBEDTLS_USE_PSA_CRYPTO: run the same set of tests as basic-build-test.sh
Gilles Peskinedc3a1792019-09-03 11:42:04 +02001861 msg "build: cmake, full config minus MBEDTLS_USE_PSA_CRYPTO, ASan"
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02001862 scripts/config.py full
1863 scripts/config.py set MBEDTLS_ECP_RESTARTABLE # not using PSA, so enable restartable ECC
1864 scripts/config.py unset MBEDTLS_PSA_CRYPTO_C
1865 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
1866 scripts/config.py unset MBEDTLS_PSA_ITS_FILE_C
Gilles Peskinedc6d8382020-04-12 14:21:55 +02001867 scripts/config.py unset MBEDTLS_PSA_CRYPTO_SE_C
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02001868 scripts/config.py unset MBEDTLS_PSA_CRYPTO_STORAGE_C
Manuel Pégourié-Gonnardd8167e82019-02-01 11:12:52 +01001869 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
Andrzej Kurekde5a0072019-02-01 07:03:03 -05001870 make
Manuel Pégourié-Gonnard43be6cd2017-06-20 09:53:42 +02001871
Manuel Pégourié-Gonnard971dea32019-02-01 12:38:40 +01001872 msg "test: main suites (full minus MBEDTLS_USE_PSA_CRYPTO)"
Andrzej Kurekde5a0072019-02-01 07:03:03 -05001873 make test
Manuel Pégourié-Gonnard503a5ef2015-10-23 09:04:45 +02001874
Manuel Pégourié-Gonnard971dea32019-02-01 12:38:40 +01001875 msg "test: ssl-opt.sh (full minus MBEDTLS_USE_PSA_CRYPTO)"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001876 tests/ssl-opt.sh
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +01001877
Manuel Pégourié-Gonnard971dea32019-02-01 12:38:40 +01001878 msg "test: compat.sh default (full minus MBEDTLS_USE_PSA_CRYPTO)"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02001879 tests/compat.sh
Andrzej Kurek991f9fe2018-07-02 09:08:21 -04001880
Gilles Peskinec67c3b32023-08-27 21:33:41 +02001881 msg "test: compat.sh RC4, 3DES & NULL (full minus MBEDTLS_USE_PSA_CRYPTO)"
1882 tests/compat.sh -e '^$' -f 'NULL\|3DES\|DES-CBC3\|RC4\|ARCFOUR'
1883
1884 msg "test: compat.sh single-DES (full minus MBEDTLS_USE_PSA_CRYPTO)"
1885 env OPENSSL="$OPENSSL_LEGACY" tests/compat.sh -e '3DES\|DES-CBC3' -f 'DES'
Andrzej Kurekc470b6b2019-01-31 08:20:20 -05001886
Manuel Pégourié-Gonnard971dea32019-02-01 12:38:40 +01001887 msg "test: compat.sh ARIA + ChachaPoly (full minus MBEDTLS_USE_PSA_CRYPTO)"
Manuel Pégourié-Gonnard89d40272022-12-19 11:42:12 +01001888 env OPENSSL="$OPENSSL_NEXT" tests/compat.sh -e '^$' -f 'ARIA\|CHACHA'
Andrzej Kurekde5a0072019-02-01 07:03:03 -05001889}
Andrzej Kurekc470b6b2019-01-31 08:20:20 -05001890
Ronald Crond2c53e62021-09-13 09:38:05 +02001891component_test_psa_crypto_config_accel_ecdsa () {
1892 msg "test: MBEDTLS_PSA_CRYPTO_CONFIG with accelerated ECDSA"
1893
1894 # Disable ALG_STREAM_CIPHER and ALG_ECB_NO_PADDING to avoid having
1895 # partial support for cipher operations in the driver test library.
1896 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_STREAM_CIPHER
1897 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_ECB_NO_PADDING
Gilles Peskine62de7672022-04-21 11:05:16 +02001898 # Disable obsolete hashes (alternatively we could enable support for them
1899 # in the driver test library).
1900 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD2
1901 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD4
Ronald Crond2c53e62021-09-13 09:38:05 +02001902
1903 # SHA384 needed for some ECDSA signature tests.
1904 scripts/config.py -f tests/include/test/drivers/config_test_driver.h set MBEDTLS_SHA512_C
1905
1906 loc_accel_list="ALG_ECDSA ALG_DETERMINISTIC_ECDSA KEY_TYPE_ECC_KEY_PAIR KEY_TYPE_ECC_PUBLIC_KEY"
1907 loc_accel_flags=$( echo "$loc_accel_list" | sed 's/[^ ]* */-DLIBTESTDRIVER1_MBEDTLS_PSA_ACCEL_&/g' )
1908 make -C tests libtestdriver1.a CFLAGS="$ASAN_CFLAGS $loc_accel_flags" LDFLAGS="$ASAN_CFLAGS"
1909
1910 # Restore test driver base configuration
1911 scripts/config.py -f tests/include/test/drivers/config_test_driver.h unset MBEDTLS_SHA512_C
1912
1913 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
1914 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
1915 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
1916 scripts/config.py unset MBEDTLS_ECDSA_C
1917 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
1918 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
1919
1920 loc_accel_flags="$loc_accel_flags $( echo "$loc_accel_list" | sed 's/[^ ]* */-DMBEDTLS_PSA_ACCEL_&/g' )"
1921 make CFLAGS="$ASAN_CFLAGS -O -Werror -I../tests/include -I../tests -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_TEST_LIBTESTDRIVER1 $loc_accel_flags" LDFLAGS="-ltestdriver1 $ASAN_CFLAGS"
1922
Gilles Peskined4c5c3d2022-02-04 00:30:54 +01001923 not grep mbedtls_ecdsa_ library/ecdsa.o
Ronald Crond2c53e62021-09-13 09:38:05 +02001924
1925 msg "test: MBEDTLS_PSA_CRYPTO_CONFIG with accelerated ECDSA"
1926 make test
1927}
1928
1929component_test_psa_crypto_config_accel_rsa_signature () {
1930 msg "test: MBEDTLS_PSA_CRYPTO_CONFIG with accelerated RSA signature"
1931
1932 # Disable ALG_STREAM_CIPHER and ALG_ECB_NO_PADDING to avoid having
1933 # partial support for cipher operations in the driver test library.
1934 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_STREAM_CIPHER
1935 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_ECB_NO_PADDING
1936
1937 # It seems it is not possible to remove only the support for RSA signature
1938 # in the library. Thus we have to remove all RSA support (signature and
1939 # encryption/decryption). AS there is no driver support for asymmetric
1940 # encryption/decryption so far remove RSA encryption/decryption from the
1941 # application algorithm list.
1942 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RSA_OAEP
1943 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RSA_PKCS1V15_CRYPT
1944
1945 # Make sure both the library and the test library support the SHA hash
1946 # algorithms and only those ones (SHA256 is included by default). That way:
1947 # - the test library can compute the RSA signatures even in the case of a
1948 # composite RSA signature algorithm based on a SHA hash (no other hash
1949 # used in the unit tests).
1950 # - the dependency of RSA signature tests on PSA_WANT_ALG_SHA_xyz is
1951 # fulfilled as the hash SHA algorithm is supported by the library, and
1952 # thus the tests are run, not skipped.
1953 # - when testing a signature key with an algorithm wildcard built from
1954 # PSA_ALG_ANY_HASH as algorithm to test with the key, the chosen hash
1955 # algorithm based on the hashes supported by the library is also
1956 # supported by the test library.
1957 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD2
1958 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD4
1959 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD5
1960 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RIPEMD160_C
1961
1962 scripts/config.py -f tests/include/test/drivers/config_test_driver.h set MBEDTLS_SHA1_C
1963 scripts/config.py -f tests/include/test/drivers/config_test_driver.h set MBEDTLS_SHA512_C
1964 # We need PEM parsing in the test library as well to support the import
1965 # of PEM encoded RSA keys.
1966 scripts/config.py -f tests/include/test/drivers/config_test_driver.h set MBEDTLS_PEM_PARSE_C
1967 scripts/config.py -f tests/include/test/drivers/config_test_driver.h set MBEDTLS_BASE64_C
1968
1969 loc_accel_list="ALG_RSA_PKCS1V15_SIGN ALG_RSA_PSS KEY_TYPE_RSA_KEY_PAIR KEY_TYPE_RSA_PUBLIC_KEY"
1970 loc_accel_flags=$( echo "$loc_accel_list" | sed 's/[^ ]* */-DLIBTESTDRIVER1_MBEDTLS_PSA_ACCEL_&/g' )
1971 make -C tests libtestdriver1.a CFLAGS="$ASAN_CFLAGS $loc_accel_flags" LDFLAGS="$ASAN_CFLAGS"
1972
1973 # Restore test driver base configuration
1974 scripts/config.py -f tests/include/test/drivers/config_test_driver.h unset MBEDTLS_SHA1_C
1975 scripts/config.py -f tests/include/test/drivers/config_test_driver.h unset MBEDTLS_SHA512_C
1976 scripts/config.py -f tests/include/test/drivers/config_test_driver.h unset MBEDTLS_PEM_PARSE_C
1977 scripts/config.py -f tests/include/test/drivers/config_test_driver.h unset MBEDTLS_BASE64_C
1978
1979
1980 # Mbed TLS library build
1981 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
1982 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
1983
1984 # Remove RSA support and its dependencies
1985 scripts/config.py unset MBEDTLS_PKCS1_V15
1986 scripts/config.py unset MBEDTLS_PKCS1_V21
1987 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED
1988 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED
1989 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED
1990 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED
1991 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_RSA_ENABLED
1992 scripts/config.py unset MBEDTLS_RSA_C
1993 scripts/config.py unset MBEDTLS_X509_RSASSA_PSS_SUPPORT
1994
1995 scripts/config.py unset MBEDTLS_MD2_C
1996 scripts/config.py unset MBEDTLS_MD4_C
1997 scripts/config.py unset MBEDTLS_MD5_C
1998 scripts/config.py unset MBEDTLS_RIPEMD160_C
1999 scripts/config.py unset MBEDTLS_SSL_PROTO_TLS1
2000 scripts/config.py unset MBEDTLS_SSL_PROTO_TLS1_1
2001 scripts/config.py unset MBEDTLS_SSL_CBC_RECORD_SPLITTING
2002
2003 loc_accel_flags="$loc_accel_flags $( echo "$loc_accel_list" | sed 's/[^ ]* */-DMBEDTLS_PSA_ACCEL_&/g' )"
2004 make CFLAGS="$ASAN_CFLAGS -Werror -I../tests/include -I../tests -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_TEST_LIBTESTDRIVER1 $loc_accel_flags" LDFLAGS="-ltestdriver1 $ASAN_CFLAGS"
2005
Gilles Peskined4c5c3d2022-02-04 00:30:54 +01002006 not grep mbedtls_rsa_rsassa_pkcs1_v15_sign library/rsa.o
2007 not grep mbedtls_rsa_rsassa_pss_sign_ext library/rsa.o
Ronald Crond2c53e62021-09-13 09:38:05 +02002008
2009 msg "test: MBEDTLS_PSA_CRYPTO_CONFIG with accelerated RSA signature"
2010 make test
2011}
2012
Ronald Cronf7e483c2021-05-08 14:32:59 +02002013component_test_psa_crypto_config_accel_hash () {
2014 msg "test: MBEDTLS_PSA_CRYPTO_CONFIG with accelerated hash"
2015
2016 # Disable ALG_STREAM_CIPHER and ALG_ECB_NO_PADDING to avoid having
2017 # partial support for cipher operations in the driver test library.
2018 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_STREAM_CIPHER
2019 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_ECB_NO_PADDING
2020
2021 loc_accel_list="ALG_MD4 ALG_MD5 ALG_RIPEMD160 ALG_SHA_1 ALG_SHA_224 ALG_SHA_256 ALG_SHA_384 ALG_SHA_512"
2022 loc_accel_flags=$( echo "$loc_accel_list" | sed 's/[^ ]* */-DLIBTESTDRIVER1_MBEDTLS_PSA_ACCEL_&/g' )
2023 make -C tests libtestdriver1.a CFLAGS="$ASAN_CFLAGS $loc_accel_flags" LDFLAGS="$ASAN_CFLAGS"
2024
2025 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2026 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2027 scripts/config.py unset MBEDTLS_MD2_C
2028 scripts/config.py unset MBEDTLS_MD4_C
2029 scripts/config.py unset MBEDTLS_MD5_C
2030 scripts/config.py unset MBEDTLS_RIPEMD160_C
2031 scripts/config.py unset MBEDTLS_SHA1_C
2032 # Don't unset MBEDTLS_SHA256_C as it is needed by PSA crypto core.
2033 scripts/config.py unset MBEDTLS_SHA512_C
2034 # Unset MBEDTLS_SSL_PROTO_SSL3, MBEDTLS_SSL_PROTO_TLS1 and MBEDTLS_SSL_PROTO_TLS1_1 as they depend on MBEDTLS_SHA1_C
2035 scripts/config.py unset MBEDTLS_SSL_PROTO_SSL3
2036 scripts/config.py unset MBEDTLS_SSL_PROTO_TLS1
2037 scripts/config.py unset MBEDTLS_SSL_PROTO_TLS1_1
2038 # Unset MBEDTLS_SSL_CBC_RECORD_SPLITTING as it depends on MBEDTLS_SSL_PROTO_TLS1 in the default configuration.
2039 scripts/config.py unset MBEDTLS_SSL_CBC_RECORD_SPLITTING
2040 loc_accel_flags="$loc_accel_flags $( echo "$loc_accel_list" | sed 's/[^ ]* */-DMBEDTLS_PSA_ACCEL_&/g' )"
2041 make CFLAGS="$ASAN_CFLAGS -Werror -I../tests/include -I../tests -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_TEST_LIBTESTDRIVER1 $loc_accel_flags" LDFLAGS="-ltestdriver1 $ASAN_CFLAGS"
2042
Gilles Peskined4c5c3d2022-02-04 00:30:54 +01002043 not grep mbedtls_sha512_init library/sha512.o
2044 not grep mbedtls_sha1_init library/sha1.o
Ronald Cronf7e483c2021-05-08 14:32:59 +02002045
2046 msg "test: MBEDTLS_PSA_CRYPTO_CONFIG with accelerated hash"
2047 make test
2048}
2049
Ronald Cron09623702021-10-18 11:26:01 +02002050component_test_psa_crypto_config_accel_cipher () {
2051 msg "test: MBEDTLS_PSA_CRYPTO_CONFIG with accelerated cipher"
2052
Gilles Peskine186331872022-04-12 15:58:03 +02002053 # This test case focuses on cipher+AEAD. We don't yet support all
2054 # combinations of configurations, so deactivate block-cipher-based MACs.
2055 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_CMAC
2056
Ronald Cron09623702021-10-18 11:26:01 +02002057 loc_accel_list="ALG_CBC_NO_PADDING ALG_CBC_PKCS7 ALG_CTR ALG_CFB ALG_OFB ALG_XTS KEY_TYPE_DES"
2058 loc_accel_flags=$( echo "$loc_accel_list" | sed 's/[^ ]* */-DLIBTESTDRIVER1_MBEDTLS_PSA_ACCEL_&/g' )
2059 make -C tests libtestdriver1.a CFLAGS="$ASAN_CFLAGS $loc_accel_flags" LDFLAGS="$ASAN_CFLAGS"
2060
2061 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2062 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2063
2064 # There is no intended accelerator support for ALG STREAM_CIPHER and
2065 # ALG_ECB_NO_PADDING. Therefore, asking for them in the build implies the
2066 # inclusion of the Mbed TLS cipher operations. As we want to test here with
2067 # cipher operations solely supported by accelerators, disabled those
2068 # PSA configuration options.
2069 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_STREAM_CIPHER
2070 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_ECB_NO_PADDING
Ronald Cron09623702021-10-18 11:26:01 +02002071
2072 scripts/config.py unset MBEDTLS_CIPHER_MODE_CBC
2073 scripts/config.py unset MBEDTLS_CIPHER_PADDING_PKCS7
2074 scripts/config.py unset MBEDTLS_CIPHER_MODE_CTR
2075 scripts/config.py unset MBEDTLS_CIPHER_MODE_CFB
2076 scripts/config.py unset MBEDTLS_CIPHER_MODE_OFB
2077 scripts/config.py unset MBEDTLS_CIPHER_MODE_XTS
2078 scripts/config.py unset MBEDTLS_DES_C
2079
2080 loc_accel_flags="$loc_accel_flags $( echo "$loc_accel_list" | sed 's/[^ ]* */-DMBEDTLS_PSA_ACCEL_&/g' )"
2081 make CFLAGS="$ASAN_CFLAGS -Werror -I../tests/include -I../tests -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_TEST_LIBTESTDRIVER1 $loc_accel_flags" LDFLAGS="-ltestdriver1 $ASAN_CFLAGS"
2082
Gilles Peskined4c5c3d2022-02-04 00:30:54 +01002083 not grep mbedtls_des* library/des.o
Ronald Cron09623702021-10-18 11:26:01 +02002084
2085 msg "test: MBEDTLS_PSA_CRYPTO_CONFIG with accelerated hash"
2086 make test
2087}
2088
Przemek Stekiel8b56f232022-10-02 20:58:39 +02002089component_test_psa_crypto_config_accel_aead () {
2090 msg "test: MBEDTLS_PSA_CRYPTO_CONFIG with accelerated AEAD"
2091
2092 # Disable ALG_STREAM_CIPHER and ALG_ECB_NO_PADDING to avoid having
2093 # partial support for cipher operations in the driver test library.
2094 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_STREAM_CIPHER
2095 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_ECB_NO_PADDING
2096
2097 loc_accel_list="ALG_GCM ALG_CCM ALG_CHACHA20_POLY1305 KEY_TYPE_AES KEY_TYPE_CHACHA20 KEY_TYPE_ARIA KEY_TYPE_CAMELLIA"
2098 loc_accel_flags=$( echo "$loc_accel_list" | sed 's/[^ ]* */-DLIBTESTDRIVER1_MBEDTLS_PSA_ACCEL_&/g' )
2099 make -C tests libtestdriver1.a CFLAGS="$ASAN_CFLAGS $loc_accel_flags" LDFLAGS="$ASAN_CFLAGS"
2100
2101 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2102 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2103
2104 scripts/config.py unset MBEDTLS_GCM_C
2105 scripts/config.py unset MBEDTLS_CCM_C
2106 scripts/config.py unset MBEDTLS_CHACHAPOLY_C
2107 # Features that depend on AEAD
2108 scripts/config.py unset MBEDTLS_SSL_CONTEXT_SERIALIZATION
2109 scripts/config.py unset MBEDTLS_SSL_TICKET_C
2110
2111 loc_accel_flags="$loc_accel_flags $( echo "$loc_accel_list" | sed 's/[^ ]* */-DMBEDTLS_PSA_ACCEL_&/g' )"
2112 make CFLAGS="$ASAN_CFLAGS -Werror -I../tests/include -I../tests -I../../tests -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_TEST_LIBTESTDRIVER1 $loc_accel_flags" LDFLAGS="-ltestdriver1 $ASAN_CFLAGS"
2113
2114 # There's a risk of something getting re-enabled via config_psa.h
2115 # make sure it did not happen.
2116 not grep mbedtls_ccm library/ccm.o
2117 not grep mbedtls_gcm library/gcm.o
2118 not grep mbedtls_chachapoly library/chachapoly.o
2119
2120 msg "test: MBEDTLS_PSA_CRYPTO_CONFIG with accelerated AEAD"
2121 make test
2122}
2123
John Durkop4377bf72020-10-23 01:26:57 -07002124component_test_psa_crypto_config_no_driver() {
John Durkop4377bf72020-10-23 01:26:57 -07002125 msg "build: full + MBEDTLS_PSA_CRYPTO_CONFIG minus MBEDTLS_PSA_CRYPTO_DRIVERS"
2126 scripts/config.py full
2127 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2128 scripts/config.py unset MBEDTLS_PSA_CRYPTO_DRIVERS
2129 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
John Durkope7012c72020-10-26 09:55:01 -07002130 make CC=gcc CFLAGS="$ASAN_CFLAGS -O2" LDFLAGS="$ASAN_CFLAGS"
John Durkop4377bf72020-10-23 01:26:57 -07002131
2132 msg "test: full + MBEDTLS_PSA_CRYPTO_CONFIG minus MBEDTLS_PSA_CRYPTO_DRIVERS"
John Durkopd8959392020-09-20 23:09:17 -07002133 make test
2134}
2135
Gilles Peskined4c85af2023-07-20 22:19:45 +02002136component_test_aead_chachapoly_disabled() {
2137 msg "build: full minus CHACHAPOLY"
Przemyslaw Stekiel7ce979a2021-10-13 11:09:44 +02002138 scripts/config.py full
2139 scripts/config.py unset MBEDTLS_CHACHAPOLY_C
Gilles Peskined4c85af2023-07-20 22:19:45 +02002140 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CHACHA20_POLY1305
Przemyslaw Stekiel7ce979a2021-10-13 11:09:44 +02002141 make CC=gcc CFLAGS="$ASAN_CFLAGS -O2" LDFLAGS="$ASAN_CFLAGS"
2142
Gilles Peskined4c85af2023-07-20 22:19:45 +02002143 msg "test: full minus CHACHAPOLY"
2144 make test
2145}
2146
2147component_test_aead_only_ccm() {
2148 msg "build: full minus CHACHAPOLY and GCM"
2149 scripts/config.py full
2150 scripts/config.py unset MBEDTLS_CHACHAPOLY_C
2151 scripts/config.py unset MBEDTLS_GCM_C
2152 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CHACHA20_POLY1305
2153 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_GCM
2154 make CC=gcc CFLAGS="$ASAN_CFLAGS -O2" LDFLAGS="$ASAN_CFLAGS"
2155
2156 msg "test: full minus CHACHAPOLY and GCM"
Przemyslaw Stekiel7ce979a2021-10-13 11:09:44 +02002157 make test
2158}
2159
John Durkopd0321952020-10-29 21:37:36 -07002160# This should be renamed to test and updated once the accelerator ECDH code is in place and ready to test.
John Durkop6ba40d12020-11-10 08:50:04 -08002161component_build_psa_accel_alg_ecdh() {
Gilles Peskine168be012023-07-19 19:36:55 +02002162 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_ALG_ECDH without MBEDTLS_ECDH_C"
John Durkopd0321952020-10-29 21:37:36 -07002163 scripts/config.py full
2164 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2165 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2166 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
2167 scripts/config.py unset MBEDTLS_ECDH_C
2168 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED
2169 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
2170 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
2171 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED
2172 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED
2173 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
2174 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_ALG_ECDH -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
2175}
2176
John Durkopf4c4cb02020-10-28 20:09:55 -07002177# This should be renamed to test and updated once the accelerator ECC key pair code is in place and ready to test.
John Durkop6ba40d12020-11-10 08:50:04 -08002178component_build_psa_accel_key_type_ecc_key_pair() {
Gilles Peskine168be012023-07-19 19:36:55 +02002179 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_KEY_TYPE_ECC_KEY_PAIR"
John Durkopf4c4cb02020-10-28 20:09:55 -07002180 scripts/config.py full
2181 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2182 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2183 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
John Durkop9814fa22020-11-04 12:28:15 -08002184 scripts/config.py -f include/psa/crypto_config.h set PSA_WANT_KEY_TYPE_ECC_KEY_PAIR 1
John Durkop07cc04a2020-11-16 22:08:34 -08002185 scripts/config.py -f include/psa/crypto_config.h set PSA_WANT_KEY_TYPE_ECC_PUBLIC_KEY 1
John Durkopf4c4cb02020-10-28 20:09:55 -07002186 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
John Durkop9814fa22020-11-04 12:28:15 -08002187 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_KEY_TYPE_ECC_KEY_PAIR -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
John Durkopf4c4cb02020-10-28 20:09:55 -07002188}
2189
2190# This should be renamed to test and updated once the accelerator ECC public key code is in place and ready to test.
John Durkop6ba40d12020-11-10 08:50:04 -08002191component_build_psa_accel_key_type_ecc_public_key() {
Gilles Peskine168be012023-07-19 19:36:55 +02002192 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_KEY_TYPE_ECC_PUBLIC_KEY"
John Durkopf4c4cb02020-10-28 20:09:55 -07002193 scripts/config.py full
2194 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2195 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2196 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
John Durkop9814fa22020-11-04 12:28:15 -08002197 scripts/config.py -f include/psa/crypto_config.h set PSA_WANT_KEY_TYPE_ECC_PUBLIC_KEY 1
2198 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_KEY_TYPE_ECC_KEY_PAIR
John Durkopf4c4cb02020-10-28 20:09:55 -07002199 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
John Durkop9814fa22020-11-04 12:28:15 -08002200 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_KEY_TYPE_ECC_PUBLIC_KEY -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
John Durkopf4c4cb02020-10-28 20:09:55 -07002201}
2202
John Durkopd0321952020-10-29 21:37:36 -07002203# This should be renamed to test and updated once the accelerator HMAC code is in place and ready to test.
John Durkop6ba40d12020-11-10 08:50:04 -08002204component_build_psa_accel_alg_hmac() {
Gilles Peskine168be012023-07-19 19:36:55 +02002205 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_ALG_HMAC"
John Durkopd0321952020-10-29 21:37:36 -07002206 scripts/config.py full
2207 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2208 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2209 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
2210 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
2211 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_ALG_HMAC -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
2212}
2213
2214# This should be renamed to test and updated once the accelerator HKDF code is in place and ready to test.
John Durkop6ba40d12020-11-10 08:50:04 -08002215component_build_psa_accel_alg_hkdf() {
Gilles Peskine168be012023-07-19 19:36:55 +02002216 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_ALG_HKDF without MBEDTLS_HKDF_C"
John Durkopd0321952020-10-29 21:37:36 -07002217 scripts/config.py full
2218 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2219 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2220 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
2221 scripts/config.py unset MBEDTLS_HKDF_C
John Durkopbd069d32020-10-31 22:14:03 -07002222 # Make sure to unset TLS1_3_EXPERIMENTAL since it requires HKDF_C and will not build properly without it.
2223 scripts/config.py unset MBEDTLS_SSL_PROTO_TLS1_3_EXPERIMENTAL
John Durkopd0321952020-10-29 21:37:36 -07002224 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
2225 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_ALG_HKDF -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
2226}
2227
John Durkop1b7ee052020-11-27 08:51:22 -08002228# This should be renamed to test and updated once the accelerator MD2 code is in place and ready to test.
2229component_build_psa_accel_alg_md2() {
Gilles Peskine168be012023-07-19 19:36:55 +02002230 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_ALG_MD2 - other hashes"
John Durkop1b7ee052020-11-27 08:51:22 -08002231 scripts/config.py full
2232 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2233 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2234 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
2235 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD4
2236 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD5
2237 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RIPEMD160
2238 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_1
2239 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_224
2240 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_256
2241 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_384
2242 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_512
2243 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
2244 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_ALG_MD2 -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
2245}
2246
2247# This should be renamed to test and updated once the accelerator MD4 code is in place and ready to test.
2248component_build_psa_accel_alg_md4() {
Gilles Peskine168be012023-07-19 19:36:55 +02002249 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_ALG_MD4 - other hashes"
John Durkop1b7ee052020-11-27 08:51:22 -08002250 scripts/config.py full
2251 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2252 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2253 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
2254 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD2
2255 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD5
2256 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RIPEMD160
2257 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_1
2258 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_224
2259 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_256
2260 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_384
2261 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_512
2262 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
2263 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_ALG_MD4 -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
2264}
2265
2266# This should be renamed to test and updated once the accelerator MD5 code is in place and ready to test.
2267component_build_psa_accel_alg_md5() {
Gilles Peskine168be012023-07-19 19:36:55 +02002268 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_ALG_MD5 - other hashes"
John Durkop1b7ee052020-11-27 08:51:22 -08002269 scripts/config.py full
2270 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2271 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2272 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
2273 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD2
2274 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD4
2275 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RIPEMD160
2276 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_1
2277 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_224
2278 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_256
2279 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_384
2280 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_512
2281 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
2282 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_ALG_MD5 -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
2283}
2284
2285# This should be renamed to test and updated once the accelerator RIPEMD160 code is in place and ready to test.
2286component_build_psa_accel_alg_ripemd160() {
Gilles Peskine168be012023-07-19 19:36:55 +02002287 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_ALG_RIPEMD160 - other hashes"
John Durkop1b7ee052020-11-27 08:51:22 -08002288 scripts/config.py full
2289 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2290 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2291 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
2292 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD2
2293 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD4
2294 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD5
2295 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_1
2296 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_224
2297 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_256
2298 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_384
2299 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_512
2300 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
2301 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_ALG_RIPEMD160 -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
2302}
2303
2304# This should be renamed to test and updated once the accelerator SHA1 code is in place and ready to test.
2305component_build_psa_accel_alg_sha1() {
Gilles Peskine168be012023-07-19 19:36:55 +02002306 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_ALG_SHA_1 - other hashes"
John Durkop1b7ee052020-11-27 08:51:22 -08002307 scripts/config.py full
2308 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2309 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2310 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
2311 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD2
2312 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD4
2313 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD5
2314 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RIPEMD160
2315 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_224
2316 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_256
2317 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_384
2318 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_512
2319 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
2320 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_ALG_SHA_1 -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
2321}
2322
2323# This should be renamed to test and updated once the accelerator SHA224 code is in place and ready to test.
2324component_build_psa_accel_alg_sha224() {
Gilles Peskine168be012023-07-19 19:36:55 +02002325 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_ALG_SHA_224 - other hashes"
John Durkop1b7ee052020-11-27 08:51:22 -08002326 scripts/config.py full
2327 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2328 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2329 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
2330 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD2
2331 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD4
2332 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD5
2333 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RIPEMD160
2334 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_1
2335 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_384
2336 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_512
2337 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
2338 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_ALG_SHA_224 -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
2339}
2340
2341# This should be renamed to test and updated once the accelerator SHA256 code is in place and ready to test.
2342component_build_psa_accel_alg_sha256() {
Gilles Peskine168be012023-07-19 19:36:55 +02002343 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_ALG_SHA_256 - other hashes"
John Durkop1b7ee052020-11-27 08:51:22 -08002344 scripts/config.py full
2345 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2346 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2347 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
2348 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD2
2349 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD4
2350 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD5
2351 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RIPEMD160
2352 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_1
2353 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_224
2354 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_384
2355 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_512
2356 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
2357 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_ALG_SHA_256 -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
2358}
2359
2360# This should be renamed to test and updated once the accelerator SHA384 code is in place and ready to test.
2361component_build_psa_accel_alg_sha384() {
Gilles Peskine168be012023-07-19 19:36:55 +02002362 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_ALG_SHA_384 - other hashes"
John Durkop1b7ee052020-11-27 08:51:22 -08002363 scripts/config.py full
2364 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2365 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2366 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
2367 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD2
2368 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD4
2369 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD5
2370 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RIPEMD160
2371 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_1
2372 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_224
2373 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_256
2374 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
2375 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_ALG_SHA_384 -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
2376}
2377
2378# This should be renamed to test and updated once the accelerator SHA512 code is in place and ready to test.
2379component_build_psa_accel_alg_sha512() {
Gilles Peskine168be012023-07-19 19:36:55 +02002380 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_ALG_SHA_512 - other hashes"
John Durkop1b7ee052020-11-27 08:51:22 -08002381 scripts/config.py full
2382 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2383 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2384 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
2385 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD2
2386 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD4
2387 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_MD5
2388 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RIPEMD160
2389 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_1
2390 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_224
2391 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_256
2392 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_SHA_384
2393 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
2394 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_ALG_SHA_512 -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
2395}
2396
John Durkopd0321952020-10-29 21:37:36 -07002397# This should be renamed to test and updated once the accelerator RSA code is in place and ready to test.
John Durkop6ba40d12020-11-10 08:50:04 -08002398component_build_psa_accel_alg_rsa_pkcs1v15_crypt() {
Gilles Peskine168be012023-07-19 19:36:55 +02002399 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_ALG_RSA_PKCS1V15_CRYPT + PSA_WANT_KEY_TYPE_RSA_PUBLIC_KEY"
John Durkopd0321952020-10-29 21:37:36 -07002400 scripts/config.py full
2401 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2402 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2403 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
John Durkopbd069d32020-10-31 22:14:03 -07002404 scripts/config.py -f include/psa/crypto_config.h set PSA_WANT_ALG_RSA_PKCS1V15_CRYPT 1
John Durkop7fc75ea2020-11-03 19:05:36 -08002405 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RSA_PKCS1V15_SIGN
2406 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RSA_OAEP
2407 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RSA_PSS
John Durkopd0321952020-10-29 21:37:36 -07002408 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
John Durkopbd069d32020-10-31 22:14:03 -07002409 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_ALG_RSA_PKCS1V15_CRYPT -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
2410}
2411
2412# This should be renamed to test and updated once the accelerator RSA code is in place and ready to test.
John Durkop6ba40d12020-11-10 08:50:04 -08002413component_build_psa_accel_alg_rsa_pkcs1v15_sign() {
Gilles Peskine168be012023-07-19 19:36:55 +02002414 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_ALG_RSA_PKCS1V15_SIGN + PSA_WANT_KEY_TYPE_RSA_PUBLIC_KEY"
John Durkopbd069d32020-10-31 22:14:03 -07002415 scripts/config.py full
2416 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2417 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2418 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
2419 scripts/config.py -f include/psa/crypto_config.h set PSA_WANT_ALG_RSA_PKCS1V15_SIGN 1
John Durkop7fc75ea2020-11-03 19:05:36 -08002420 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RSA_PKCS1V15_CRYPT
2421 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RSA_OAEP
2422 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RSA_PSS
John Durkopbd069d32020-10-31 22:14:03 -07002423 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
2424 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_ALG_RSA_PKCS1V15_SIGN -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
2425}
2426
2427# This should be renamed to test and updated once the accelerator RSA code is in place and ready to test.
John Durkop6ba40d12020-11-10 08:50:04 -08002428component_build_psa_accel_alg_rsa_oaep() {
Gilles Peskine168be012023-07-19 19:36:55 +02002429 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_ALG_RSA_OAEP + PSA_WANT_KEY_TYPE_RSA_PUBLIC_KEY"
John Durkopbd069d32020-10-31 22:14:03 -07002430 scripts/config.py full
2431 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2432 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2433 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
2434 scripts/config.py -f include/psa/crypto_config.h set PSA_WANT_ALG_RSA_OAEP 1
John Durkop7fc75ea2020-11-03 19:05:36 -08002435 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RSA_PKCS1V15_CRYPT
2436 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RSA_PKCS1V15_SIGN
2437 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RSA_PSS
John Durkopbd069d32020-10-31 22:14:03 -07002438 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
2439 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_ALG_RSA_OAEP -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
2440}
2441
2442# This should be renamed to test and updated once the accelerator RSA code is in place and ready to test.
John Durkop6ba40d12020-11-10 08:50:04 -08002443component_build_psa_accel_alg_rsa_pss() {
Gilles Peskine168be012023-07-19 19:36:55 +02002444 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_ALG_RSA_PSS + PSA_WANT_KEY_TYPE_RSA_PUBLIC_KEY"
John Durkopbd069d32020-10-31 22:14:03 -07002445 scripts/config.py full
2446 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2447 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2448 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
2449 scripts/config.py -f include/psa/crypto_config.h set PSA_WANT_ALG_RSA_PSS 1
John Durkop7fc75ea2020-11-03 19:05:36 -08002450 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RSA_PKCS1V15_CRYPT
2451 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RSA_PKCS1V15_SIGN
2452 scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_RSA_OAEP
John Durkopbd069d32020-10-31 22:14:03 -07002453 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
2454 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_ALG_RSA_PSS -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
2455}
2456
2457# This should be renamed to test and updated once the accelerator RSA code is in place and ready to test.
John Durkop6ba40d12020-11-10 08:50:04 -08002458component_build_psa_accel_key_type_rsa_key_pair() {
Gilles Peskine168be012023-07-19 19:36:55 +02002459 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_KEY_TYPE_RSA_KEY_PAIR + PSA_WANT_ALG_RSA_PSS"
John Durkopbd069d32020-10-31 22:14:03 -07002460 scripts/config.py full
2461 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2462 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2463 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
2464 scripts/config.py -f include/psa/crypto_config.h set PSA_WANT_ALG_RSA_PSS 1
2465 scripts/config.py -f include/psa/crypto_config.h set PSA_WANT_KEY_TYPE_RSA_KEY_PAIR 1
2466 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
2467 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_KEY_TYPE_RSA_KEY_PAIR -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
2468}
2469
2470# This should be renamed to test and updated once the accelerator RSA code is in place and ready to test.
John Durkop6ba40d12020-11-10 08:50:04 -08002471component_build_psa_accel_key_type_rsa_public_key() {
Gilles Peskine168be012023-07-19 19:36:55 +02002472 msg "build: full - MBEDTLS_USE_PSA_CRYPTO + PSA_WANT_KEY_TYPE_RSA_PUBLIC_KEY + PSA_WANT_ALG_RSA_PSS"
John Durkopbd069d32020-10-31 22:14:03 -07002473 scripts/config.py full
2474 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
2475 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
2476 scripts/config.py unset MBEDTLS_USE_PSA_CRYPTO
2477 scripts/config.py -f include/psa/crypto_config.h set PSA_WANT_ALG_RSA_PSS 1
2478 scripts/config.py -f include/psa/crypto_config.h set PSA_WANT_KEY_TYPE_RSA_PUBLIC_KEY 1
2479 # Need to define the correct symbol and include the test driver header path in order to build with the test driver
2480 make CC=gcc CFLAGS="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_PSA_ACCEL_KEY_TYPE_RSA_PUBLIC_KEY -I../tests/include -O2" LDFLAGS="$ASAN_CFLAGS"
John Durkopd0321952020-10-29 21:37:36 -07002481}
2482
Gilles Peskineadcde5e2019-06-12 16:05:50 +02002483component_test_check_params_functionality () {
2484 msg "build+test: MBEDTLS_CHECK_PARAMS functionality"
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002485 scripts/config.py full # includes CHECK_PARAMS
Gilles Peskineadcde5e2019-06-12 16:05:50 +02002486 # Make MBEDTLS_PARAM_FAILED call mbedtls_param_failed().
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002487 scripts/config.py unset MBEDTLS_CHECK_PARAMS_ASSERT
Ronald Crona1236142020-07-01 16:01:21 +02002488 make CC=gcc CFLAGS='-Werror -O1' all test
Gilles Peskineadcde5e2019-06-12 16:05:50 +02002489}
2490
Gilles Peskineb28636b2019-01-02 19:06:24 +01002491component_test_check_params_without_platform () {
2492 msg "build+test: MBEDTLS_CHECK_PARAMS without MBEDTLS_PLATFORM_C"
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002493 scripts/config.py full # includes CHECK_PARAMS
Gilles Peskineadcde5e2019-06-12 16:05:50 +02002494 # Keep MBEDTLS_PARAM_FAILED as assert.
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002495 scripts/config.py unset MBEDTLS_PLATFORM_EXIT_ALT
2496 scripts/config.py unset MBEDTLS_PLATFORM_TIME_ALT
2497 scripts/config.py unset MBEDTLS_PLATFORM_FPRINTF_ALT
2498 scripts/config.py unset MBEDTLS_PLATFORM_MEMORY
Gilles Peskine32e889d2020-04-12 23:43:28 +02002499 scripts/config.py unset MBEDTLS_PLATFORM_NV_SEED_ALT
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002500 scripts/config.py unset MBEDTLS_PLATFORM_PRINTF_ALT
2501 scripts/config.py unset MBEDTLS_PLATFORM_SNPRINTF_ALT
Gilles Peskine9c764bf2022-09-18 14:05:23 +02002502 scripts/config.py unset MBEDTLS_PLATFORM_VSNPRINTF_ALT
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002503 scripts/config.py unset MBEDTLS_ENTROPY_NV_SEED
2504 scripts/config.py unset MBEDTLS_PLATFORM_C
Gilles Peskineb28636b2019-01-02 19:06:24 +01002505 make CC=gcc CFLAGS='-Werror -O1' all test
2506}
Andrzej Kurekc470b6b2019-01-31 08:20:20 -05002507
Gilles Peskineb28636b2019-01-02 19:06:24 +01002508component_test_check_params_silent () {
2509 msg "build+test: MBEDTLS_CHECK_PARAMS with alternative MBEDTLS_PARAM_FAILED()"
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002510 scripts/config.py full # includes CHECK_PARAMS
Gilles Peskineadcde5e2019-06-12 16:05:50 +02002511 # Set MBEDTLS_PARAM_FAILED to nothing.
Gilles Peskineb28636b2019-01-02 19:06:24 +01002512 sed -i 's/.*\(#define MBEDTLS_PARAM_FAILED( cond )\).*/\1/' "$CONFIG_H"
2513 make CC=gcc CFLAGS='-Werror -O1' all test
2514}
Andrzej Kurekc470b6b2019-01-31 08:20:20 -05002515
Dave Rodgman173227d2023-06-29 09:29:00 +01002516component_build_aes_variations() { # ~45s
2517 msg "build: aes.o for all combinations of relevant config options"
Dave Rodgmanbf998282023-06-29 12:10:45 +01002518
Dave Rodgman173227d2023-06-29 09:29:00 +01002519 for a in set unset; do
2520 for b in set unset; do
2521 for c in set unset; do
2522 for d in set unset; do
2523 for e in set unset; do
2524 for f in set unset; do
2525 for g in set unset; do
Dave Rodgmanbf998282023-06-29 12:10:45 +01002526 echo ./scripts/config.py $a MBEDTLS_AES_SETKEY_ENC_ALT
2527 echo ./scripts/config.py $b MBEDTLS_AES_DECRYPT_ALT
2528 echo ./scripts/config.py $c MBEDTLS_AES_ROM_TABLES
2529 echo ./scripts/config.py $d MBEDTLS_AES_ENCRYPT_ALT
2530 echo ./scripts/config.py $e MBEDTLS_AES_SETKEY_DEC_ALT
2531 echo ./scripts/config.py $f MBEDTLS_AES_FEWER_TABLES
2532 echo ./scripts/config.py $g MBEDTLS_PADLOCK_C
Dave Rodgman173227d2023-06-29 09:29:00 +01002533
Dave Rodgmanbf998282023-06-29 12:10:45 +01002534 ./scripts/config.py $a MBEDTLS_AES_SETKEY_ENC_ALT
2535 ./scripts/config.py $b MBEDTLS_AES_DECRYPT_ALT
2536 ./scripts/config.py $c MBEDTLS_AES_ROM_TABLES
2537 ./scripts/config.py $d MBEDTLS_AES_ENCRYPT_ALT
2538 ./scripts/config.py $e MBEDTLS_AES_SETKEY_DEC_ALT
2539 ./scripts/config.py $f MBEDTLS_AES_FEWER_TABLES
2540 ./scripts/config.py $g MBEDTLS_PADLOCK_C
Dave Rodgman173227d2023-06-29 09:29:00 +01002541
Dave Rodgmanbf998282023-06-29 12:10:45 +01002542 rm -f library/aes.o
2543 make -C library aes.o CC="clang" CFLAGS="-O0 -std=c99 -Werror -Wall -Wextra -Wwrite-strings -Wpointer-arith -Wimplicit-fallthrough -Wshadow -Wvla -Wformat=2 -Wno-format-nonliteral -Wshadow -Wasm-operand-widths -Wunused"
Dave Rodgman173227d2023-06-29 09:29:00 +01002544 done
2545 done
2546 done
2547 done
2548 done
2549 done
2550 done
2551}
2552
Gilles Peskine8f073122018-11-27 15:58:47 +01002553component_test_no_platform () {
2554 # Full configuration build, without platform support, file IO and net sockets.
2555 # This should catch missing mbedtls_printf definitions, and by disabling file
2556 # IO, it should catch missing '#include <stdio.h>'
2557 msg "build: full config except platform/fsio/net, make, gcc, C99" # ~ 30s
Paul Elliott68050372023-11-03 19:24:56 +00002558 scripts/config.py full_no_platform
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002559 scripts/config.py unset MBEDTLS_PLATFORM_C
2560 scripts/config.py unset MBEDTLS_NET_C
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002561 scripts/config.py unset MBEDTLS_FS_IO
Gilles Peskine3bdd4122019-07-27 23:52:53 +02002562 scripts/config.py unset MBEDTLS_PSA_CRYPTO_SE_C
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002563 scripts/config.py unset MBEDTLS_PSA_CRYPTO_STORAGE_C
2564 scripts/config.py unset MBEDTLS_PSA_ITS_FILE_C
Paul Elliott68050372023-11-03 19:24:56 +00002565 scripts/config.py unset MBEDTLS_ENTROPY_NV_SEED
Gilles Peskine8f073122018-11-27 15:58:47 +01002566 # Note, _DEFAULT_SOURCE needs to be defined for platforms using glibc version >2.19,
2567 # to re-enable platform integration features otherwise disabled in C99 builds
Gilles Peskine6ec0f0f2019-09-20 19:23:10 +02002568 make CC=gcc CFLAGS='-Werror -Wall -Wextra -std=c99 -pedantic -Os -D_DEFAULT_SOURCE' lib programs
2569 make CC=gcc CFLAGS='-Werror -Wall -Wextra -Os' test
Gilles Peskine8f073122018-11-27 15:58:47 +01002570}
Manuel Pégourié-Gonnarda71780e2015-02-13 13:56:55 +00002571
Gilles Peskine8f073122018-11-27 15:58:47 +01002572component_build_no_std_function () {
2573 # catch compile bugs in _uninit functions
2574 msg "build: full config with NO_STD_FUNCTION, make, gcc" # ~ 30s
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002575 scripts/config.py full
2576 scripts/config.py set MBEDTLS_PLATFORM_NO_STD_FUNCTIONS
2577 scripts/config.py unset MBEDTLS_ENTROPY_NV_SEED
Gilles Peskine32e889d2020-04-12 23:43:28 +02002578 scripts/config.py unset MBEDTLS_PLATFORM_NV_SEED_ALT
Gilles Peskine31fdda12021-10-08 11:45:47 +02002579 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Check .
Gilles Peskine25319702021-10-07 19:34:57 +02002580 make
Gilles Peskine8f073122018-11-27 15:58:47 +01002581}
Manuel Pégourié-Gonnarddccb80b2015-06-03 10:20:33 +01002582
Gilles Peskine8f073122018-11-27 15:58:47 +01002583component_build_no_ssl_srv () {
2584 msg "build: full config except ssl_srv.c, make, gcc" # ~ 30s
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002585 scripts/config.py full
2586 scripts/config.py unset MBEDTLS_SSL_SRV_C
Gilles Peskine6ec0f0f2019-09-20 19:23:10 +02002587 make CC=gcc CFLAGS='-Werror -Wall -Wextra -O1'
Gilles Peskine8f073122018-11-27 15:58:47 +01002588}
Manuel Pégourié-Gonnard66b8e952015-05-20 11:13:56 +02002589
Gilles Peskine8f073122018-11-27 15:58:47 +01002590component_build_no_ssl_cli () {
2591 msg "build: full config except ssl_cli.c, make, gcc" # ~ 30s
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002592 scripts/config.py full
2593 scripts/config.py unset MBEDTLS_SSL_CLI_C
Gilles Peskine6ec0f0f2019-09-20 19:23:10 +02002594 make CC=gcc CFLAGS='-Werror -Wall -Wextra -O1'
Gilles Peskine8f073122018-11-27 15:58:47 +01002595}
Manuel Pégourié-Gonnard66b8e952015-05-20 11:13:56 +02002596
Gilles Peskine8f073122018-11-27 15:58:47 +01002597component_build_no_sockets () {
2598 # Note, C99 compliance can also be tested with the sockets support disabled,
2599 # as that requires a POSIX platform (which isn't the same as C99).
2600 msg "build: full config except net_sockets.c, make, gcc -std=c99 -pedantic" # ~ 30s
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002601 scripts/config.py full
2602 scripts/config.py unset MBEDTLS_NET_C # getaddrinfo() undeclared, etc.
2603 scripts/config.py set MBEDTLS_NO_PLATFORM_ENTROPY # uses syscall() on GNU/Linux
Gilles Peskine6ec0f0f2019-09-20 19:23:10 +02002604 make CC=gcc CFLAGS='-Werror -Wall -Wextra -O1 -std=c99 -pedantic' lib
Gilles Peskine8f073122018-11-27 15:58:47 +01002605}
Manuel Pégourié-Gonnard009a2642015-05-29 10:31:13 +02002606
Andrzej Kurek69f20aa2019-09-05 09:27:47 -04002607component_test_memory_buffer_allocator_backtrace () {
2608 msg "build: default config with memory buffer allocator and backtrace enabled"
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002609 scripts/config.py set MBEDTLS_MEMORY_BUFFER_ALLOC_C
2610 scripts/config.py set MBEDTLS_PLATFORM_MEMORY
2611 scripts/config.py set MBEDTLS_MEMORY_BACKTRACE
2612 scripts/config.py set MBEDTLS_MEMORY_DEBUG
Gilles Peskineff30bd02021-10-19 21:33:32 +02002613 CC=gcc cmake -DCMAKE_BUILD_TYPE:String=Release .
Andrzej Kurek69f20aa2019-09-05 09:27:47 -04002614 make
2615
2616 msg "test: MBEDTLS_MEMORY_BUFFER_ALLOC_C and MBEDTLS_MEMORY_BACKTRACE"
2617 make test
2618}
2619
2620component_test_memory_buffer_allocator () {
2621 msg "build: default config with memory buffer allocator"
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002622 scripts/config.py set MBEDTLS_MEMORY_BUFFER_ALLOC_C
2623 scripts/config.py set MBEDTLS_PLATFORM_MEMORY
Gilles Peskineff30bd02021-10-19 21:33:32 +02002624 CC=gcc cmake -DCMAKE_BUILD_TYPE:String=Release .
Hanno Becker0fb9ba22019-02-26 14:34:13 +00002625 make
2626
2627 msg "test: MBEDTLS_MEMORY_BUFFER_ALLOC_C"
2628 make test
Gilles Peskine636c26a2020-03-04 20:46:15 +01002629
2630 msg "test: ssl-opt.sh, MBEDTLS_MEMORY_BUFFER_ALLOC_C"
2631 # MBEDTLS_MEMORY_BUFFER_ALLOC is slow. Skip tests that tend to time out.
Gilles Peskinef6d29c62021-07-08 18:41:16 +02002632 tests/ssl-opt.sh -e '^DTLS proxy'
Hanno Becker0fb9ba22019-02-26 14:34:13 +00002633}
2634
Gilles Peskine8f073122018-11-27 15:58:47 +01002635component_test_no_max_fragment_length () {
2636 # Run max fragment length tests with MFL disabled
2637 msg "build: default config except MFL extension (ASan build)" # ~ 30s
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002638 scripts/config.py unset MBEDTLS_SSL_MAX_FRAGMENT_LENGTH
Gilles Peskine8f073122018-11-27 15:58:47 +01002639 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
2640 make
Hanno Becker5175ac62017-09-18 15:36:25 +01002641
Gilles Peskine8f073122018-11-27 15:58:47 +01002642 msg "test: ssl-opt.sh, MFL-related tests"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02002643 tests/ssl-opt.sh -f "Max fragment length"
Gilles Peskine8f073122018-11-27 15:58:47 +01002644}
Manuel Pégourié-Gonnardedb2dc92015-02-10 14:36:31 +00002645
Hanno Becker545ced42019-02-19 11:10:48 +00002646component_test_asan_remove_peer_certificate () {
2647 msg "build: default config with MBEDTLS_SSL_KEEP_PEER_CERTIFICATE disabled (ASan build)"
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002648 scripts/config.py unset MBEDTLS_SSL_KEEP_PEER_CERTIFICATE
Hanno Becker545ced42019-02-19 11:10:48 +00002649 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
2650 make
2651
2652 msg "test: !MBEDTLS_SSL_KEEP_PEER_CERTIFICATE"
2653 make test
2654
2655 msg "test: ssl-opt.sh, !MBEDTLS_SSL_KEEP_PEER_CERTIFICATE"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02002656 tests/ssl-opt.sh
Hanno Becker545ced42019-02-19 11:10:48 +00002657
2658 msg "test: compat.sh, !MBEDTLS_SSL_KEEP_PEER_CERTIFICATE"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02002659 tests/compat.sh
Piotr Nowicki9978e6e2020-04-07 16:07:05 +02002660
2661 msg "test: context-info.sh, !MBEDTLS_SSL_KEEP_PEER_CERTIFICATE"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02002662 tests/context-info.sh
Hanno Becker545ced42019-02-19 11:10:48 +00002663}
2664
Gilles Peskine8f073122018-11-27 15:58:47 +01002665component_test_no_max_fragment_length_small_ssl_out_content_len () {
2666 msg "build: no MFL extension, small SSL_OUT_CONTENT_LEN (ASan build)"
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002667 scripts/config.py unset MBEDTLS_SSL_MAX_FRAGMENT_LENGTH
2668 scripts/config.py set MBEDTLS_SSL_IN_CONTENT_LEN 16384
2669 scripts/config.py set MBEDTLS_SSL_OUT_CONTENT_LEN 4096
Gilles Peskine8f073122018-11-27 15:58:47 +01002670 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
2671 make
Angus Grattonc4dd0732018-04-11 16:28:39 +10002672
Gilles Peskine8f073122018-11-27 15:58:47 +01002673 msg "test: MFL tests (disabled MFL extension case) & large packet tests"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02002674 tests/ssl-opt.sh -f "Max fragment length\|Large buffer"
Piotr Nowicki9978e6e2020-04-07 16:07:05 +02002675
2676 msg "test: context-info.sh (disabled MFL extension case)"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02002677 tests/context-info.sh
Gilles Peskine8f073122018-11-27 15:58:47 +01002678}
Angus Grattonc4dd0732018-04-11 16:28:39 +10002679
Darryl Greenaad82f92019-12-02 10:53:11 +00002680component_test_variable_ssl_in_out_buffer_len () {
2681 msg "build: MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH enabled (ASan build)"
2682 scripts/config.py set MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH
2683 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
2684 make
2685
2686 msg "test: MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH enabled"
2687 make test
2688
2689 msg "test: ssl-opt.sh, MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH enabled"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02002690 tests/ssl-opt.sh
Darryl Greenaad82f92019-12-02 10:53:11 +00002691
2692 msg "test: compat.sh, MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH enabled"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02002693 tests/compat.sh
Darryl Greenaad82f92019-12-02 10:53:11 +00002694}
2695
2696component_test_variable_ssl_in_out_buffer_len_CID () {
2697 msg "build: MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH and MBEDTLS_SSL_DTLS_CONNECTION_ID enabled (ASan build)"
2698 scripts/config.py set MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH
2699 scripts/config.py set MBEDTLS_SSL_DTLS_CONNECTION_ID
2700
2701 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
2702 make
2703
2704 msg "test: MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH and MBEDTLS_SSL_DTLS_CONNECTION_ID"
2705 make test
2706
2707 msg "test: ssl-opt.sh, MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH and MBEDTLS_SSL_DTLS_CONNECTION_ID enabled"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02002708 tests/ssl-opt.sh
Darryl Greenaad82f92019-12-02 10:53:11 +00002709
2710 msg "test: compat.sh, MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH and MBEDTLS_SSL_DTLS_CONNECTION_ID enabled"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02002711 tests/compat.sh
Darryl Greenaad82f92019-12-02 10:53:11 +00002712}
2713
2714component_test_variable_ssl_in_out_buffer_len_record_splitting () {
2715 msg "build: MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH and MBEDTLS_SSL_CBC_RECORD_SPLITTING enabled (ASan build)"
2716 scripts/config.py set MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH
2717 scripts/config.py set MBEDTLS_SSL_CBC_RECORD_SPLITTING
2718
2719 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
2720 make
2721
2722 msg "test: MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH and MBEDTLS_SSL_CBC_RECORD_SPLITTING"
2723 make test
2724
2725 msg "test: ssl-opt.sh, MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH and MBEDTLS_SSL_CBC_RECORD_SPLITTING enabled"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02002726 tests/ssl-opt.sh
Darryl Greenaad82f92019-12-02 10:53:11 +00002727
2728 msg "test: compat.sh, MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH and MBEDTLS_SSL_CBC_RECORD_SPLITTING enabled"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02002729 tests/compat.sh
Darryl Greenaad82f92019-12-02 10:53:11 +00002730}
2731
Piotr Nowicki0937ed22019-11-26 16:32:40 +01002732component_test_ssl_alloc_buffer_and_mfl () {
2733 msg "build: default config with memory buffer allocator and MFL extension"
2734 scripts/config.py set MBEDTLS_MEMORY_BUFFER_ALLOC_C
2735 scripts/config.py set MBEDTLS_PLATFORM_MEMORY
2736 scripts/config.py set MBEDTLS_MEMORY_DEBUG
2737 scripts/config.py set MBEDTLS_SSL_MAX_FRAGMENT_LENGTH
2738 scripts/config.py set MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH
Gilles Peskineff30bd02021-10-19 21:33:32 +02002739 CC=gcc cmake -DCMAKE_BUILD_TYPE:String=Release .
Piotr Nowicki0937ed22019-11-26 16:32:40 +01002740 make
2741
2742 msg "test: MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH, MBEDTLS_MEMORY_BUFFER_ALLOC_C, MBEDTLS_MEMORY_DEBUG and MBEDTLS_SSL_MAX_FRAGMENT_LENGTH"
2743 make test
2744
2745 msg "test: MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH, MBEDTLS_MEMORY_BUFFER_ALLOC_C, MBEDTLS_MEMORY_DEBUG and MBEDTLS_SSL_MAX_FRAGMENT_LENGTH"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02002746 tests/ssl-opt.sh -f "Handshake memory usage"
Piotr Nowicki0937ed22019-11-26 16:32:40 +01002747}
2748
Gilles Peskine636c26a2020-03-04 20:46:15 +01002749component_test_when_no_ciphersuites_have_mac () {
2750 msg "build: when no ciphersuites have MAC"
2751 scripts/config.py unset MBEDTLS_CIPHER_NULL_CIPHER
2752 scripts/config.py unset MBEDTLS_ARC4_C
2753 scripts/config.py unset MBEDTLS_CIPHER_MODE_CBC
2754 make
2755
2756 msg "test: !MBEDTLS_SSL_SOME_MODES_USE_MAC"
2757 make test
2758
2759 msg "test ssl-opt.sh: !MBEDTLS_SSL_SOME_MODES_USE_MAC"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02002760 tests/ssl-opt.sh -f 'Default\|EtM' -e 'without EtM'
Gilles Peskine636c26a2020-03-04 20:46:15 +01002761}
2762
Gilles Peskine8f073122018-11-27 15:58:47 +01002763component_test_null_entropy () {
2764 msg "build: default config with MBEDTLS_TEST_NULL_ENTROPY (ASan build)"
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002765 scripts/config.py set MBEDTLS_TEST_NULL_ENTROPY
2766 scripts/config.py set MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES
2767 scripts/config.py set MBEDTLS_ENTROPY_C
2768 scripts/config.py unset MBEDTLS_ENTROPY_NV_SEED
Gilles Peskine32e889d2020-04-12 23:43:28 +02002769 scripts/config.py unset MBEDTLS_PLATFORM_NV_SEED_ALT
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002770 scripts/config.py unset MBEDTLS_ENTROPY_HARDWARE_ALT
2771 scripts/config.py unset MBEDTLS_HAVEGE_C
Gilles Peskine5fa32a72019-01-06 19:48:30 +00002772 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan -D UNSAFE_BUILD=ON .
Gilles Peskine8f073122018-11-27 15:58:47 +01002773 make
Janos Follath06c54002016-06-09 13:57:40 +01002774
Gilles Peskine8f073122018-11-27 15:58:47 +01002775 msg "test: MBEDTLS_TEST_NULL_ENTROPY - main suites (inc. selftests) (ASan build)"
2776 make test
2777}
Janos Follath06c54002016-06-09 13:57:40 +01002778
Raoul Strackxa4e86142020-06-15 17:03:13 +02002779component_test_no_date_time () {
2780 msg "build: default config without MBEDTLS_HAVE_TIME_DATE"
2781 scripts/config.py unset MBEDTLS_HAVE_TIME_DATE
Gilles Peskine31fdda12021-10-08 11:45:47 +02002782 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Check .
Raoul Strackxa4e86142020-06-15 17:03:13 +02002783 make
2784
2785 msg "test: !MBEDTLS_HAVE_TIME_DATE - main suites"
2786 make test
2787}
2788
Andrzej Kurekc890b222023-01-17 04:03:19 -05002789component_test_alt_timing() {
2790 msg "build: alternate timing implementation"
2791 scripts/config.py set MBEDTLS_TIMING_ALT
2792 make lib TEST_TIMING_ALT_IMPL=1 CFLAGS="-I../tests/src/external_timing"
2793
2794 msg "test: MBEDTLS_TIMING_ALT - test suites"
2795 make test TEST_TIMING_ALT_IMPL=1 CFLAGS="-I../tests/src/external_timing"
Andrzej Kurek3a261a42023-01-26 04:33:59 -05002796
2797 msg "selftest - MBEDTLS-TIMING_ALT"
2798 make programs TEST_TIMING_ALT_IMPL=1 CFLAGS="-I../../tests/src/external_timing -I../tests/src/external_timing"
2799 programs/test/selftest
Andrzej Kurekc890b222023-01-17 04:03:19 -05002800}
2801
Gilles Peskine8f073122018-11-27 15:58:47 +01002802component_test_platform_calloc_macro () {
2803 msg "build: MBEDTLS_PLATFORM_{CALLOC/FREE}_MACRO enabled (ASan build)"
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02002804 scripts/config.py set MBEDTLS_PLATFORM_MEMORY
2805 scripts/config.py set MBEDTLS_PLATFORM_CALLOC_MACRO calloc
2806 scripts/config.py set MBEDTLS_PLATFORM_FREE_MACRO free
Gilles Peskine8f073122018-11-27 15:58:47 +01002807 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
2808 make
Hanno Beckere5fecec2018-10-11 11:02:52 +01002809
Gilles Peskine8f073122018-11-27 15:58:47 +01002810 msg "test: MBEDTLS_PLATFORM_{CALLOC/FREE}_MACRO enabled (ASan build)"
2811 make test
2812}
Hanno Beckere5fecec2018-10-11 11:02:52 +01002813
Gilles Peskinec4ef7a92019-09-17 19:04:38 +02002814component_test_malloc_0_null () {
2815 msg "build: malloc(0) returns NULL (ASan+UBSan build)"
Manuel Pégourié-Gonnard68192fc2020-03-04 10:34:47 +01002816 scripts/config.py full
Gilles Peskine2e70f1c2023-07-20 19:00:15 +02002817 make CC=gcc CFLAGS="'-DMBEDTLS_USER_CONFIG_FILE=\"$PWD/tests/configs/user-config-malloc-0-null.h\"' $ASAN_CFLAGS -O" LDFLAGS="$ASAN_CFLAGS"
Gilles Peskinec4ef7a92019-09-17 19:04:38 +02002818
2819 msg "test: malloc(0) returns NULL (ASan+UBSan build)"
2820 make test
2821
2822 msg "selftest: malloc(0) returns NULL (ASan+UBSan build)"
2823 # Just the calloc selftest. "make test" ran the others as part of the
2824 # test suites.
Gilles Peskinef6d29c62021-07-08 18:41:16 +02002825 programs/test/selftest calloc
Gilles Peskine765d2402020-02-11 18:26:34 +01002826
2827 msg "test ssl-opt.sh: malloc(0) returns NULL (ASan+UBSan build)"
2828 # Run a subset of the tests. The choice is a balance between coverage
2829 # and time (including time indirectly wasted due to flaky tests).
2830 # The current choice is to skip tests whose description includes
2831 # "proxy", which is an approximation of skipping tests that use the
2832 # UDP proxy, which tend to be slower and flakier.
Gilles Peskinef6d29c62021-07-08 18:41:16 +02002833 tests/ssl-opt.sh -e 'proxy'
Gilles Peskinec4ef7a92019-09-17 19:04:38 +02002834}
2835
Gilles Peskine8f073122018-11-27 15:58:47 +01002836component_test_aes_fewer_tables () {
2837 msg "build: default config with AES_FEWER_TABLES enabled"
Gilles Peskine3bdd4122019-07-27 23:52:53 +02002838 scripts/config.py set MBEDTLS_AES_FEWER_TABLES
Gilles Peskine8f073122018-11-27 15:58:47 +01002839 make CC=gcc CFLAGS='-Werror -Wall -Wextra'
Hanno Becker83ebf782017-07-07 12:29:15 +01002840
Gilles Peskine8f073122018-11-27 15:58:47 +01002841 msg "test: AES_FEWER_TABLES"
2842 make test
2843}
Hanno Becker83ebf782017-07-07 12:29:15 +01002844
Gilles Peskine8f073122018-11-27 15:58:47 +01002845component_test_aes_rom_tables () {
2846 msg "build: default config with AES_ROM_TABLES enabled"
Gilles Peskine3bdd4122019-07-27 23:52:53 +02002847 scripts/config.py set MBEDTLS_AES_ROM_TABLES
Gilles Peskine8f073122018-11-27 15:58:47 +01002848 make CC=gcc CFLAGS='-Werror -Wall -Wextra'
Hanno Becker83ebf782017-07-07 12:29:15 +01002849
Gilles Peskine8f073122018-11-27 15:58:47 +01002850 msg "test: AES_ROM_TABLES"
2851 make test
2852}
Hanno Becker83ebf782017-07-07 12:29:15 +01002853
Gilles Peskine8f073122018-11-27 15:58:47 +01002854component_test_aes_fewer_tables_and_rom_tables () {
2855 msg "build: default config with AES_ROM_TABLES and AES_FEWER_TABLES enabled"
Gilles Peskine3bdd4122019-07-27 23:52:53 +02002856 scripts/config.py set MBEDTLS_AES_FEWER_TABLES
2857 scripts/config.py set MBEDTLS_AES_ROM_TABLES
Gilles Peskine8f073122018-11-27 15:58:47 +01002858 make CC=gcc CFLAGS='-Werror -Wall -Wextra'
Hanno Becker83ebf782017-07-07 12:29:15 +01002859
Gilles Peskine8f073122018-11-27 15:58:47 +01002860 msg "test: AES_FEWER_TABLES + AES_ROM_TABLES"
2861 make test
2862}
2863
Gilles Peskine592f5912019-10-07 18:49:32 +02002864component_test_ctr_drbg_aes_256_sha_256 () {
2865 msg "build: full + MBEDTLS_ENTROPY_FORCE_SHA256 (ASan build)"
Gilles Peskine3b46cd32020-02-18 17:56:33 +01002866 scripts/config.py full
2867 scripts/config.py unset MBEDTLS_MEMORY_BUFFER_ALLOC_C
2868 scripts/config.py set MBEDTLS_ENTROPY_FORCE_SHA256
Gilles Peskine592f5912019-10-07 18:49:32 +02002869 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
2870 make
2871
2872 msg "test: full + MBEDTLS_ENTROPY_FORCE_SHA256 (ASan build)"
2873 make test
2874}
2875
2876component_test_ctr_drbg_aes_128_sha_512 () {
2877 msg "build: full + MBEDTLS_CTR_DRBG_USE_128_BIT_KEY (ASan build)"
Gilles Peskine3b46cd32020-02-18 17:56:33 +01002878 scripts/config.py full
2879 scripts/config.py unset MBEDTLS_MEMORY_BUFFER_ALLOC_C
2880 scripts/config.py set MBEDTLS_CTR_DRBG_USE_128_BIT_KEY
Gilles Peskine592f5912019-10-07 18:49:32 +02002881 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
2882 make
2883
2884 msg "test: full + MBEDTLS_CTR_DRBG_USE_128_BIT_KEY (ASan build)"
2885 make test
2886}
2887
2888component_test_ctr_drbg_aes_128_sha_256 () {
2889 msg "build: full + MBEDTLS_CTR_DRBG_USE_128_BIT_KEY + MBEDTLS_ENTROPY_FORCE_SHA256 (ASan build)"
Gilles Peskine3b46cd32020-02-18 17:56:33 +01002890 scripts/config.py full
2891 scripts/config.py unset MBEDTLS_MEMORY_BUFFER_ALLOC_C
2892 scripts/config.py set MBEDTLS_CTR_DRBG_USE_128_BIT_KEY
2893 scripts/config.py set MBEDTLS_ENTROPY_FORCE_SHA256
Gilles Peskine592f5912019-10-07 18:49:32 +02002894 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
2895 make
2896
2897 msg "test: full + MBEDTLS_CTR_DRBG_USE_128_BIT_KEY + MBEDTLS_ENTROPY_FORCE_SHA256 (ASan build)"
2898 make test
2899}
2900
Gilles Peskinef96aefe2019-07-24 14:58:38 +02002901component_test_se_default () {
2902 msg "build: default config + MBEDTLS_PSA_CRYPTO_SE_C"
Gilles Peskine3bdd4122019-07-27 23:52:53 +02002903 scripts/config.py set MBEDTLS_PSA_CRYPTO_SE_C
Gilles Peskine004206c2019-10-21 17:11:33 +02002904 make CC=clang CFLAGS="$ASAN_CFLAGS -Os" LDFLAGS="$ASAN_CFLAGS"
Gilles Peskinef96aefe2019-07-24 14:58:38 +02002905
2906 msg "test: default config + MBEDTLS_PSA_CRYPTO_SE_C"
2907 make test
2908}
2909
Steven Cooremand57203d2020-07-16 20:28:59 +02002910component_test_psa_crypto_drivers () {
Gilles Peskine8d77ec22023-07-26 18:45:20 +02002911 msg "build: full + test drivers dispatching to builtins"
Steven Cooreman753f9732021-03-15 11:38:44 +01002912 scripts/config.py full
Steven Cooremand57203d2020-07-16 20:28:59 +02002913 scripts/config.py set MBEDTLS_PSA_CRYPTO_DRIVERS
Gilles Peskinefe0acc62021-09-20 19:20:04 +02002914 loc_cflags="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST_ALL"
2915 loc_cflags="${loc_cflags} '-DMBEDTLS_USER_CONFIG_FILE=\"../tests/configs/user-config-for-test.h\"'"
Ronald Cron17b3afc2020-12-10 18:17:09 +01002916 loc_cflags="${loc_cflags} -I../tests/include -O2"
2917
2918 make CC=gcc CFLAGS="${loc_cflags}" LDFLAGS="$ASAN_CFLAGS"
Steven Cooremand57203d2020-07-16 20:28:59 +02002919
Gilles Peskine8d77ec22023-07-26 18:45:20 +02002920 msg "test: full + test drivers dispatching to builtins"
Steven Cooremand57203d2020-07-16 20:28:59 +02002921 make test
2922}
2923
Gilles Peskine8f073122018-11-27 15:58:47 +01002924component_test_make_shared () {
Gilles Peskine7ad603e2017-12-10 23:22:20 +01002925 msg "build/test: make shared" # ~ 40s
Andrzej Kurek232e8f92019-10-03 03:18:01 -04002926 make SHARED=1 all check
Gilles Peskine56c01612019-07-03 20:43:32 +02002927 ldd programs/util/strerror | grep libmbedcrypto
Gilles Peskine27482f12021-11-04 12:52:14 +01002928 programs/test/dlopen_demo.sh
Gilles Peskine8f073122018-11-27 15:58:47 +01002929}
Manuel Pégourié-Gonnard9b06abe2015-06-25 09:56:07 +02002930
Gilles Peskinecf740502019-07-03 20:43:05 +02002931component_test_cmake_shared () {
2932 msg "build/test: cmake shared" # ~ 2min
2933 cmake -DUSE_SHARED_MBEDTLS_LIBRARY=On .
2934 make
Gilles Peskine56c01612019-07-03 20:43:32 +02002935 ldd programs/util/strerror | grep libmbedcrypto
Gilles Peskinecf740502019-07-03 20:43:05 +02002936 make test
Gilles Peskine27482f12021-11-04 12:52:14 +01002937 programs/test/dlopen_demo.sh
Gilles Peskinecf740502019-07-03 20:43:05 +02002938}
2939
Gilles Peskineec10bf12019-09-20 19:56:06 +02002940test_build_opt () {
2941 info=$1 cc=$2; shift 2
Gowtham Suresh Kumar1e3af242023-07-19 08:39:20 +01002942 $cc --version
Gilles Peskineec10bf12019-09-20 19:56:06 +02002943 for opt in "$@"; do
2944 msg "build/test: $cc $opt, $info" # ~ 30s
Gilles Peskinee094a182020-04-14 20:08:41 +02002945 make CC="$cc" CFLAGS="$opt -std=c99 -pedantic -Wall -Wextra -Werror"
Gilles Peskineec10bf12019-09-20 19:56:06 +02002946 # We're confident enough in compilers to not run _all_ the tests,
2947 # but at least run the unit tests. In particular, runs with
2948 # optimizations use inline assembly whereas runs with -O0
2949 # skip inline assembly.
2950 make test # ~30s
2951 make clean
2952 done
2953}
2954
Gowtham Suresh Kumar1e3af242023-07-19 08:39:20 +01002955# For FreeBSD we invoke the function by name so this condition is added
2956# to disable the existing test_clang_opt function for linux.
2957if [[ $(uname) != "Linux" ]]; then
2958 component_test_clang_opt () {
2959 scripts/config.py full
2960 test_build_opt 'full config' clang -O0 -Os -O2
2961 }
2962fi
2963
2964component_test_clang_latest_opt () {
Manuel Pégourié-Gonnard68192fc2020-03-04 10:34:47 +01002965 scripts/config.py full
Gowtham Suresh Kumar2afb24f2023-08-01 09:45:57 +01002966 test_build_opt 'full config' "$CLANG_LATEST" -O0 -Os -O2
Gowtham Suresh Kumar1e3af242023-07-19 08:39:20 +01002967}
2968support_test_clang_latest_opt () {
Gowtham Suresh Kumar2afb24f2023-08-01 09:45:57 +01002969 type "$CLANG_LATEST" >/dev/null 2>/dev/null
Gilles Peskineec10bf12019-09-20 19:56:06 +02002970}
2971
Gowtham Suresh Kumar1e3af242023-07-19 08:39:20 +01002972component_test_clang_earliest_opt () {
Manuel Pégourié-Gonnard68192fc2020-03-04 10:34:47 +01002973 scripts/config.py full
Gowtham Suresh Kumar2afb24f2023-08-01 09:45:57 +01002974 test_build_opt 'full config' "$CLANG_EARLIEST" -O0
Gowtham Suresh Kumar1e3af242023-07-19 08:39:20 +01002975}
2976support_test_clang_earliest_opt () {
Gowtham Suresh Kumar2afb24f2023-08-01 09:45:57 +01002977 type "$CLANG_EARLIEST" >/dev/null 2>/dev/null
Gowtham Suresh Kumar1e3af242023-07-19 08:39:20 +01002978}
2979
2980component_test_gcc_latest_opt () {
2981 scripts/config.py full
Gowtham Suresh Kumar2afb24f2023-08-01 09:45:57 +01002982 test_build_opt 'full config' "$GCC_LATEST" -O0 -Os -O2
Gowtham Suresh Kumar1e3af242023-07-19 08:39:20 +01002983}
2984support_test_gcc_latest_opt () {
Gowtham Suresh Kumar2afb24f2023-08-01 09:45:57 +01002985 type "$GCC_LATEST" >/dev/null 2>/dev/null
Gowtham Suresh Kumar1e3af242023-07-19 08:39:20 +01002986}
2987
2988component_test_gcc_earliest_opt () {
2989 scripts/config.py full
Gowtham Suresh Kumar2afb24f2023-08-01 09:45:57 +01002990 test_build_opt 'full config' "$GCC_EARLIEST" -O0
Gowtham Suresh Kumar1e3af242023-07-19 08:39:20 +01002991}
2992support_test_gcc_earliest_opt () {
Gowtham Suresh Kumar2afb24f2023-08-01 09:45:57 +01002993 type "$GCC_EARLIEST" >/dev/null 2>/dev/null
Gilles Peskineec10bf12019-09-20 19:56:06 +02002994}
2995
Gilles Peskineabf9b4d2019-07-03 20:42:16 +02002996component_build_mbedtls_config_file () {
2997 msg "build: make with MBEDTLS_CONFIG_FILE" # ~40s
Gilles Peskine6af9dc92022-04-07 20:55:57 +02002998 scripts/config.py -w full_config.h full
Gilles Peskineabf9b4d2019-07-03 20:42:16 +02002999 echo '#error "MBEDTLS_CONFIG_FILE is not working"' >"$CONFIG_H"
3000 make CFLAGS="-I '$PWD' -DMBEDTLS_CONFIG_FILE='\"full_config.h\"'"
Gilles Peskine932b30b2022-04-13 23:23:21 +02003001 # Make sure this feature is enabled. We'll disable it in the next phase.
Gilles Peskine036a9bb2022-04-07 21:06:41 +02003002 programs/test/query_compile_time_config MBEDTLS_NIST_KW_C
3003 make clean
3004
3005 msg "build: make with MBEDTLS_CONFIG_FILE + MBEDTLS_USER_CONFIG_FILE"
3006 # In the user config, disable one feature (for simplicity, pick a feature
3007 # that nothing else depends on).
3008 echo '#undef MBEDTLS_NIST_KW_C' >user_config.h
3009 make CFLAGS="-I '$PWD' -DMBEDTLS_CONFIG_FILE='\"full_config.h\"' -DMBEDTLS_USER_CONFIG_FILE='\"user_config.h\"'"
3010 not programs/test/query_compile_time_config MBEDTLS_NIST_KW_C
3011
3012 rm -f user_config.h full_config.h
Manuel Pégourié-Gonnardedb2dc92015-02-10 14:36:31 +00003013}
3014
Gilles Peskine690a2ef2022-04-07 21:59:14 +02003015component_build_psa_config_file () {
3016 msg "build: make with MBEDTLS_PSA_CRYPTO_CONFIG_FILE" # ~40s
3017 scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
3018 cp "$CRYPTO_CONFIG_H" psa_test_config.h
3019 echo '#error "MBEDTLS_PSA_CRYPTO_CONFIG_FILE is not working"' >"$CRYPTO_CONFIG_H"
3020 make CFLAGS="-I '$PWD' -DMBEDTLS_PSA_CRYPTO_CONFIG_FILE='\"psa_test_config.h\"'"
Gilles Peskine932b30b2022-04-13 23:23:21 +02003021 # Make sure this feature is enabled. We'll disable it in the next phase.
Gilles Peskine690a2ef2022-04-07 21:59:14 +02003022 programs/test/query_compile_time_config MBEDTLS_CMAC_C
3023 make clean
3024
3025 msg "build: make with MBEDTLS_PSA_CRYPTO_CONFIG_FILE + MBEDTLS_PSA_CRYPTO_USER_CONFIG_FILE" # ~40s
3026 # In the user config, disable one feature, which will reflect on the
3027 # mbedtls configuration so we can query it with query_compile_time_config.
3028 echo '#undef PSA_WANT_ALG_CMAC' >psa_user_config.h
3029 scripts/config.py unset MBEDTLS_CMAC_C
3030 make CFLAGS="-I '$PWD' -DMBEDTLS_PSA_CRYPTO_CONFIG_FILE='\"psa_test_config.h\"' -DMBEDTLS_PSA_CRYPTO_USER_CONFIG_FILE='\"psa_user_config.h\"'"
3031 not programs/test/query_compile_time_config MBEDTLS_CMAC_C
3032
3033 rm -f psa_test_config.h psa_user_config.h
Manuel Pégourié-Gonnardedb2dc92015-02-10 14:36:31 +00003034}
3035
Gilles Peskine8f073122018-11-27 15:58:47 +01003036component_test_m32_o0 () {
Gilles Peskinea0c51fb2021-10-07 19:27:16 +02003037 # Build without optimization, so as to use portable C code (in a 32-bit
3038 # build) and not the i386-specific inline assembly.
Simon Butcher8e6a22a2018-07-20 21:27:33 +01003039 msg "build: i386, make, gcc -O0 (ASan build)" # ~ 30s
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02003040 scripts/config.py full
Gilles Peskine8fd59422019-10-21 17:11:33 +02003041 make CC=gcc CFLAGS="$ASAN_CFLAGS -m32 -O0" LDFLAGS="-m32 $ASAN_CFLAGS"
Andres Amaya Garcia84e6ce82017-05-04 11:35:51 +01003042
Simon Butcher8e6a22a2018-07-20 21:27:33 +01003043 msg "test: i386, make, gcc -O0 (ASan build)"
3044 make test
Gilles Peskine8f073122018-11-27 15:58:47 +01003045}
Gilles Peskine878cf602019-01-06 20:50:38 +00003046support_test_m32_o0 () {
3047 case $(uname -m) in
Pengyu Lva89b3672022-10-21 10:50:26 +00003048 amd64|x86_64) true;;
Gilles Peskine878cf602019-01-06 20:50:38 +00003049 *) false;;
3050 esac
3051}
Simon Butcher8e6a22a2018-07-20 21:27:33 +01003052
Gilles Peskine6fa69862021-10-05 09:36:03 +02003053component_test_m32_o2 () {
3054 # Build with optimization, to use the i386 specific inline assembly
3055 # and go faster for tests.
3056 msg "build: i386, make, gcc -O2 (ASan build)" # ~ 30s
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02003057 scripts/config.py full
Gilles Peskine6fa69862021-10-05 09:36:03 +02003058 make CC=gcc CFLAGS="$ASAN_CFLAGS -m32 -O2" LDFLAGS="-m32 $ASAN_CFLAGS"
Simon Butcher8e6a22a2018-07-20 21:27:33 +01003059
Gilles Peskine6fa69862021-10-05 09:36:03 +02003060 msg "test: i386, make, gcc -O2 (ASan build)"
Andres Amaya Garciaf4fbdda2017-05-08 11:19:19 +01003061 make test
Gilles Peskine636c26a2020-03-04 20:46:15 +01003062
Gilles Peskine6fa69862021-10-05 09:36:03 +02003063 msg "test ssl-opt.sh, i386, make, gcc-O2"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02003064 tests/ssl-opt.sh
Gilles Peskine8f073122018-11-27 15:58:47 +01003065}
Gilles Peskine3daa83e2021-10-07 19:25:29 +02003066support_test_m32_o2 () {
Gilles Peskine878cf602019-01-06 20:50:38 +00003067 support_test_m32_o0 "$@"
3068}
Andres Amaya Garciaf4fbdda2017-05-08 11:19:19 +01003069
Gilles Peskine0c6b7992019-04-12 20:29:48 +02003070component_test_m32_everest () {
3071 msg "build: i386, Everest ECDH context (ASan build)" # ~ 6 min
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02003072 scripts/config.py unset MBEDTLS_ECDH_LEGACY_CONTEXT
3073 scripts/config.py set MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED
Gilles Peskine8fd59422019-10-21 17:11:33 +02003074 make CC=gcc CFLAGS="$ASAN_CFLAGS -m32 -O2" LDFLAGS="-m32 $ASAN_CFLAGS"
Gilles Peskine0c6b7992019-04-12 20:29:48 +02003075
3076 msg "test: i386, Everest ECDH context - main suites (inc. selftests) (ASan build)" # ~ 50s
3077 make test
Gilles Peskine636c26a2020-03-04 20:46:15 +01003078
3079 msg "test: i386, Everest ECDH context - ECDH-related part of ssl-opt.sh (ASan build)" # ~ 5s
Gilles Peskinef6d29c62021-07-08 18:41:16 +02003080 tests/ssl-opt.sh -f ECDH
Gilles Peskine636c26a2020-03-04 20:46:15 +01003081
3082 msg "test: i386, Everest ECDH context - compat.sh with some ECDH ciphersuites (ASan build)" # ~ 3 min
3083 # Exclude some symmetric ciphers that are redundant here to gain time.
Gilles Peskinef6d29c62021-07-08 18:41:16 +02003084 tests/compat.sh -f ECDH -V NO -e 'ARCFOUR\|ARIA\|CAMELLIA\|CHACHA\|DES\|RC4'
Gilles Peskine0c6b7992019-04-12 20:29:48 +02003085}
3086support_test_m32_everest () {
3087 support_test_m32_o0 "$@"
3088}
3089
Gilles Peskine8f073122018-11-27 15:58:47 +01003090component_test_mx32 () {
Andres Amaya Garciaf4fbdda2017-05-08 11:19:19 +01003091 msg "build: 64-bit ILP32, make, gcc" # ~ 30s
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02003092 scripts/config.py full
Gilles Peskine5d26e7c2019-06-07 14:50:09 +02003093 make CC=gcc CFLAGS='-Werror -Wall -Wextra -mx32' LDFLAGS='-mx32'
Andres Amaya Garciaf4fbdda2017-05-08 11:19:19 +01003094
3095 msg "test: 64-bit ILP32, make, gcc"
3096 make test
Gilles Peskine8f073122018-11-27 15:58:47 +01003097}
Gilles Peskine878cf602019-01-06 20:50:38 +00003098support_test_mx32 () {
3099 case $(uname -m) in
3100 amd64|x86_64) true;;
3101 *) false;;
3102 esac
3103}
Manuel Pégourié-Gonnardedb2dc92015-02-10 14:36:31 +00003104
Peter Kolbus60c6da22018-12-27 06:59:04 -06003105component_test_min_mpi_window_size () {
3106 msg "build: Default + MBEDTLS_MPI_WINDOW_SIZE=1 (ASan build)" # ~ 10s
Gilles Peskine3bdd4122019-07-27 23:52:53 +02003107 scripts/config.py set MBEDTLS_MPI_WINDOW_SIZE 1
Peter Kolbus60c6da22018-12-27 06:59:04 -06003108 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
3109 make
3110
3111 msg "test: MBEDTLS_MPI_WINDOW_SIZE=1 - main suites (inc. selftests) (ASan build)" # ~ 10s
3112 make test
3113}
3114
Gilles Peskine8f073122018-11-27 15:58:47 +01003115component_test_have_int32 () {
3116 msg "build: gcc, force 32-bit bignum limbs"
Gilles Peskine3bdd4122019-07-27 23:52:53 +02003117 scripts/config.py unset MBEDTLS_HAVE_ASM
3118 scripts/config.py unset MBEDTLS_AESNI_C
3119 scripts/config.py unset MBEDTLS_PADLOCK_C
Gilles Peskine8f073122018-11-27 15:58:47 +01003120 make CC=gcc CFLAGS='-Werror -Wall -Wextra -DMBEDTLS_HAVE_INT32'
Andres Amaya Garcia84e6ce82017-05-04 11:35:51 +01003121
Gilles Peskine8f073122018-11-27 15:58:47 +01003122 msg "test: gcc, force 32-bit bignum limbs"
3123 make test
3124}
Andres Amaya Garciafe843a32017-07-20 13:21:34 +01003125
Gilles Peskine8f073122018-11-27 15:58:47 +01003126component_test_have_int64 () {
3127 msg "build: gcc, force 64-bit bignum limbs"
Gilles Peskine3bdd4122019-07-27 23:52:53 +02003128 scripts/config.py unset MBEDTLS_HAVE_ASM
3129 scripts/config.py unset MBEDTLS_AESNI_C
3130 scripts/config.py unset MBEDTLS_PADLOCK_C
Gilles Peskine8f073122018-11-27 15:58:47 +01003131 make CC=gcc CFLAGS='-Werror -Wall -Wextra -DMBEDTLS_HAVE_INT64'
Gilles Peskine14c3c062018-01-29 21:25:12 +01003132
Gilles Peskine8f073122018-11-27 15:58:47 +01003133 msg "test: gcc, force 64-bit bignum limbs"
3134 make test
3135}
Manuel Pégourié-Gonnardedb2dc92015-02-10 14:36:31 +00003136
Gilles Peskine8f073122018-11-27 15:58:47 +01003137component_test_no_udbl_division () {
3138 msg "build: MBEDTLS_NO_UDBL_DIVISION native" # ~ 10s
Gilles Peskine3bdd4122019-07-27 23:52:53 +02003139 scripts/config.py full
Gilles Peskine3bdd4122019-07-27 23:52:53 +02003140 scripts/config.py set MBEDTLS_NO_UDBL_DIVISION
Gilles Peskine8f073122018-11-27 15:58:47 +01003141 make CFLAGS='-Werror -O1'
Manuel Pégourié-Gonnard2adb3752018-06-07 10:51:44 +02003142
Gilles Peskine8f073122018-11-27 15:58:47 +01003143 msg "test: MBEDTLS_NO_UDBL_DIVISION native" # ~ 10s
3144 make test
3145}
Manuel Pégourié-Gonnard2adb3752018-06-07 10:51:44 +02003146
Gilles Peskine8f073122018-11-27 15:58:47 +01003147component_test_no_64bit_multiplication () {
3148 msg "build: MBEDTLS_NO_64BIT_MULTIPLICATION native" # ~ 10s
Gilles Peskine3bdd4122019-07-27 23:52:53 +02003149 scripts/config.py full
Gilles Peskine3bdd4122019-07-27 23:52:53 +02003150 scripts/config.py set MBEDTLS_NO_64BIT_MULTIPLICATION
Gilles Peskine8f073122018-11-27 15:58:47 +01003151 make CFLAGS='-Werror -O1'
Manuel Pégourié-Gonnard2adb3752018-06-07 10:51:44 +02003152
Gilles Peskine8f073122018-11-27 15:58:47 +01003153 msg "test: MBEDTLS_NO_64BIT_MULTIPLICATION native" # ~ 10s
3154 make test
3155}
Manuel Pégourié-Gonnard2adb3752018-06-07 10:51:44 +02003156
Gilles Peskine3809f5f2020-11-09 15:40:05 +01003157component_test_no_strings () {
3158 msg "build: no strings" # ~10s
3159 scripts/config.py full
3160 # Disable options that activate a large amount of string constants.
3161 scripts/config.py unset MBEDTLS_DEBUG_C
3162 scripts/config.py unset MBEDTLS_ERROR_C
3163 scripts/config.py set MBEDTLS_ERROR_STRERROR_DUMMY
3164 scripts/config.py unset MBEDTLS_VERSION_FEATURES
3165 make CFLAGS='-Werror -Os'
3166
3167 msg "test: no strings" # ~ 10s
3168 make test
3169}
3170
Gilles Peskine8f073122018-11-27 15:58:47 +01003171component_build_arm_none_eabi_gcc () {
Gilles Peskine60d99472021-09-01 20:00:33 +02003172 msg "build: ${ARM_NONE_EABI_GCC_PREFIX}gcc -O1, baremetal+debug" # ~ 10s
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02003173 scripts/config.py baremetal
Gilles Peskineaeedd742020-09-02 11:03:04 +02003174 make CC="${ARM_NONE_EABI_GCC_PREFIX}gcc" AR="${ARM_NONE_EABI_GCC_PREFIX}ar" LD="${ARM_NONE_EABI_GCC_PREFIX}ld" CFLAGS='-std=c99 -Werror -Wall -Wextra -O1' lib
Gilles Peskine18487f62020-04-30 23:11:54 +02003175
Gilles Peskine60d99472021-09-01 20:00:33 +02003176 msg "size: ${ARM_NONE_EABI_GCC_PREFIX}gcc -O1, baremetal+debug"
Gilles Peskine18487f62020-04-30 23:11:54 +02003177 ${ARM_NONE_EABI_GCC_PREFIX}size library/*.o
Gilles Peskine8f073122018-11-27 15:58:47 +01003178}
Manuel Pégourié-Gonnard2adb3752018-06-07 10:51:44 +02003179
Manuel Pégourié-Gonnard71930162020-08-18 10:28:51 +02003180component_build_arm_linux_gnueabi_gcc_arm5vte () {
Gilles Peskine60d99472021-09-01 20:00:33 +02003181 msg "build: ${ARM_LINUX_GNUEABI_GCC_PREFIX}gcc -march=arm5vte, baremetal+debug" # ~ 10s
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02003182 scripts/config.py baremetal
Gilles Peskine2c897d72019-08-09 16:05:05 +02003183 # Build for a target platform that's close to what Debian uses
3184 # for its "armel" distribution (https://wiki.debian.org/ArmEabiPort).
Dave Rodgman52af7692022-03-31 14:27:24 +01003185 # See https://github.com/Mbed-TLS/mbedtls/pull/2169 and comments.
Manuel Pégourié-Gonnard71930162020-08-18 10:28:51 +02003186 # Build everything including programs, see for example
Dave Rodgman52af7692022-03-31 14:27:24 +01003187 # https://github.com/Mbed-TLS/mbedtls/pull/3449#issuecomment-675313720
Manuel Pégourié-Gonnard71930162020-08-18 10:28:51 +02003188 make CC="${ARM_LINUX_GNUEABI_GCC_PREFIX}gcc" AR="${ARM_LINUX_GNUEABI_GCC_PREFIX}ar" CFLAGS='-Werror -Wall -Wextra -march=armv5te -O1' LDFLAGS='-march=armv5te'
3189
Gilles Peskine60d99472021-09-01 20:00:33 +02003190 msg "size: ${ARM_LINUX_GNUEABI_GCC_PREFIX}gcc -march=armv5te -O1, baremetal+debug"
Manuel Pégourié-Gonnard71930162020-08-18 10:28:51 +02003191 ${ARM_LINUX_GNUEABI_GCC_PREFIX}size library/*.o
3192}
3193support_build_arm_linux_gnueabi_gcc_arm5vte () {
3194 type ${ARM_LINUX_GNUEABI_GCC_PREFIX}gcc >/dev/null 2>&1
3195}
3196
3197component_build_arm_none_eabi_gcc_arm5vte () {
Gilles Peskine60d99472021-09-01 20:00:33 +02003198 msg "build: ${ARM_NONE_EABI_GCC_PREFIX}gcc -march=arm5vte, baremetal+debug" # ~ 10s
Manuel Pégourié-Gonnard71930162020-08-18 10:28:51 +02003199 scripts/config.py baremetal
3200 # This is an imperfect substitute for
3201 # component_build_arm_linux_gnueabi_gcc_arm5vte
Manuel Pégourié-Gonnard9a260a62021-07-06 09:44:59 +02003202 # in case the gcc-arm-linux-gnueabi toolchain is not available
Gilles Peskineaeedd742020-09-02 11:03:04 +02003203 make CC="${ARM_NONE_EABI_GCC_PREFIX}gcc" AR="${ARM_NONE_EABI_GCC_PREFIX}ar" CFLAGS='-std=c99 -Werror -Wall -Wextra -march=armv5te -O1' LDFLAGS='-march=armv5te' SHELL='sh -x' lib
Gilles Peskine18487f62020-04-30 23:11:54 +02003204
Gilles Peskine60d99472021-09-01 20:00:33 +02003205 msg "size: ${ARM_NONE_EABI_GCC_PREFIX}gcc -march=armv5te -O1, baremetal+debug"
Gilles Peskine18487f62020-04-30 23:11:54 +02003206 ${ARM_NONE_EABI_GCC_PREFIX}size library/*.o
Gilles Peskine93e4e032019-08-05 11:34:25 +02003207}
3208
Gilles Peskine6e2fb862020-04-30 23:00:53 +02003209component_build_arm_none_eabi_gcc_m0plus () {
Gilles Peskine60d99472021-09-01 20:00:33 +02003210 msg "build: ${ARM_NONE_EABI_GCC_PREFIX}gcc -mthumb -mcpu=cortex-m0plus, baremetal_size" # ~ 10s
3211 scripts/config.py baremetal_size
Gilles Peskineaeedd742020-09-02 11:03:04 +02003212 make CC="${ARM_NONE_EABI_GCC_PREFIX}gcc" AR="${ARM_NONE_EABI_GCC_PREFIX}ar" LD="${ARM_NONE_EABI_GCC_PREFIX}ld" CFLAGS='-std=c99 -Werror -Wall -Wextra -mthumb -mcpu=cortex-m0plus -Os' lib
Gilles Peskine18487f62020-04-30 23:11:54 +02003213
Gilles Peskine60d99472021-09-01 20:00:33 +02003214 msg "size: ${ARM_NONE_EABI_GCC_PREFIX}gcc -mthumb -mcpu=cortex-m0plus -Os, baremetal_size"
Gilles Peskine18487f62020-04-30 23:11:54 +02003215 ${ARM_NONE_EABI_GCC_PREFIX}size library/*.o
Gilles Peskine6e2fb862020-04-30 23:00:53 +02003216}
3217
Gilles Peskine8f073122018-11-27 15:58:47 +01003218component_build_arm_none_eabi_gcc_no_udbl_division () {
Gilles Peskine6d061342020-04-30 18:19:32 +02003219 msg "build: ${ARM_NONE_EABI_GCC_PREFIX}gcc -DMBEDTLS_NO_UDBL_DIVISION, make" # ~ 10s
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02003220 scripts/config.py baremetal
3221 scripts/config.py set MBEDTLS_NO_UDBL_DIVISION
Gilles Peskineaeedd742020-09-02 11:03:04 +02003222 make CC="${ARM_NONE_EABI_GCC_PREFIX}gcc" AR="${ARM_NONE_EABI_GCC_PREFIX}ar" LD="${ARM_NONE_EABI_GCC_PREFIX}ld" CFLAGS='-std=c99 -Werror -Wall -Wextra' lib
Gilles Peskine8f073122018-11-27 15:58:47 +01003223 echo "Checking that software 64-bit division is not required"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02003224 not grep __aeabi_uldiv library/*.o
Gilles Peskine8f073122018-11-27 15:58:47 +01003225}
Manuel Pégourié-Gonnard2adb3752018-06-07 10:51:44 +02003226
Gilles Peskine8f073122018-11-27 15:58:47 +01003227component_build_arm_none_eabi_gcc_no_64bit_multiplication () {
Gilles Peskine6d061342020-04-30 18:19:32 +02003228 msg "build: ${ARM_NONE_EABI_GCC_PREFIX}gcc MBEDTLS_NO_64BIT_MULTIPLICATION, make" # ~ 10s
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02003229 scripts/config.py baremetal
3230 scripts/config.py set MBEDTLS_NO_64BIT_MULTIPLICATION
Gilles Peskineaeedd742020-09-02 11:03:04 +02003231 make CC="${ARM_NONE_EABI_GCC_PREFIX}gcc" AR="${ARM_NONE_EABI_GCC_PREFIX}ar" LD="${ARM_NONE_EABI_GCC_PREFIX}ld" CFLAGS='-std=c99 -Werror -O1 -march=armv6-m -mthumb' lib
Gilles Peskine8f073122018-11-27 15:58:47 +01003232 echo "Checking that software 64-bit multiplication is not required"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02003233 not grep __aeabi_lmul library/*.o
Gilles Peskine8f073122018-11-27 15:58:47 +01003234}
Manuel Pégourié-Gonnard2adb3752018-06-07 10:51:44 +02003235
Dave Rodgman43ea9ab2023-06-02 10:26:24 -04003236component_build_arm_clang_thumb () {
3237 # ~ 30s
3238
3239 scripts/config.py baremetal
3240
3241 msg "build: clang thumb 2, make"
3242 make clean
3243 make CC="clang" CFLAGS='-std=c99 -Werror -Os --target=arm-linux-gnueabihf -march=armv7-m -mthumb' lib
3244
3245 # Some Thumb 1 asm is sensitive to optimisation level, so test both -O0 and -Os
3246 msg "build: clang thumb 1 -O0, make"
3247 make clean
3248 make CC="clang" CFLAGS='-std=c99 -Werror -O0 --target=arm-linux-gnueabihf -mcpu=arm1136j-s -mthumb' lib
3249
3250 msg "build: clang thumb 1 -Os, make"
3251 make clean
3252 make CC="clang" CFLAGS='-std=c99 -Werror -Os --target=arm-linux-gnueabihf -mcpu=arm1136j-s -mthumb' lib
3253}
3254
Gilles Peskine8f073122018-11-27 15:58:47 +01003255component_build_armcc () {
Gilles Peskine18487f62020-04-30 23:11:54 +02003256 msg "build: ARM Compiler 5"
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02003257 scripts/config.py baremetal
Gilles Peskinebca6ab92017-12-19 18:24:31 +01003258 make CC="$ARMC5_CC" AR="$ARMC5_AR" WARNING_CFLAGS='--strict --c99' lib
Gilles Peskine18487f62020-04-30 23:11:54 +02003259
3260 msg "size: ARM Compiler 5"
3261 "$ARMC5_FROMELF" -z library/*.o
3262
Gilles Peskinebca6ab92017-12-19 18:24:31 +01003263 make clean
Andres AG87bb5772016-09-27 15:05:15 +01003264
Dave Rodgmanc2e225b2023-06-02 13:54:00 -04003265 # Compile mostly with -O1 since some Arm inline assembly is disabled for -O0.
3266
Gilles Peskinebca6ab92017-12-19 18:24:31 +01003267 # ARM Compiler 6 - Target ARMv7-A
3268 armc6_build_test "--target=arm-arm-none-eabi -march=armv7-a"
Simon Butcher940737f2017-07-23 13:42:36 +02003269
Gilles Peskinebca6ab92017-12-19 18:24:31 +01003270 # ARM Compiler 6 - Target ARMv7-M
3271 armc6_build_test "--target=arm-arm-none-eabi -march=armv7-m"
Simon Butcher940737f2017-07-23 13:42:36 +02003272
Gilles Peskinebca6ab92017-12-19 18:24:31 +01003273 # ARM Compiler 6 - Target ARMv8-A - AArch32
3274 armc6_build_test "--target=arm-arm-none-eabi -march=armv8.2-a"
Simon Butcher940737f2017-07-23 13:42:36 +02003275
Gilles Peskinebca6ab92017-12-19 18:24:31 +01003276 # ARM Compiler 6 - Target ARMv8-M
3277 armc6_build_test "--target=arm-arm-none-eabi -march=armv8-m.main"
Simon Butcher940737f2017-07-23 13:42:36 +02003278
Gilles Peskinebca6ab92017-12-19 18:24:31 +01003279 # ARM Compiler 6 - Target ARMv8-A - AArch64
3280 armc6_build_test "--target=aarch64-arm-none-eabi -march=armv8.2-a"
Dave Rodgmanc2e225b2023-06-02 13:54:00 -04003281
3282 # ARM Compiler 6 - Target Cortex-M0 - no optimisation
3283 armc6_build_test "-O0 --target=arm-arm-none-eabi -mcpu=cortex-m0"
3284
3285 # ARM Compiler 6 - Target Cortex-M0
3286 armc6_build_test "-Os --target=arm-arm-none-eabi -mcpu=cortex-m0"
Gilles Peskine8f073122018-11-27 15:58:47 +01003287}
Dave Rodgmanc2e225b2023-06-02 13:54:00 -04003288
Pengyu Lvd216c042023-03-03 18:23:35 +08003289support_build_armcc () {
3290 armc5_cc="$ARMC5_BIN_DIR/armcc"
3291 armc6_cc="$ARMC6_BIN_DIR/armclang"
3292 (check_tools "$armc5_cc" "$armc6_cc" > /dev/null 2>&1)
3293}
Manuel Pégourié-Gonnardc5c59392015-02-10 17:38:54 +01003294
Manuel Pégourié-Gonnarddd8807f2020-02-26 09:56:27 +01003295component_build_ssl_hw_record_accel() {
3296 msg "build: default config with MBEDTLS_SSL_HW_RECORD_ACCEL enabled"
3297 scripts/config.pl set MBEDTLS_SSL_HW_RECORD_ACCEL
3298 make CFLAGS='-Werror -O1'
3299}
3300
Hanno Beckera711f6e2020-05-04 12:03:51 +01003301component_test_tls13_experimental () {
3302 msg "build: default config with MBEDTLS_SSL_PROTO_TLS1_3_EXPERIMENTAL enabled"
3303 scripts/config.pl set MBEDTLS_SSL_PROTO_TLS1_3_EXPERIMENTAL
3304 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
3305 make
3306 msg "test: default config with MBEDTLS_SSL_PROTO_TLS1_3_EXPERIMENTAL enabled"
3307 make test
3308}
3309
Gilles Peskine8f073122018-11-27 15:58:47 +01003310component_build_mingw () {
3311 msg "build: Windows cross build - mingw64, make (Link Library)" # ~ 30s
Andrzej Kurek232e8f92019-10-03 03:18:01 -04003312 make CC=i686-w64-mingw32-gcc AR=i686-w64-mingw32-ar LD=i686-w64-minggw32-ld CFLAGS='-Werror -Wall -Wextra' WINDOWS_BUILD=1 lib programs
Hanno Beckere963efa2018-01-03 10:03:43 +00003313
Gilles Peskine8f073122018-11-27 15:58:47 +01003314 # note Make tests only builds the tests, but doesn't run them
Andrzej Kurek232e8f92019-10-03 03:18:01 -04003315 make CC=i686-w64-mingw32-gcc AR=i686-w64-mingw32-ar LD=i686-w64-minggw32-ld CFLAGS='-Werror' WINDOWS_BUILD=1 tests
Gilles Peskine8f073122018-11-27 15:58:47 +01003316 make WINDOWS_BUILD=1 clean
Gilles Peskine2a458da2017-05-12 15:26:58 +02003317
Gilles Peskine8f073122018-11-27 15:58:47 +01003318 msg "build: Windows cross build - mingw64, make (DLL)" # ~ 30s
Andrzej Kurek232e8f92019-10-03 03:18:01 -04003319 make CC=i686-w64-mingw32-gcc AR=i686-w64-mingw32-ar LD=i686-w64-minggw32-ld CFLAGS='-Werror -Wall -Wextra' WINDOWS_BUILD=1 SHARED=1 lib programs
3320 make CC=i686-w64-mingw32-gcc AR=i686-w64-mingw32-ar LD=i686-w64-minggw32-ld CFLAGS='-Werror -Wall -Wextra' WINDOWS_BUILD=1 SHARED=1 tests
Gilles Peskine8f073122018-11-27 15:58:47 +01003321 make WINDOWS_BUILD=1 clean
Pengyu Lvb2ca0322023-10-19 17:17:19 +08003322
3323 msg "build: Windows cross build - mingw64, make (Library only, AESNI intrinsics)" # ~ 30s
3324 make CC=i686-w64-mingw32-gcc AR=i686-w64-mingw32-ar LD=i686-w64-minggw32-ld CFLAGS='-Werror -Wall -Wextra -maes -msse2 -mpclmul' WINDOWS_BUILD=1 lib
Pengyu Lve6cbec82023-10-20 09:49:01 +08003325 make WINDOWS_BUILD=1 clean
3326
3327 msg "build: Windows cross build - mingw64, make (Library only, default config without MBEDTLS_AESNI_C)" # ~ 30s
3328 ./scripts/config.py unset MBEDTLS_AESNI_C
3329 make CC=i686-w64-mingw32-gcc AR=i686-w64-mingw32-ar LD=i686-w64-minggw32-ld CFLAGS='-Werror -Wall -Wextra' WINDOWS_BUILD=1 lib
3330 make WINDOWS_BUILD=1 clean
Pengyu Lvb2ca0322023-10-19 17:17:19 +08003331 }
Jaeden Amero117b8a42019-04-17 15:19:26 +01003332support_build_mingw() {
Pengyu Lva19ce122023-02-24 15:38:52 +08003333 case $(i686-w64-mingw32-gcc -dumpversion 2>/dev/null) in
3334 [0-5]*|"") false;;
Jaeden Amero117b8a42019-04-17 15:19:26 +01003335 *) true;;
3336 esac
3337}
Simon Butcher91aef332016-11-17 09:20:50 +00003338
Gilles Peskine8f073122018-11-27 15:58:47 +01003339component_test_memsan () {
Gilles Peskine7ad603e2017-12-10 23:22:20 +01003340 msg "build: MSan (clang)" # ~ 1 min 20s
Gilles Peskine5d46f6a2019-07-27 23:52:53 +02003341 scripts/config.py unset MBEDTLS_AESNI_C # memsan doesn't grok asm
Gilles Peskine7ad603e2017-12-10 23:22:20 +01003342 CC=clang cmake -D CMAKE_BUILD_TYPE:String=MemSan .
3343 make
Manuel Pégourié-Gonnard4a9dc2a2014-05-09 13:46:59 +02003344
Gilles Peskine7ad603e2017-12-10 23:22:20 +01003345 msg "test: main suites (MSan)" # ~ 10s
3346 make test
Manuel Pégourié-Gonnard9bda9b32014-11-20 13:10:22 +01003347
Gilles Peskine93aaf2e2019-06-14 18:27:03 +02003348 msg "program demos (MSan)" # ~20s
3349 tests/scripts/run_demos.py
3350
Gilles Peskine7ad603e2017-12-10 23:22:20 +01003351 msg "test: ssl-opt.sh (MSan)" # ~ 1 min
Gilles Peskinef6d29c62021-07-08 18:41:16 +02003352 tests/ssl-opt.sh
Manuel Pégourié-Gonnard9bda9b32014-11-20 13:10:22 +01003353
Gilles Peskine7ad603e2017-12-10 23:22:20 +01003354 # Optional part(s)
Manuel Pégourié-Gonnard9bda9b32014-11-20 13:10:22 +01003355
Gilles Peskine7ad603e2017-12-10 23:22:20 +01003356 if [ "$MEMORY" -gt 0 ]; then
3357 msg "test: compat.sh (MSan)" # ~ 6 min 20s
Gilles Peskinef6d29c62021-07-08 18:41:16 +02003358 tests/compat.sh
Gilles Peskine7ad603e2017-12-10 23:22:20 +01003359 fi
Gilles Peskine8f073122018-11-27 15:58:47 +01003360}
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +01003361
Gilles Peskine69f190e2019-01-10 00:11:42 +01003362component_test_valgrind () {
Gilles Peskine7ad603e2017-12-10 23:22:20 +01003363 msg "build: Release (clang)"
Gilles Peskine619b73d2022-11-29 16:45:30 +01003364 # default config, in particular without MBEDTLS_USE_PSA_CRYPTO
Gilles Peskine7ad603e2017-12-10 23:22:20 +01003365 CC=clang cmake -D CMAKE_BUILD_TYPE:String=Release .
3366 make
Manuel Pégourié-Gonnard392d3dd2015-01-26 14:03:56 +00003367
Gilles Peskine619b73d2022-11-29 16:45:30 +01003368 msg "test: main suites, Valgrind (default config)"
Gilles Peskine7ad603e2017-12-10 23:22:20 +01003369 make memcheck
Manuel Pégourié-Gonnard392d3dd2015-01-26 14:03:56 +00003370
Gilles Peskine636c26a2020-03-04 20:46:15 +01003371 # Optional parts (slow; currently broken on OS X because programs don't
3372 # seem to receive signals under valgrind on OS X).
Gilles Peskine619b73d2022-11-29 16:45:30 +01003373 # These optional parts don't run on the CI.
Gilles Peskine7ad603e2017-12-10 23:22:20 +01003374 if [ "$MEMORY" -gt 0 ]; then
Gilles Peskine619b73d2022-11-29 16:45:30 +01003375 msg "test: ssl-opt.sh --memcheck (default config)"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02003376 tests/ssl-opt.sh --memcheck
Gilles Peskine7ad603e2017-12-10 23:22:20 +01003377 fi
Manuel Pégourié-Gonnard392d3dd2015-01-26 14:03:56 +00003378
Gilles Peskine7ad603e2017-12-10 23:22:20 +01003379 if [ "$MEMORY" -gt 1 ]; then
Gilles Peskine619b73d2022-11-29 16:45:30 +01003380 msg "test: compat.sh --memcheck (default config)"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02003381 tests/compat.sh --memcheck
Gilles Peskine7ad603e2017-12-10 23:22:20 +01003382 fi
Piotr Nowicki9978e6e2020-04-07 16:07:05 +02003383
3384 if [ "$MEMORY" -gt 0 ]; then
Gilles Peskine619b73d2022-11-29 16:45:30 +01003385 msg "test: context-info.sh --memcheck (default config)"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02003386 tests/context-info.sh --memcheck
Piotr Nowicki9978e6e2020-04-07 16:07:05 +02003387 fi
Gilles Peskine8f073122018-11-27 15:58:47 +01003388}
Manuel Pégourié-Gonnard392d3dd2015-01-26 14:03:56 +00003389
Gilles Peskine619b73d2022-11-29 16:45:30 +01003390component_test_valgrind_psa () {
3391 msg "build: Release, full (clang)"
3392 # full config, in particular with MBEDTLS_USE_PSA_CRYPTO
3393 scripts/config.py full
3394 CC=clang cmake -D CMAKE_BUILD_TYPE:String=Release .
3395 make
3396
3397 msg "test: main suites, Valgrind (full config)"
3398 make memcheck
3399}
3400
Paul Elliott2ab9a7a2021-11-25 17:29:40 +00003401support_test_cmake_out_of_source () {
3402 distrib_id=""
3403 distrib_ver=""
3404 distrib_ver_minor=""
3405 distrib_ver_major=""
3406
3407 # Attempt to parse lsb-release to find out distribution and version. If not
3408 # found this should fail safe (test is supported).
3409 if [[ -f /etc/lsb-release ]]; then
3410
3411 while read -r lsb_line; do
3412 case "$lsb_line" in
3413 "DISTRIB_ID"*) distrib_id=${lsb_line/#DISTRIB_ID=};;
3414 "DISTRIB_RELEASE"*) distrib_ver=${lsb_line/#DISTRIB_RELEASE=};;
3415 esac
3416 done < /etc/lsb-release
3417
3418 distrib_ver_major="${distrib_ver%%.*}"
3419 distrib_ver="${distrib_ver#*.}"
3420 distrib_ver_minor="${distrib_ver%%.*}"
3421 fi
3422
3423 # Running the out of source CMake test on Ubuntu 16.04 using more than one
3424 # processor (as the CI does) can create a race condition whereby the build
3425 # fails to see a generated file, despite that file actually having been
3426 # generated. This problem appears to go away with 18.04 or newer, so make
3427 # the out of source tests unsupported on Ubuntu 16.04.
3428 [ "$distrib_id" != "Ubuntu" ] || [ "$distrib_ver_major" -gt 16 ]
3429}
3430
Gilles Peskine8f073122018-11-27 15:58:47 +01003431component_test_cmake_out_of_source () {
3432 msg "build: cmake 'out-of-source' build"
Gilles Peskine8f073122018-11-27 15:58:47 +01003433 MBEDTLS_ROOT_DIR="$PWD"
3434 mkdir "$OUT_OF_SOURCE_DIR"
3435 cd "$OUT_OF_SOURCE_DIR"
Gilles Peskine25319702021-10-07 19:34:57 +02003436 cmake -D CMAKE_BUILD_TYPE:String=Check "$MBEDTLS_ROOT_DIR"
Gilles Peskine8f073122018-11-27 15:58:47 +01003437 make
Manuel Pégourié-Gonnard392d3dd2015-01-26 14:03:56 +00003438
Gilles Peskine8f073122018-11-27 15:58:47 +01003439 msg "test: cmake 'out-of-source' build"
3440 make test
3441 # Test an SSL option that requires an auxiliary script in test/scripts/.
3442 # Also ensure that there are no error messages such as
3443 # "No such file or directory", which would indicate that some required
3444 # file is missing (ssl-opt.sh tolerates the absence of some files so
3445 # may exit with status 0 but emit errors).
Gilles Peskinee8133cb2022-04-15 22:43:38 +02003446 ./tests/ssl-opt.sh -f 'Fallback SCSV: beginning of list' >ssl-opt.out 2>ssl-opt.err
3447 grep PASS ssl-opt.out
Gilles Peskine0a7984f2020-03-28 18:56:09 +01003448 cat ssl-opt.err >&2
3449 # If ssl-opt.err is non-empty, record an error and keep going.
Gilles Peskinef6d29c62021-07-08 18:41:16 +02003450 [ ! -s ssl-opt.err ]
Gilles Peskinee8133cb2022-04-15 22:43:38 +02003451 rm ssl-opt.out ssl-opt.err
Gilles Peskine8f073122018-11-27 15:58:47 +01003452 cd "$MBEDTLS_ROOT_DIR"
3453 rm -rf "$OUT_OF_SOURCE_DIR"
Gilles Peskine8f073122018-11-27 15:58:47 +01003454}
Andres AGdc192212016-08-31 17:33:13 +01003455
Jaeden Ameroab83fdf2019-06-20 17:38:22 +01003456component_test_cmake_as_subdirectory () {
3457 msg "build: cmake 'as-subdirectory' build"
Jaeden Ameroab83fdf2019-06-20 17:38:22 +01003458 cd programs/test/cmake_subproject
3459 cmake .
3460 make
Gilles Peskinef6d29c62021-07-08 18:41:16 +02003461 ./cmake_subproject
Jaeden Ameroab83fdf2019-06-20 17:38:22 +01003462}
Gilles Peskineca9cfca2022-02-04 00:21:12 +01003463support_test_cmake_as_subdirectory () {
3464 support_test_cmake_out_of_source
3465}
Jaeden Ameroab83fdf2019-06-20 17:38:22 +01003466
David Horstmann175afbd2023-01-12 14:17:01 +00003467component_build_cmake_custom_config_file () {
David Horstmann67622312023-01-31 10:34:44 +00003468 # Make a copy of config file to use for the in-tree test
3469 cp "$CONFIG_H" include/mbedtls_config_in_tree_copy.h
David Horstmann175afbd2023-01-12 14:17:01 +00003470
3471 MBEDTLS_ROOT_DIR="$PWD"
3472 mkdir "$OUT_OF_SOURCE_DIR"
3473 cd "$OUT_OF_SOURCE_DIR"
3474
David Horstmann67622312023-01-31 10:34:44 +00003475 # Build once to get the generated files (which need an intact config file)
David Horstmann175afbd2023-01-12 14:17:01 +00003476 cmake "$MBEDTLS_ROOT_DIR"
3477 make
3478
3479 msg "build: cmake with -DMBEDTLS_CONFIG_FILE"
3480 scripts/config.py -w full_config.h full
David Horstmann67622312023-01-31 10:34:44 +00003481 echo '#error "cmake -DMBEDTLS_CONFIG_FILE is not working."' > "$MBEDTLS_ROOT_DIR/$CONFIG_H"
David Horstmann175afbd2023-01-12 14:17:01 +00003482 cmake -DGEN_FILES=OFF -DMBEDTLS_CONFIG_FILE=full_config.h "$MBEDTLS_ROOT_DIR"
3483 make
3484
3485 msg "build: cmake with -DMBEDTLS_CONFIG_FILE + -DMBEDTLS_USER_CONFIG_FILE"
3486 # In the user config, disable one feature (for simplicity, pick a feature
3487 # that nothing else depends on).
3488 echo '#undef MBEDTLS_NIST_KW_C' >user_config.h
3489
3490 cmake -DGEN_FILES=OFF -DMBEDTLS_CONFIG_FILE=full_config.h -DMBEDTLS_USER_CONFIG_FILE=user_config.h "$MBEDTLS_ROOT_DIR"
3491 make
3492 not programs/test/query_compile_time_config MBEDTLS_NIST_KW_C
3493
3494 rm -f user_config.h full_config.h
3495
3496 cd "$MBEDTLS_ROOT_DIR"
3497 rm -rf "$OUT_OF_SOURCE_DIR"
3498
3499 # Now repeat the test for an in-tree build:
3500
David Horstmann67622312023-01-31 10:34:44 +00003501 # Restore config for the in-tree test
3502 mv include/mbedtls_config_in_tree_copy.h "$CONFIG_H"
David Horstmann175afbd2023-01-12 14:17:01 +00003503
David Horstmann67622312023-01-31 10:34:44 +00003504 # Build once to get the generated files (which need an intact config)
David Horstmann175afbd2023-01-12 14:17:01 +00003505 cmake .
3506 make
3507
3508 msg "build: cmake (in-tree) with -DMBEDTLS_CONFIG_FILE"
3509 scripts/config.py -w full_config.h full
David Horstmann67622312023-01-31 10:34:44 +00003510 echo '#error "cmake -DMBEDTLS_CONFIG_FILE is not working."' > "$MBEDTLS_ROOT_DIR/$CONFIG_H"
David Horstmann175afbd2023-01-12 14:17:01 +00003511 cmake -DGEN_FILES=OFF -DMBEDTLS_CONFIG_FILE=full_config.h .
3512 make
3513
3514 msg "build: cmake (in-tree) with -DMBEDTLS_CONFIG_FILE + -DMBEDTLS_USER_CONFIG_FILE"
3515 # In the user config, disable one feature (for simplicity, pick a feature
3516 # that nothing else depends on).
3517 echo '#undef MBEDTLS_NIST_KW_C' >user_config.h
3518
3519 cmake -DGEN_FILES=OFF -DMBEDTLS_CONFIG_FILE=full_config.h -DMBEDTLS_USER_CONFIG_FILE=user_config.h .
3520 make
3521 not programs/test/query_compile_time_config MBEDTLS_NIST_KW_C
3522
3523 rm -f user_config.h full_config.h
3524}
3525support_build_cmake_custom_config_file () {
3526 support_test_cmake_out_of_source
3527}
3528
3529
Tom Cosgrove51170622023-09-01 10:40:15 +01003530component_build_zeroize_checks () {
3531 msg "build: check for obviously wrong calls to mbedtls_platform_zeroize()"
3532
3533 scripts/config.py full
3534
3535 # Only compile - we're looking for sizeof-pointer-memaccess warnings
Tom Cosgrove5ffb1972023-09-01 14:40:21 +01003536 make CC=gcc CFLAGS="'-DMBEDTLS_USER_CONFIG_FILE=\"../tests/configs/user-config-zeroize-memset.h\"' -DMBEDTLS_TEST_DEFINES_ZEROIZE -Werror -Wsizeof-pointer-memaccess"
Tom Cosgrove51170622023-09-01 10:40:15 +01003537}
3538
3539
Gilles Peskine8f073122018-11-27 15:58:47 +01003540component_test_zeroize () {
3541 # Test that the function mbedtls_platform_zeroize() is not optimized away by
3542 # different combinations of compilers and optimization flags by using an
3543 # auxiliary GDB script. Unfortunately, GDB does not return error values to the
3544 # system in all cases that the script fails, so we must manually search the
3545 # output to check whether the pass string is present and no failure strings
3546 # were printed.
Andres AGdc192212016-08-31 17:33:13 +01003547
Gilles Peskine4976e822019-01-06 19:52:22 +00003548 # Don't try to disable ASLR. We don't care about ASLR here. We do care
3549 # about a spurious message if Gdb tries and fails, so suppress that.
3550 gdb_disable_aslr=
3551 if [ -z "$(gdb -batch -nw -ex 'set disable-randomization off' 2>&1)" ]; then
3552 gdb_disable_aslr='set disable-randomization off'
3553 fi
3554
Gilles Peskine8f073122018-11-27 15:58:47 +01003555 for optimization_flag in -O2 -O3 -Ofast -Os; do
Gilles Peskine55f7c942019-01-09 22:28:21 +01003556 for compiler in clang gcc; do
3557 msg "test: $compiler $optimization_flag, mbedtls_platform_zeroize()"
3558 make programs CC="$compiler" DEBUG=1 CFLAGS="$optimization_flag"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02003559 gdb -ex "$gdb_disable_aslr" -x tests/scripts/test_zeroize.gdb -nw -batch -nx 2>&1 | tee test_zeroize.log
3560 grep "The buffer was correctly zeroized" test_zeroize.log
3561 not grep -i "error" test_zeroize.log
Gilles Peskine55f7c942019-01-09 22:28:21 +01003562 rm -f test_zeroize.log
3563 make clean
3564 done
Andres Amaya Garcia29673812017-10-25 10:35:51 +01003565 done
Gilles Peskine8f073122018-11-27 15:58:47 +01003566}
Gilles Peskine192c72f2017-12-21 15:59:21 +01003567
Bence Szépkúti9f849112021-10-19 15:05:36 +02003568component_test_psa_compliance () {
Bence Szépkútic1e79fd2021-11-11 20:13:14 +01003569 msg "build: make, default config + CMAC, libmbedcrypto.a only"
3570 scripts/config.py set MBEDTLS_CMAC_C
Bence Szépkútiab796e62021-10-25 19:29:07 +02003571 make -C library libmbedcrypto.a
Bence Szépkúti9f849112021-10-19 15:05:36 +02003572
3573 msg "unit test: test_psa_compliance.py"
3574 ./tests/scripts/test_psa_compliance.py
3575}
3576
3577support_test_psa_compliance () {
Bence Szépkútid6cf0892021-11-03 11:36:09 +01003578 # psa-compliance-tests only supports CMake >= 3.10.0
Bence Szépkútiab796e62021-10-25 19:29:07 +02003579 ver="$(cmake --version)"
3580 ver="${ver#cmake version }"
3581 ver_major="${ver%%.*}"
3582
3583 ver="${ver#*.}"
3584 ver_minor="${ver%%.*}"
3585
3586 [ "$ver_major" -eq 3 ] && [ "$ver_minor" -ge 10 ]
Bence Szépkúti9f849112021-10-19 15:05:36 +02003587}
3588
Gilles Peskineb9e56fb2022-12-09 12:23:35 +01003589component_check_code_style () {
3590 msg "Check C code style"
3591 ./scripts/code_style.py
David Horstmanne09c4762022-11-10 18:30:52 +00003592}
3593
Gilles Peskineb9e56fb2022-12-09 12:23:35 +01003594support_check_code_style() {
David Horstmanne09c4762022-11-10 18:30:52 +00003595 case $(uncrustify --version) in
3596 *0.75.1*) true;;
3597 *) false;;
3598 esac
3599}
3600
Gilles Peskine8f073122018-11-27 15:58:47 +01003601component_check_python_files () {
3602 msg "Lint: Python scripts"
Gilles Peskinef6d29c62021-07-08 18:41:16 +02003603 tests/scripts/check-python-files.sh
Gilles Peskine8f073122018-11-27 15:58:47 +01003604}
Gilles Peskine192c72f2017-12-21 15:59:21 +01003605
Gilles Peskine8f073122018-11-27 15:58:47 +01003606component_check_generate_test_code () {
3607 msg "uint test: generate_test_code.py"
Manuel Pégourié-Gonnarddfb114a2020-06-02 11:40:08 +02003608 # unittest writes out mundane stuff like number or tests run on stderr.
3609 # Our convention is to reserve stderr for actual errors, and write
3610 # harmless info on stdout so it can be suppress with --quiet.
Gilles Peskinef6d29c62021-07-08 18:41:16 +02003611 ./tests/scripts/test_generate_test_code.py 2>&1
Gilles Peskine8f073122018-11-27 15:58:47 +01003612}
Gilles Peskine192c72f2017-12-21 15:59:21 +01003613
3614################################################################
3615#### Termination
3616################################################################
3617
Gilles Peskine8f073122018-11-27 15:58:47 +01003618post_report () {
3619 msg "Done, cleaning up"
Gilles Peskine24bdf022020-03-30 20:11:39 +02003620 final_cleanup
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +01003621
Gilles Peskine8f073122018-11-27 15:58:47 +01003622 final_report
3623}
3624
3625
3626
3627################################################################
3628#### Run all the things
3629################################################################
3630
Gilles Peskinea5eb22d2020-03-28 21:09:21 +01003631# Function invoked by --error-test to test error reporting.
3632pseudo_component_error_test () {
Gilles Peskine202e9b42021-08-02 23:28:00 +02003633 msg "Testing error reporting $error_test_i"
Gilles Peskinea5eb22d2020-03-28 21:09:21 +01003634 if [ $KEEP_GOING -ne 0 ]; then
3635 echo "Expect three failing commands."
3636 fi
Gilles Peskine202e9b42021-08-02 23:28:00 +02003637 # If the component doesn't run in a subshell, changing error_test_i to an
3638 # invalid integer will cause an error in the loop that runs this function.
3639 error_test_i=this_should_not_be_used_since_the_component_runs_in_a_subshell
Gilles Peskinecb4bfac2021-08-02 23:14:03 +02003640 # Expected error: 'grep non_existent /dev/null -> 1'
Gilles Peskinea5eb22d2020-03-28 21:09:21 +01003641 grep non_existent /dev/null
Gilles Peskinecb4bfac2021-08-02 23:14:03 +02003642 # Expected error: '! grep -q . tests/scripts/all.sh -> 1'
Gilles Peskinea5eb22d2020-03-28 21:09:21 +01003643 not grep -q . "$0"
Gilles Peskinecb4bfac2021-08-02 23:14:03 +02003644 # Expected error: 'make unknown_target -> 2'
Gilles Peskinea5eb22d2020-03-28 21:09:21 +01003645 make unknown_target
3646 false "this should not be executed"
3647}
3648
Gilles Peskinee48351a2018-11-27 16:06:30 +01003649# Run one component and clean up afterwards.
Gilles Peskine8f073122018-11-27 15:58:47 +01003650run_component () {
Gilles Peskineffcdeff2018-12-04 12:49:28 +01003651 current_component="$1"
Gilles Peskine9004a172019-09-16 15:20:36 +02003652 export MBEDTLS_TEST_CONFIGURATION="$current_component"
Gilles Peskine2ef377d2019-10-07 18:44:21 +02003653
3654 # Unconditionally create a seedfile that's sufficiently long.
3655 # Do this before each component, because a previous component may
3656 # have messed it up or shortened it.
Gilles Peskinef3133362021-07-08 19:03:50 +02003657 local dd_cmd
3658 dd_cmd=(dd if=/dev/urandom of=./tests/seedfile bs=64 count=1)
3659 case $OSTYPE in
3660 linux*|freebsd*|openbsd*|darwin*) dd_cmd+=(status=none)
3661 esac
3662 "${dd_cmd[@]}"
Gilles Peskine2ef377d2019-10-07 18:44:21 +02003663
Gilles Peskinecb4bfac2021-08-02 23:14:03 +02003664 # Run the component in a subshell, with error trapping and output
3665 # redirection set up based on the relevant options.
Gilles Peskine7105a332020-03-28 18:50:43 +01003666 if [ $KEEP_GOING -eq 1 ]; then
Gilles Peskinecb4bfac2021-08-02 23:14:03 +02003667 # We want to keep running if the subshell fails, so 'set -e' must
3668 # be off when the subshell runs.
Gilles Peskine7105a332020-03-28 18:50:43 +01003669 set +e
Manuel Pégourié-Gonnard2b2bdaa2020-06-02 11:28:07 +02003670 fi
Gilles Peskine7105a332020-03-28 18:50:43 +01003671 (
3672 if [ $QUIET -eq 1 ]; then
3673 # msg() will be silenced, so just print the component name here.
3674 echo "${current_component#component_}"
3675 exec >/dev/null
3676 fi
3677 if [ $KEEP_GOING -eq 1 ]; then
3678 # Keep "set -e" off, and run an ERR trap instead to record failures.
3679 set -E
3680 trap err_trap ERR
3681 fi
3682 # The next line is what runs the component
3683 "$@"
3684 if [ $KEEP_GOING -eq 1 ]; then
3685 trap - ERR
3686 exit $last_failure_status
3687 fi
3688 )
3689 component_status=$?
3690 if [ $KEEP_GOING -eq 1 ]; then
3691 set -e
3692 if [ $component_status -ne 0 ]; then
3693 failure_count=$((failure_count + 1))
3694 fi
3695 fi
Gilles Peskine2ef377d2019-10-07 18:44:21 +02003696
3697 # Restore the build tree to a clean state.
Gilles Peskinee48351a2018-11-27 16:06:30 +01003698 cleanup
Manuel Pégourié-Gonnard304b0992020-06-08 10:59:41 +02003699 unset current_component
Gilles Peskine8f073122018-11-27 15:58:47 +01003700}
3701
3702# Preliminary setup
3703pre_check_environment
3704pre_initialize_variables
3705pre_parse_command_line "$@"
Gilles Peskine348fb9a2018-11-27 17:04:29 +01003706
Gilles Peskine878cf602019-01-06 20:50:38 +00003707pre_check_git
Gilles Peskineef64e7f2021-07-12 18:16:01 +02003708pre_restore_files
Gilles Peskine24bdf022020-03-30 20:11:39 +02003709pre_back_up
Andrzej Kurekeb508712019-02-14 07:18:59 -05003710
Gilles Peskine878cf602019-01-06 20:50:38 +00003711build_status=0
3712if [ $KEEP_GOING -eq 1 ]; then
3713 pre_setup_keep_going
Gilles Peskine8f073122018-11-27 15:58:47 +01003714fi
Gilles Peskine67ffdaf2019-09-16 15:55:46 +02003715pre_prepare_outcome_file
Gilles Peskine878cf602019-01-06 20:50:38 +00003716pre_print_configuration
3717pre_check_tools
Manuel Pégourié-Gonnard80955ee2014-03-19 18:29:01 +01003718cleanup
3719
Gilles Peskinebeb3a812019-01-06 22:11:25 +00003720# Run the requested tests.
Gilles Peskine202e9b42021-08-02 23:28:00 +02003721for ((error_test_i=1; error_test_i <= error_test; error_test_i++)); do
Gilles Peskinea5eb22d2020-03-28 21:09:21 +01003722 run_component pseudo_component_error_test
Gilles Peskinea5eb22d2020-03-28 21:09:21 +01003723done
Gilles Peskine202e9b42021-08-02 23:28:00 +02003724unset error_test_i
Gilles Peskinebeb3a812019-01-06 22:11:25 +00003725for component in $RUN_COMPONENTS; do
3726 run_component "component_$component"
3727done
Gilles Peskine8f073122018-11-27 15:58:47 +01003728
3729# We're done.
Gilles Peskine878cf602019-01-06 20:50:38 +00003730post_report