blob: bb0375add13d584cde7e03abf853bd86cf078afa [file] [log] [blame]
Minos Galanakis6aab5b72024-07-25 14:24:37 +01001# components-configuration-crypto.sh
2#
3# Copyright The Mbed TLS Contributors
4# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
5
Minos Galanakis609f7492024-07-31 16:39:28 +01006# This file contains test components that are executed by all.sh
Minos Galanakis6aab5b72024-07-25 14:24:37 +01007
8################################################################
9#### Configuration Testing - Crypto
10################################################################
11
Minos Galanakis471b34c2024-07-26 15:39:24 +010012component_test_psa_crypto_key_id_encodes_owner () {
13 msg "build: full config + PSA_CRYPTO_KEY_ID_ENCODES_OWNER, cmake, gcc, ASan"
14 scripts/config.py full
15 scripts/config.py set MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER
16 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
17 make
18
19 msg "test: full config - USE_PSA_CRYPTO + PSA_CRYPTO_KEY_ID_ENCODES_OWNER, cmake, gcc, ASan"
20 make test
21}
22
23component_test_psa_assume_exclusive_buffers () {
24 msg "build: full config + MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS, cmake, gcc, ASan"
25 scripts/config.py full
26 scripts/config.py set MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS
27 CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan .
28 make
29
30 msg "test: full config + MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS, cmake, gcc, ASan"
31 make test
32}
33
Valerio Settidbb646b2024-06-20 14:40:54 +020034component_test_crypto_with_static_key_slots() {
35 msg "build: crypto full + MBEDTLS_PSA_STATIC_KEY_SLOTS"
36 scripts/config.py crypto_full
37 scripts/config.py set MBEDTLS_PSA_STATIC_KEY_SLOTS
Valerio Setti4d9a8212024-08-16 12:35:24 +020038 # Intentionally set MBEDTLS_PSA_STATIC_KEY_SLOT_BUFFER_SIZE to a value that
39 # is enough to contain:
40 # - all RSA public keys up to 4096 bits (max of PSA_VENDOR_RSA_MAX_KEY_BITS).
41 # - RSA key pairs up to 1024 bits, but not 2048 or larger.
42 # - all FFDH key pairs and public keys up to 8192 bits (max of PSA_VENDOR_FFDH_MAX_KEY_BITS).
43 # - all EC key pairs and public keys up to 521 bits (max of PSA_VENDOR_ECC_MAX_CURVE_BITS).
44 scripts/config.py set MBEDTLS_PSA_STATIC_KEY_SLOT_BUFFER_SIZE 1212
Valerio Setti8bc81722024-08-28 05:50:45 +020045 # Disable the fully dynamic key store (default on) since it conflicts
46 # with the static behavior that we're testing here.
47 scripts/config.py unset MBEDTLS_PSA_KEY_STORE_DYNAMIC
Valerio Settidbb646b2024-06-20 14:40:54 +020048
Valerio Setti13aadd72024-08-13 13:13:23 +020049 msg "test: crypto full + MBEDTLS_PSA_STATIC_KEY_SLOTS"
Valerio Setti2a3c9b32024-08-14 06:37:02 +020050 make CFLAGS="$ASAN_CFLAGS" LDFLAGS="$ASAN_CFLAGS" test
Valerio Settidbb646b2024-06-20 14:40:54 +020051}
52
Minos Galanakis471b34c2024-07-26 15:39:24 +010053# check_renamed_symbols HEADER LIB
54# Check that if HEADER contains '#define MACRO ...' then MACRO is not a symbol
Minos Galanakis609f7492024-07-31 16:39:28 +010055# name in LIB.
Minos Galanakis471b34c2024-07-26 15:39:24 +010056check_renamed_symbols () {
57 ! nm "$2" | sed 's/.* //' |
58 grep -x -F "$(sed -n 's/^ *# *define *\([A-Z_a-z][0-9A-Z_a-z]*\)..*/\1/p' "$1")"
59}
60
61component_build_psa_crypto_spm () {
62 msg "build: full config + PSA_CRYPTO_KEY_ID_ENCODES_OWNER + PSA_CRYPTO_SPM, make, gcc"
63 scripts/config.py full
64 scripts/config.py unset MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS
65 scripts/config.py set MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER
66 scripts/config.py set MBEDTLS_PSA_CRYPTO_SPM
67 # We can only compile, not link, since our test and sample programs
68 # aren't equipped for the modified names used when MBEDTLS_PSA_CRYPTO_SPM
69 # is active.
David Horstmann5b93d972024-10-31 15:36:05 +000070 make CC=gcc CFLAGS='-Werror -Wall -Wextra -I../framework/tests/include/spe' lib
Minos Galanakis471b34c2024-07-26 15:39:24 +010071
72 # Check that if a symbol is renamed by crypto_spe.h, the non-renamed
73 # version is not present.
74 echo "Checking for renamed symbols in the library"
David Horstmann5b93d972024-10-31 15:36:05 +000075 check_renamed_symbols framework/tests/include/spe/crypto_spe.h library/libmbedcrypto.a
Minos Galanakis471b34c2024-07-26 15:39:24 +010076}
77
Valerio Settia47b0452024-06-25 18:31:36 +020078# The goal of this component is to build a configuration where:
79# - test code and libtestdriver1 can make use of calloc/free and
80# - core library (including PSA core) cannot use calloc/free.
81component_test_psa_crypto_without_heap() {
Valerio Setti13aadd72024-08-13 13:13:23 +020082 msg "crypto without heap: build libtestdriver1"
Valerio Settia47b0452024-06-25 18:31:36 +020083 # Disable PSA features that cannot be accelerated and whose builtin support
84 # requires calloc/free.
Minos Galanakis00b641c2024-11-28 23:05:10 +000085 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_DERIVE
86 scripts/config.py -c $CRYPTO_CONFIG_H unset-all "^PSA_WANT_ALG_HKDF"
87 scripts/config.py -c $CRYPTO_CONFIG_H unset-all "^PSA_WANT_ALG_PBKDF2_"
88 scripts/config.py -c $CRYPTO_CONFIG_H unset-all "^PSA_WANT_ALG_TLS12_"
Valerio Settia47b0452024-06-25 18:31:36 +020089 # RSA key support requires ASN1 parse/write support for testing, but ASN1
90 # is disabled below.
Minos Galanakis00b641c2024-11-28 23:05:10 +000091 scripts/config.py -c $CRYPTO_CONFIG_H unset-all "^PSA_WANT_KEY_TYPE_RSA_"
92 scripts/config.py -c $CRYPTO_CONFIG_H unset-all "^PSA_WANT_ALG_RSA_"
Valerio Settia47b0452024-06-25 18:31:36 +020093 # DES requires built-in support for key generation (parity check) so it
94 # cannot be accelerated
Minos Galanakis00b641c2024-11-28 23:05:10 +000095 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_KEY_TYPE_DES
Valerio Settia47b0452024-06-25 18:31:36 +020096 # EC-JPAKE use calloc/free in PSA core
Minos Galanakis00b641c2024-11-28 23:05:10 +000097 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_JPAKE
Valerio Settia47b0452024-06-25 18:31:36 +020098
99 # Accelerate all PSA features (which are still enabled in CRYPTO_CONFIG_H).
Minos Galanakis00b641c2024-11-28 23:05:10 +0000100 PSA_SYM_LIST=$(./scripts/config.py -c $CRYPTO_CONFIG_H get-all-enabled PSA_WANT)
Valerio Settia47b0452024-06-25 18:31:36 +0200101 loc_accel_list=$(echo $PSA_SYM_LIST | sed 's/PSA_WANT_//g')
102
Valerio Settia47b0452024-06-25 18:31:36 +0200103 helper_libtestdriver1_adjust_config crypto
104 helper_libtestdriver1_make_drivers "$loc_accel_list"
105
Valerio Setti13aadd72024-08-13 13:13:23 +0200106 msg "crypto without heap: build main library"
Valerio Setti35b0b022024-08-13 13:36:50 +0200107 # Disable all legacy MBEDTLS_xxx symbols.
108 scripts/config.py unset-all "^MBEDTLS_"
109 # Build the PSA core using the proper config file.
110 scripts/config.py set MBEDTLS_PSA_CRYPTO_C
Valerio Settia47b0452024-06-25 18:31:36 +0200111 # Enable fully-static key slots in PSA core.
112 scripts/config.py set MBEDTLS_PSA_STATIC_KEY_SLOTS
Valerio Setti35b0b022024-08-13 13:36:50 +0200113 # Prevent PSA core from creating a copy of input/output buffers.
Valerio Settia47b0452024-06-25 18:31:36 +0200114 scripts/config.py set MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS
115 # Prevent PSA core from using CTR-DRBG or HMAC-DRBG for random generation.
116 scripts/config.py set MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG
Valerio Setti13aadd72024-08-13 13:13:23 +0200117 # Set calloc/free as null pointer functions. Calling them would crash
Valerio Settia47b0452024-06-25 18:31:36 +0200118 # the program so we can use this as a "sentinel" for being sure no module
119 # is making use of these functions in the library.
Valerio Setti35b0b022024-08-13 13:36:50 +0200120 scripts/config.py set MBEDTLS_PLATFORM_C
Valerio Settia47b0452024-06-25 18:31:36 +0200121 scripts/config.py set MBEDTLS_PLATFORM_MEMORY
122 scripts/config.py set MBEDTLS_PLATFORM_STD_CALLOC NULL
123 scripts/config.py set MBEDTLS_PLATFORM_STD_FREE NULL
124
Valerio Settia47b0452024-06-25 18:31:36 +0200125 helper_libtestdriver1_make_main "$loc_accel_list" lib
126
Valerio Setti13aadd72024-08-13 13:13:23 +0200127 msg "crypto without heap: build test suites and helpers"
128 # Reset calloc/free functions to normal operations so that test code can
Valerio Settia47b0452024-06-25 18:31:36 +0200129 # freely use them.
130 scripts/config.py unset MBEDTLS_PLATFORM_MEMORY
131 scripts/config.py unset MBEDTLS_PLATFORM_STD_CALLOC
132 scripts/config.py unset MBEDTLS_PLATFORM_STD_FREE
133 helper_libtestdriver1_make_main "$loc_accel_list" tests
134
Valerio Setti13aadd72024-08-13 13:13:23 +0200135 msg "crypto without heap: test"
Valerio Settia47b0452024-06-25 18:31:36 +0200136 make test
137}
138
Minos Galanakisf78447f2024-07-26 20:49:51 +0100139component_test_no_rsa_key_pair_generation () {
Minos Galanakisdc0f73a2024-07-26 20:41:42 +0100140 msg "build: default config minus PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_GENERATE"
Minos Galanakisdc0f73a2024-07-26 20:41:42 +0100141 scripts/config.py unset MBEDTLS_GENPRIME
Minos Galanakis00b641c2024-11-28 23:05:10 +0000142 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_GENERATE
Minos Galanakisdc0f73a2024-07-26 20:41:42 +0100143 make
144
145 msg "test: default config minus PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_GENERATE"
146 make test
147}
148
Minos Galanakisc06fd302024-08-01 12:16:59 +0100149component_test_no_pem_no_fs () {
150 msg "build: Default + !MBEDTLS_PEM_PARSE_C + !MBEDTLS_FS_IO (ASan build)"
151 scripts/config.py unset MBEDTLS_PEM_PARSE_C
152 scripts/config.py unset MBEDTLS_FS_IO
153 scripts/config.py unset MBEDTLS_PSA_ITS_FILE_C # requires a filesystem
154 scripts/config.py unset MBEDTLS_PSA_CRYPTO_STORAGE_C # requires PSA ITS
155 CC=$ASAN_CC cmake -D CMAKE_BUILD_TYPE:String=Asan .
156 make
157
158 msg "test: !MBEDTLS_PEM_PARSE_C !MBEDTLS_FS_IO - main suites (inc. selftests) (ASan build)" # ~ 50s
159 make test
160
161 msg "test: !MBEDTLS_PEM_PARSE_C !MBEDTLS_FS_IO - ssl-opt.sh (ASan build)" # ~ 6 min
162 tests/ssl-opt.sh
163}
164
165component_test_rsa_no_crt () {
166 msg "build: Default + RSA_NO_CRT (ASan build)" # ~ 6 min
167 scripts/config.py set MBEDTLS_RSA_NO_CRT
168 CC=$ASAN_CC cmake -D CMAKE_BUILD_TYPE:String=Asan .
169 make
170
171 msg "test: RSA_NO_CRT - main suites (inc. selftests) (ASan build)" # ~ 50s
172 make test
173
174 msg "test: RSA_NO_CRT - RSA-related part of ssl-opt.sh (ASan build)" # ~ 5s
175 tests/ssl-opt.sh -f RSA
176
177 msg "test: RSA_NO_CRT - RSA-related part of compat.sh (ASan build)" # ~ 3 min
178 tests/compat.sh -t RSA
179
180 msg "test: RSA_NO_CRT - RSA-related part of context-info.sh (ASan build)" # ~ 15 sec
181 tests/context-info.sh
182}
183
Minos Galanakisc06fd302024-08-01 12:16:59 +0100184component_test_no_ctr_drbg_use_psa () {
185 msg "build: Full minus CTR_DRBG, PSA crypto in TLS"
186 scripts/config.py full
187 scripts/config.py unset MBEDTLS_CTR_DRBG_C
Minos Galanakisc06fd302024-08-01 12:16:59 +0100188
189 CC=$ASAN_CC cmake -D CMAKE_BUILD_TYPE:String=Asan .
190 make
191
192 msg "test: Full minus CTR_DRBG, USE_PSA_CRYPTO - main suites"
193 make test
194
195 # In this configuration, the TLS test programs use HMAC_DRBG.
196 # The SSL tests are slow, so run a small subset, just enough to get
197 # confidence that the SSL code copes with HMAC_DRBG.
198 msg "test: Full minus CTR_DRBG, USE_PSA_CRYPTO - ssl-opt.sh (subset)"
199 tests/ssl-opt.sh -f 'Default\|SSL async private.*delay=\|tickets enabled on server'
200
201 msg "test: Full minus CTR_DRBG, USE_PSA_CRYPTO - compat.sh (subset)"
202 tests/compat.sh -m tls12 -t 'ECDSA PSK' -V NO -p OpenSSL
203}
204
Minos Galanakisc06fd302024-08-01 12:16:59 +0100205component_test_no_hmac_drbg_use_psa () {
206 msg "build: Full minus HMAC_DRBG, PSA crypto in TLS"
207 scripts/config.py full
208 scripts/config.py unset MBEDTLS_HMAC_DRBG_C
209 scripts/config.py unset MBEDTLS_ECDSA_DETERMINISTIC # requires HMAC_DRBG
Minos Galanakisc06fd302024-08-01 12:16:59 +0100210
211 CC=$ASAN_CC cmake -D CMAKE_BUILD_TYPE:String=Asan .
212 make
213
214 msg "test: Full minus HMAC_DRBG, USE_PSA_CRYPTO - main suites"
215 make test
216
217 # Normally our ECDSA implementation uses deterministic ECDSA. But since
218 # HMAC_DRBG is disabled in this configuration, randomized ECDSA is used
219 # instead.
220 # Test SSL with non-deterministic ECDSA. Only test features that
221 # might be affected by how ECDSA signature is performed.
222 msg "test: Full minus HMAC_DRBG, USE_PSA_CRYPTO - ssl-opt.sh (subset)"
223 tests/ssl-opt.sh -f 'Default\|SSL async private: sign'
224
225 # To save time, only test one protocol version, since this part of
226 # the protocol is identical in (D)TLS up to 1.2.
227 msg "test: Full minus HMAC_DRBG, USE_PSA_CRYPTO - compat.sh (ECDSA)"
228 tests/compat.sh -m tls12 -t 'ECDSA'
229}
230
Minos Galanakisc06fd302024-08-01 12:16:59 +0100231component_test_psa_external_rng_no_drbg_use_psa () {
232 msg "build: PSA_CRYPTO_EXTERNAL_RNG minus *_DRBG, PSA crypto in TLS"
233 scripts/config.py full
234 scripts/config.py set MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG
235 scripts/config.py unset MBEDTLS_ENTROPY_C
236 scripts/config.py unset MBEDTLS_ENTROPY_NV_SEED
237 scripts/config.py unset MBEDTLS_PLATFORM_NV_SEED_ALT
238 scripts/config.py unset MBEDTLS_CTR_DRBG_C
239 scripts/config.py unset MBEDTLS_HMAC_DRBG_C
240 scripts/config.py unset MBEDTLS_ECDSA_DETERMINISTIC # requires HMAC_DRBG
241 make CC=$ASAN_CC CFLAGS="$ASAN_CFLAGS" LDFLAGS="$ASAN_CFLAGS"
242
243 msg "test: PSA_CRYPTO_EXTERNAL_RNG minus *_DRBG, PSA crypto - main suites"
244 make test
245
246 msg "test: PSA_CRYPTO_EXTERNAL_RNG minus *_DRBG, PSA crypto - ssl-opt.sh (subset)"
247 tests/ssl-opt.sh -f 'Default\|opaque'
248}
249
Minos Galanakis471b34c2024-07-26 15:39:24 +0100250component_test_psa_external_rng_use_psa_crypto () {
251 msg "build: full + PSA_CRYPTO_EXTERNAL_RNG + USE_PSA_CRYPTO minus CTR_DRBG"
252 scripts/config.py full
253 scripts/config.py set MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG
Minos Galanakis471b34c2024-07-26 15:39:24 +0100254 scripts/config.py unset MBEDTLS_CTR_DRBG_C
255 make CC=$ASAN_CC CFLAGS="$ASAN_CFLAGS" LDFLAGS="$ASAN_CFLAGS"
256
257 msg "test: full + PSA_CRYPTO_EXTERNAL_RNG + USE_PSA_CRYPTO minus CTR_DRBG"
258 make test
259
260 msg "test: full + PSA_CRYPTO_EXTERNAL_RNG + USE_PSA_CRYPTO minus CTR_DRBG"
261 tests/ssl-opt.sh -f 'Default\|opaque'
262}
263
Minos Galanakisf78447f2024-07-26 20:49:51 +0100264component_full_no_pkparse_pkwrite () {
Minos Galanakis471b34c2024-07-26 15:39:24 +0100265 msg "build: full without pkparse and pkwrite"
266
267 scripts/config.py crypto_full
268 scripts/config.py unset MBEDTLS_PK_PARSE_C
269 scripts/config.py unset MBEDTLS_PK_WRITE_C
270
271 make CFLAGS="$ASAN_CFLAGS" LDFLAGS="$ASAN_CFLAGS"
272
273 # Ensure that PK_[PARSE|WRITE]_C were not re-enabled accidentally (additive config).
274 not grep mbedtls_pk_parse_key ${BUILTIN_SRC_PATH}/pkparse.o
275 not grep mbedtls_pk_write_key_der ${BUILTIN_SRC_PATH}/pkwrite.o
276
277 msg "test: full without pkparse and pkwrite"
278 make test
279}
280
281component_test_crypto_full_md_light_only () {
282 msg "build: crypto_full with only the light subset of MD"
283 scripts/config.py crypto_full
284
285 # Disable MD
286 scripts/config.py unset MBEDTLS_MD_C
287 # Disable direct dependencies of MD_C
288 scripts/config.py unset MBEDTLS_HKDF_C
289 scripts/config.py unset MBEDTLS_HMAC_DRBG_C
290 scripts/config.py unset MBEDTLS_PKCS7_C
291 # Disable indirect dependencies of MD_C
292 scripts/config.py unset MBEDTLS_ECDSA_DETERMINISTIC # needs HMAC_DRBG
Minos Galanakis00b641c2024-11-28 23:05:10 +0000293 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_DETERMINISTIC_ECDSA
Minos Galanakis471b34c2024-07-26 15:39:24 +0100294 # Disable things that would auto-enable MD_C
295 scripts/config.py unset MBEDTLS_PKCS5_C
296
297 # Note: MD-light is auto-enabled in build_info.h by modules that need it,
298 # which we haven't disabled, so no need to explicitly enable it.
299 make CC=$ASAN_CC CFLAGS="$ASAN_CFLAGS" LDFLAGS="$ASAN_CFLAGS"
300
301 # Make sure we don't have the HMAC functions, but the hashing functions
302 not grep mbedtls_md_hmac ${BUILTIN_SRC_PATH}/md.o
303 grep mbedtls_md ${BUILTIN_SRC_PATH}/md.o
304
305 msg "test: crypto_full with only the light subset of MD"
306 make test
307}
308
Minos Galanakiscd5668f2024-07-26 20:36:23 +0100309component_test_full_no_cipher () {
310 msg "build: full no CIPHER"
311
312 scripts/config.py full
313 scripts/config.py unset MBEDTLS_CIPHER_C
314
315 # The built-in implementation of the following algs/key-types depends
316 # on CIPHER_C so we disable them.
317 # This does not hold for KEY_TYPE_CHACHA20 and ALG_CHACHA20_POLY1305
318 # so we keep them enabled.
Minos Galanakis00b641c2024-11-28 23:05:10 +0000319 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_CCM_STAR_NO_TAG
320 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_CMAC
321 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_CBC_NO_PADDING
322 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_CBC_PKCS7
323 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_CFB
324 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_CTR
325 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_ECB_NO_PADDING
326 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_OFB
327 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_PBKDF2_AES_CMAC_PRF_128
328 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_STREAM_CIPHER
329 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_KEY_TYPE_DES
Minos Galanakiscd5668f2024-07-26 20:36:23 +0100330
331 # The following modules directly depends on CIPHER_C
332 scripts/config.py unset MBEDTLS_CMAC_C
333 scripts/config.py unset MBEDTLS_NIST_KW_C
334
335 make
336
337 # Ensure that CIPHER_C was not re-enabled
338 not grep mbedtls_cipher_init ${BUILTIN_SRC_PATH}/cipher.o
339
340 msg "test: full no CIPHER"
341 make test
342}
343
Minos Galanakisf78447f2024-07-26 20:49:51 +0100344component_test_full_no_ccm () {
Minos Galanakis471b34c2024-07-26 15:39:24 +0100345 msg "build: full no PSA_WANT_ALG_CCM"
346
347 # Full config enables:
348 # - USE_PSA_CRYPTO so that TLS code dispatches cipher/AEAD to PSA
349 # - CRYPTO_CONFIG so that PSA_WANT config symbols are evaluated
350 scripts/config.py full
351
352 # Disable PSA_WANT_ALG_CCM so that CCM is not supported in PSA. CCM_C is still
353 # enabled, but not used from TLS since USE_PSA is set.
354 # This is helpful to ensure that TLS tests below have proper dependencies.
355 #
356 # Note: also PSA_WANT_ALG_CCM_STAR_NO_TAG is enabled, but it does not cause
357 # PSA_WANT_ALG_CCM to be re-enabled.
358 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CCM
359
360 make
361
362 msg "test: full no PSA_WANT_ALG_CCM"
363 make test
364}
365
Minos Galanakisf78447f2024-07-26 20:49:51 +0100366component_test_full_no_ccm_star_no_tag () {
Minos Galanakis471b34c2024-07-26 15:39:24 +0100367 msg "build: full no PSA_WANT_ALG_CCM_STAR_NO_TAG"
368
369 # Full config enables CRYPTO_CONFIG so that PSA_WANT config symbols are evaluated
370 scripts/config.py full
371
372 # Disable CCM_STAR_NO_TAG, which is the target of this test, as well as all
373 # other components that enable MBEDTLS_PSA_BUILTIN_CIPHER internal symbol.
374 # This basically disables all unauthenticated ciphers on the PSA side, while
375 # keeping AEADs enabled.
376 #
377 # Note: PSA_WANT_ALG_CCM is enabled, but it does not cause
378 # PSA_WANT_ALG_CCM_STAR_NO_TAG to be re-enabled.
379 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CCM_STAR_NO_TAG
380 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_STREAM_CIPHER
381 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CTR
382 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CFB
383 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_OFB
384 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_ECB_NO_PADDING
Ben Taylor1948c942025-03-04 09:11:11 +0000385 # NOTE unsettting PSA_WANT_ALG_ECB_NO_PADDING without unsetting NIST_KW_C will
386 # mean PSA_WANT_ALG_ECB_NO_PADDING is re-enabled, so disabling it also.
387 scripts/config.py -f "$CRYPTO_CONFIG_H" unset MBEDTLS_NIST_KW_C
Minos Galanakis471b34c2024-07-26 15:39:24 +0100388 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CBC_NO_PADDING
389 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CBC_PKCS7
390
391 make
392
393 # Ensure MBEDTLS_PSA_BUILTIN_CIPHER was not enabled
394 not grep mbedtls_psa_cipher ${PSA_CORE_PATH}/psa_crypto_cipher.o
395
396 msg "test: full no PSA_WANT_ALG_CCM_STAR_NO_TAG"
397 make test
398}
399
Gilles Peskineea5de2b2024-09-19 18:41:55 +0200400component_test_config_symmetric_only () {
401 msg "build: configs/config-symmetric-only.h"
Minos Galanakis5da58e52024-11-07 15:35:33 +0000402 MBEDTLS_CONFIG="configs/config-symmetric-only.h"
Harry Ramsey94c386a2025-01-16 16:08:34 +0000403 CRYPTO_CONFIG="tf-psa-crypto/configs/crypto-config-symmetric-only.h"
Ronald Cronfaadfc22024-12-07 17:24:28 +0100404 CC=$ASAN_CC cmake -DMBEDTLS_CONFIG_FILE="$MBEDTLS_CONFIG" -DTF_PSA_CRYPTO_CONFIG_FILE="$CRYPTO_CONFIG" -D CMAKE_BUILD_TYPE:String=Asan .
Gilles Peskineaf5a8992024-09-14 11:27:44 +0200405 make
406
Gilles Peskineea5de2b2024-09-19 18:41:55 +0200407 msg "test: configs/config-symmetric-only.h - unit tests"
Gilles Peskineaf5a8992024-09-14 11:27:44 +0200408 make test
409}
410
Minos Galanakisc06fd302024-08-01 12:16:59 +0100411component_test_everest () {
412 msg "build: Everest ECDH context (ASan build)" # ~ 6 min
413 scripts/config.py set MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED
414 CC=clang cmake -D CMAKE_BUILD_TYPE:String=Asan .
415 make
416
417 msg "test: Everest ECDH context - main suites (inc. selftests) (ASan build)" # ~ 50s
418 make test
419
420 msg "test: metatests (clang, ASan)"
421 tests/scripts/run-metatests.sh any asan poison
422
423 msg "test: Everest ECDH context - ECDH-related part of ssl-opt.sh (ASan build)" # ~ 5s
424 tests/ssl-opt.sh -f ECDH
425
426 msg "test: Everest ECDH context - compat.sh with some ECDH ciphersuites (ASan build)" # ~ 3 min
427 # Exclude some symmetric ciphers that are redundant here to gain time.
428 tests/compat.sh -f ECDH -V NO -e 'ARIA\|CAMELLIA\|CHACHA'
429}
430
431component_test_everest_curve25519_only () {
432 msg "build: Everest ECDH context, only Curve25519" # ~ 6 min
Minos Galanakisc06fd302024-08-01 12:16:59 +0100433 scripts/config.py set MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED
434 scripts/config.py unset MBEDTLS_ECDSA_C
Minos Galanakis00b641c2024-11-28 23:05:10 +0000435 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_DETERMINISTIC_ECDSA
436 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_ECDSA
437 scripts/config.py -c $CRYPTO_CONFIG_H set PSA_WANT_ALG_ECDH
Minos Galanakisc06fd302024-08-01 12:16:59 +0100438 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
439 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
440 scripts/config.py unset MBEDTLS_ECJPAKE_C
Minos Galanakis00b641c2024-11-28 23:05:10 +0000441 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_JPAKE
Minos Galanakisc06fd302024-08-01 12:16:59 +0100442
443 # Disable all curves
444 scripts/config.py unset-all "MBEDTLS_ECP_DP_[0-9A-Z_a-z]*_ENABLED"
Minos Galanakis00b641c2024-11-28 23:05:10 +0000445 scripts/config.py -c $CRYPTO_CONFIG_H unset-all "PSA_WANT_ECC_[0-9A-Z_a-z]*$"
446 scripts/config.py -c $CRYPTO_CONFIG_H set PSA_WANT_ECC_MONTGOMERY_255
Minos Galanakisc06fd302024-08-01 12:16:59 +0100447
448 make CC=$ASAN_CC CFLAGS="$ASAN_CFLAGS" LDFLAGS="$ASAN_CFLAGS"
449
450 msg "test: Everest ECDH context, only Curve25519" # ~ 50s
451 make test
452}
453
Minos Galanakis471b34c2024-07-26 15:39:24 +0100454component_test_psa_collect_statuses () {
455 msg "build+test: psa_collect_statuses" # ~30s
456 scripts/config.py full
457 tests/scripts/psa_collect_statuses.py
458 # Check that psa_crypto_init() succeeded at least once
459 grep -q '^0:psa_crypto_init:' tests/statuses.log
460 rm -f tests/statuses.log
461}
462
463# Check that the specified libraries exist and are empty.
464are_empty_libraries () {
465 nm "$@" >/dev/null 2>/dev/null
466 ! nm "$@" 2>/dev/null | grep -v ':$' | grep .
467}
468
Minos Galanakis471b34c2024-07-26 15:39:24 +0100469component_test_crypto_for_psa_service () {
470 msg "build: make, config for PSA crypto service"
471 scripts/config.py crypto
472 scripts/config.py set MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER
473 # Disable things that are not needed for just cryptography, to
474 # reach a configuration that would be typical for a PSA cryptography
475 # service providing all implemented PSA algorithms.
476 # System stuff
477 scripts/config.py unset MBEDTLS_ERROR_C
478 scripts/config.py unset MBEDTLS_TIMING_C
479 scripts/config.py unset MBEDTLS_VERSION_FEATURES
480 # Crypto stuff with no PSA interface
481 scripts/config.py unset MBEDTLS_BASE64_C
482 # Keep MBEDTLS_CIPHER_C because psa_crypto_cipher, CCM and GCM need it.
483 scripts/config.py unset MBEDTLS_HKDF_C # PSA's HKDF is independent
484 # Keep MBEDTLS_MD_C because deterministic ECDSA needs it for HMAC_DRBG.
485 scripts/config.py unset MBEDTLS_NIST_KW_C
486 scripts/config.py unset MBEDTLS_PEM_PARSE_C
487 scripts/config.py unset MBEDTLS_PEM_WRITE_C
488 scripts/config.py unset MBEDTLS_PKCS12_C
489 scripts/config.py unset MBEDTLS_PKCS5_C
490 # MBEDTLS_PK_PARSE_C and MBEDTLS_PK_WRITE_C are actually currently needed
491 # in PSA code to work with RSA keys. We don't require users to set those:
492 # they will be reenabled in build_info.h.
493 scripts/config.py unset MBEDTLS_PK_C
494 scripts/config.py unset MBEDTLS_PK_PARSE_C
495 scripts/config.py unset MBEDTLS_PK_WRITE_C
496 make CFLAGS='-O1 -Werror' all test
497 are_empty_libraries library/libmbedx509.* library/libmbedtls.*
498}
499
500component_build_crypto_baremetal () {
501 msg "build: make, crypto only, baremetal config"
502 scripts/config.py crypto_baremetal
David Horstmann5b93d972024-10-31 15:36:05 +0000503 make CFLAGS="-O1 -Werror -I$PWD/framework/tests/include/baremetal-override/"
Minos Galanakis471b34c2024-07-26 15:39:24 +0100504 are_empty_libraries library/libmbedx509.* library/libmbedtls.*
505}
506
507support_build_crypto_baremetal () {
508 support_build_baremetal "$@"
509}
510
511# depends.py family of tests
512component_test_depends_py_cipher_id () {
513 msg "test/build: depends.py cipher_id (gcc)"
Gabor Mezei9ce6d242024-06-19 17:47:05 +0200514 tests/scripts/depends.py cipher_id
Minos Galanakis471b34c2024-07-26 15:39:24 +0100515}
516
517component_test_depends_py_cipher_chaining () {
518 msg "test/build: depends.py cipher_chaining (gcc)"
Gabor Mezei9ce6d242024-06-19 17:47:05 +0200519 tests/scripts/depends.py cipher_chaining
Minos Galanakis471b34c2024-07-26 15:39:24 +0100520}
521
522component_test_depends_py_cipher_padding () {
523 msg "test/build: depends.py cipher_padding (gcc)"
Gabor Mezei9ce6d242024-06-19 17:47:05 +0200524 tests/scripts/depends.py cipher_padding
Minos Galanakis471b34c2024-07-26 15:39:24 +0100525}
526
527component_test_depends_py_curves () {
528 msg "test/build: depends.py curves (gcc)"
Gabor Mezei9ce6d242024-06-19 17:47:05 +0200529 tests/scripts/depends.py curves
Minos Galanakis471b34c2024-07-26 15:39:24 +0100530}
531
532component_test_depends_py_hashes () {
533 msg "test/build: depends.py hashes (gcc)"
Gabor Mezei9ce6d242024-06-19 17:47:05 +0200534 tests/scripts/depends.py hashes
Minos Galanakis471b34c2024-07-26 15:39:24 +0100535}
536
Minos Galanakis471b34c2024-07-26 15:39:24 +0100537component_test_depends_py_pkalgs () {
538 msg "test/build: depends.py pkalgs (gcc)"
Minos Galanakis471b34c2024-07-26 15:39:24 +0100539 tests/scripts/depends.py pkalgs
540}
541
542component_test_psa_crypto_config_ffdh_2048_only () {
543 msg "build: full config - only DH 2048"
544
545 scripts/config.py full
546
547 # Disable all DH groups other than 2048.
548 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_DH_RFC7919_3072
549 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_DH_RFC7919_4096
550 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_DH_RFC7919_6144
551 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_DH_RFC7919_8192
552
553 make CFLAGS="$ASAN_CFLAGS -Werror" LDFLAGS="$ASAN_CFLAGS"
554
555 msg "test: full config - only DH 2048"
556 make test
557
558 msg "ssl-opt: full config - only DH 2048"
559 tests/ssl-opt.sh -f "ffdh"
560}
561
Minos Galanakis471b34c2024-07-26 15:39:24 +0100562component_test_psa_crypto_config_accel_ecdsa () {
Ronald Cron93ba6252024-09-05 10:37:14 +0200563 msg "build: accelerated ECDSA"
Minos Galanakis471b34c2024-07-26 15:39:24 +0100564
565 # Algorithms and key types to accelerate
566 loc_accel_list="ALG_ECDSA ALG_DETERMINISTIC_ECDSA \
567 $(helper_get_psa_key_type_list "ECC") \
568 $(helper_get_psa_curve_list)"
569
570 # Configure
571 # ---------
572
Elena Uziunaite91d83862024-09-04 14:51:31 +0100573 # Start from default config + TLS 1.3
Minos Galanakis471b34c2024-07-26 15:39:24 +0100574 helper_libtestdriver1_adjust_config "default"
575
576 # Disable the module that's accelerated
577 scripts/config.py unset MBEDTLS_ECDSA_C
578
579 # Disable things that depend on it
580 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
581 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
582
583 # Build
584 # -----
585
586 # These hashes are needed for some ECDSA signature tests.
Elena Uziunaiteffce45c2024-09-12 14:58:52 +0100587 loc_extra_list="ALG_SHA_1 ALG_SHA_224 ALG_SHA_256 ALG_SHA_384 ALG_SHA_512 \
Minos Galanakis471b34c2024-07-26 15:39:24 +0100588 ALG_SHA3_224 ALG_SHA3_256 ALG_SHA3_384 ALG_SHA3_512"
589
590 helper_libtestdriver1_make_drivers "$loc_accel_list" "$loc_extra_list"
591
592 helper_libtestdriver1_make_main "$loc_accel_list"
593
594 # Make sure this was not re-enabled by accident (additive config)
595 not grep mbedtls_ecdsa_ ${BUILTIN_SRC_PATH}/ecdsa.o
596
597 # Run the tests
598 # -------------
599
Ronald Cron93ba6252024-09-05 10:37:14 +0200600 msg "test: accelerated ECDSA"
Minos Galanakis471b34c2024-07-26 15:39:24 +0100601 make test
602}
603
604component_test_psa_crypto_config_accel_ecdh () {
Ronald Cron93ba6252024-09-05 10:37:14 +0200605 msg "build: accelerated ECDH"
Minos Galanakis471b34c2024-07-26 15:39:24 +0100606
607 # Algorithms and key types to accelerate
608 loc_accel_list="ALG_ECDH \
609 $(helper_get_psa_key_type_list "ECC") \
610 $(helper_get_psa_curve_list)"
611
612 # Configure
613 # ---------
614
615 # Start from default config (no USE_PSA)
616 helper_libtestdriver1_adjust_config "default"
617
618 # Disable the module that's accelerated
619 scripts/config.py unset MBEDTLS_ECDH_C
620
621 # Disable things that depend on it
622 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED
623 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
624 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
625 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED
626 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED
627
628 # Build
629 # -----
630
631 helper_libtestdriver1_make_drivers "$loc_accel_list"
632
633 helper_libtestdriver1_make_main "$loc_accel_list"
634
635 # Make sure this was not re-enabled by accident (additive config)
636 not grep mbedtls_ecdh_ ${BUILTIN_SRC_PATH}/ecdh.o
637
638 # Run the tests
639 # -------------
640
Ronald Cron93ba6252024-09-05 10:37:14 +0200641 msg "test: accelerated ECDH"
Minos Galanakis471b34c2024-07-26 15:39:24 +0100642 make test
643}
644
645component_test_psa_crypto_config_accel_ffdh () {
646 msg "build: full with accelerated FFDH"
647
648 # Algorithms and key types to accelerate
649 loc_accel_list="ALG_FFDH \
650 $(helper_get_psa_key_type_list "DH") \
651 $(helper_get_psa_dh_group_list)"
652
653 # Configure
654 # ---------
655
656 # start with full (USE_PSA and TLS 1.3)
657 helper_libtestdriver1_adjust_config "full"
658
Minos Galanakis471b34c2024-07-26 15:39:24 +0100659 # Build
660 # -----
661
662 helper_libtestdriver1_make_drivers "$loc_accel_list"
663
664 helper_libtestdriver1_make_main "$loc_accel_list"
665
666 # Make sure this was not re-enabled by accident (additive config)
Valerio Settieb63eb22025-02-12 13:32:49 +0100667 not grep mbedtls_psa_ffdh_key_agreement ${BUILTIN_SRC_PATH}/psa_crypto_ffdh.o
Minos Galanakis471b34c2024-07-26 15:39:24 +0100668
669 # Run the tests
670 # -------------
671
672 msg "test: full with accelerated FFDH"
673 make test
674
675 msg "ssl-opt: full with accelerated FFDH alg"
676 tests/ssl-opt.sh -f "ffdh"
677}
678
679component_test_psa_crypto_config_reference_ffdh () {
680 msg "build: full with non-accelerated FFDH"
681
682 # Start with full (USE_PSA and TLS 1.3)
683 helper_libtestdriver1_adjust_config "full"
684
Minos Galanakis471b34c2024-07-26 15:39:24 +0100685 make
686
687 msg "test suites: full with non-accelerated FFDH alg"
688 make test
689
690 msg "ssl-opt: full with non-accelerated FFDH alg"
691 tests/ssl-opt.sh -f "ffdh"
692}
693
Minos Galanakisf78447f2024-07-26 20:49:51 +0100694component_test_psa_crypto_config_accel_pake () {
Minos Galanakis471b34c2024-07-26 15:39:24 +0100695 msg "build: full with accelerated PAKE"
696
697 loc_accel_list="ALG_JPAKE \
698 $(helper_get_psa_key_type_list "ECC") \
699 $(helper_get_psa_curve_list)"
700
701 # Configure
702 # ---------
703
704 helper_libtestdriver1_adjust_config "full"
705
706 # Make built-in fallback not available
707 scripts/config.py unset MBEDTLS_ECJPAKE_C
708 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED
709
710 # Build
711 # -----
712
713 helper_libtestdriver1_make_drivers "$loc_accel_list"
714
715 helper_libtestdriver1_make_main "$loc_accel_list"
716
717 # Make sure this was not re-enabled by accident (additive config)
718 not grep mbedtls_ecjpake_init ${BUILTIN_SRC_PATH}/ecjpake.o
719
720 # Run the tests
721 # -------------
722
723 msg "test: full with accelerated PAKE"
724 make test
725}
726
727component_test_psa_crypto_config_accel_ecc_some_key_types () {
728 msg "build: full with accelerated EC algs and some key types"
729
730 # Algorithms and key types to accelerate
731 # For key types, use an explicitly list to omit GENERATE (and DERIVE)
732 loc_accel_list="ALG_ECDSA ALG_DETERMINISTIC_ECDSA \
733 ALG_ECDH \
734 ALG_JPAKE \
735 KEY_TYPE_ECC_PUBLIC_KEY \
736 KEY_TYPE_ECC_KEY_PAIR_BASIC \
737 KEY_TYPE_ECC_KEY_PAIR_IMPORT \
738 KEY_TYPE_ECC_KEY_PAIR_EXPORT \
739 $(helper_get_psa_curve_list)"
740
741 # Configure
742 # ---------
743
744 # start with config full for maximum coverage (also enables USE_PSA)
745 helper_libtestdriver1_adjust_config "full"
746
747 # Disable modules that are accelerated - some will be re-enabled
748 scripts/config.py unset MBEDTLS_ECDSA_C
749 scripts/config.py unset MBEDTLS_ECDH_C
750 scripts/config.py unset MBEDTLS_ECJPAKE_C
751 scripts/config.py unset MBEDTLS_ECP_C
752
753 # Disable all curves - those that aren't accelerated should be re-enabled
754 helper_disable_builtin_curves
755
756 # Restartable feature is not yet supported by PSA. Once it will in
757 # the future, the following line could be removed (see issues
758 # 6061, 6332 and following ones)
759 scripts/config.py unset MBEDTLS_ECP_RESTARTABLE
760
761 # this is not supported by the driver API yet
762 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_DERIVE
763
764 # Build
765 # -----
766
767 # These hashes are needed for some ECDSA signature tests.
768 loc_extra_list="ALG_SHA_1 ALG_SHA_224 ALG_SHA_256 ALG_SHA_384 ALG_SHA_512 \
769 ALG_SHA3_224 ALG_SHA3_256 ALG_SHA3_384 ALG_SHA3_512"
770 helper_libtestdriver1_make_drivers "$loc_accel_list" "$loc_extra_list"
771
772 helper_libtestdriver1_make_main "$loc_accel_list"
773
774 # ECP should be re-enabled but not the others
775 not grep mbedtls_ecdh_ ${BUILTIN_SRC_PATH}/ecdh.o
776 not grep mbedtls_ecdsa ${BUILTIN_SRC_PATH}/ecdsa.o
777 not grep mbedtls_ecjpake ${BUILTIN_SRC_PATH}/ecjpake.o
778 grep mbedtls_ecp ${BUILTIN_SRC_PATH}/ecp.o
779
780 # Run the tests
781 # -------------
782
783 msg "test suites: full with accelerated EC algs and some key types"
784 make test
785}
786
787# Run tests with only (non-)Weierstrass accelerated
788# Common code used in:
789# - component_test_psa_crypto_config_accel_ecc_weierstrass_curves
790# - component_test_psa_crypto_config_accel_ecc_non_weierstrass_curves
Minos Galanakis471b34c2024-07-26 15:39:24 +0100791common_test_psa_crypto_config_accel_ecc_some_curves () {
792 weierstrass=$1
793 if [ $weierstrass -eq 1 ]; then
794 desc="Weierstrass"
795 else
796 desc="non-Weierstrass"
797 fi
798
799 msg "build: crypto_full minus PK with accelerated EC algs and $desc curves"
800
801 # Note: Curves are handled in a special way by the libtestdriver machinery,
802 # so we only want to include them in the accel list when building the main
803 # libraries, hence the use of a separate variable.
804 # Note: the following loop is a modified version of
805 # helper_get_psa_curve_list that only keeps Weierstrass families.
806 loc_weierstrass_list=""
807 loc_non_weierstrass_list=""
808 for item in $(sed -n 's/^#define PSA_WANT_\(ECC_[0-9A-Z_a-z]*\).*/\1/p' <"$CRYPTO_CONFIG_H"); do
809 case $item in
810 ECC_BRAINPOOL*|ECC_SECP*)
811 loc_weierstrass_list="$loc_weierstrass_list $item"
812 ;;
813 *)
814 loc_non_weierstrass_list="$loc_non_weierstrass_list $item"
815 ;;
816 esac
817 done
818 if [ $weierstrass -eq 1 ]; then
819 loc_curve_list=$loc_weierstrass_list
820 else
821 loc_curve_list=$loc_non_weierstrass_list
822 fi
823
824 # Algorithms and key types to accelerate
825 loc_accel_list="ALG_ECDSA ALG_DETERMINISTIC_ECDSA \
826 ALG_ECDH \
827 ALG_JPAKE \
828 $(helper_get_psa_key_type_list "ECC") \
829 $loc_curve_list"
830
831 # Configure
832 # ---------
833
834 # Start with config crypto_full and remove PK_C:
835 # that's what's supported now, see docs/driver-only-builds.md.
836 helper_libtestdriver1_adjust_config "crypto_full"
837 scripts/config.py unset MBEDTLS_PK_C
838 scripts/config.py unset MBEDTLS_PK_PARSE_C
839 scripts/config.py unset MBEDTLS_PK_WRITE_C
840
841 # Disable modules that are accelerated - some will be re-enabled
842 scripts/config.py unset MBEDTLS_ECDSA_C
843 scripts/config.py unset MBEDTLS_ECDH_C
844 scripts/config.py unset MBEDTLS_ECJPAKE_C
845 scripts/config.py unset MBEDTLS_ECP_C
846
847 # Disable all curves - those that aren't accelerated should be re-enabled
848 helper_disable_builtin_curves
849
850 # Restartable feature is not yet supported by PSA. Once it will in
851 # the future, the following line could be removed (see issues
852 # 6061, 6332 and following ones)
853 scripts/config.py unset MBEDTLS_ECP_RESTARTABLE
854
855 # this is not supported by the driver API yet
856 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_DERIVE
857
858 # Build
859 # -----
860
861 # These hashes are needed for some ECDSA signature tests.
862 loc_extra_list="ALG_SHA_1 ALG_SHA_224 ALG_SHA_256 ALG_SHA_384 ALG_SHA_512 \
863 ALG_SHA3_224 ALG_SHA3_256 ALG_SHA3_384 ALG_SHA3_512"
864 helper_libtestdriver1_make_drivers "$loc_accel_list" "$loc_extra_list"
865
866 helper_libtestdriver1_make_main "$loc_accel_list"
867
868 # We expect ECDH to be re-enabled for the missing curves
869 grep mbedtls_ecdh_ ${BUILTIN_SRC_PATH}/ecdh.o
870 # We expect ECP to be re-enabled, however the parts specific to the
871 # families of curves that are accelerated should be ommited.
872 # - functions with mxz in the name are specific to Montgomery curves
873 # - ecp_muladd is specific to Weierstrass curves
874 ##nm ${BUILTIN_SRC_PATH}/ecp.o | tee ecp.syms
875 if [ $weierstrass -eq 1 ]; then
876 not grep mbedtls_ecp_muladd ${BUILTIN_SRC_PATH}/ecp.o
877 grep mxz ${BUILTIN_SRC_PATH}/ecp.o
878 else
879 grep mbedtls_ecp_muladd ${BUILTIN_SRC_PATH}/ecp.o
880 not grep mxz ${BUILTIN_SRC_PATH}/ecp.o
881 fi
882 # We expect ECDSA and ECJPAKE to be re-enabled only when
883 # Weierstrass curves are not accelerated
884 if [ $weierstrass -eq 1 ]; then
885 not grep mbedtls_ecdsa ${BUILTIN_SRC_PATH}/ecdsa.o
886 not grep mbedtls_ecjpake ${BUILTIN_SRC_PATH}/ecjpake.o
887 else
888 grep mbedtls_ecdsa ${BUILTIN_SRC_PATH}/ecdsa.o
889 grep mbedtls_ecjpake ${BUILTIN_SRC_PATH}/ecjpake.o
890 fi
891
892 # Run the tests
893 # -------------
894
895 msg "test suites: crypto_full minus PK with accelerated EC algs and $desc curves"
896 make test
897}
898
899component_test_psa_crypto_config_accel_ecc_weierstrass_curves () {
900 common_test_psa_crypto_config_accel_ecc_some_curves 1
901}
902
903component_test_psa_crypto_config_accel_ecc_non_weierstrass_curves () {
904 common_test_psa_crypto_config_accel_ecc_some_curves 0
905}
906
907# Auxiliary function to build config for all EC based algorithms (EC-JPAKE,
908# ECDH, ECDSA) with and without drivers.
909# The input parameter is a boolean value which indicates:
910# - 0 keep built-in EC algs,
911# - 1 exclude built-in EC algs (driver only).
912#
913# This is used by the two following components to ensure they always use the
914# same config, except for the use of driver or built-in EC algorithms:
915# - component_test_psa_crypto_config_accel_ecc_ecp_light_only;
916# - component_test_psa_crypto_config_reference_ecc_ecp_light_only.
917# This supports comparing their test coverage with analyze_outcomes.py.
Minos Galanakis471b34c2024-07-26 15:39:24 +0100918config_psa_crypto_config_ecp_light_only () {
919 driver_only="$1"
920 # start with config full for maximum coverage (also enables USE_PSA)
921 helper_libtestdriver1_adjust_config "full"
922 if [ "$driver_only" -eq 1 ]; then
923 # Disable modules that are accelerated
924 scripts/config.py unset MBEDTLS_ECDSA_C
925 scripts/config.py unset MBEDTLS_ECDH_C
926 scripts/config.py unset MBEDTLS_ECJPAKE_C
927 scripts/config.py unset MBEDTLS_ECP_C
928 fi
929
930 # Restartable feature is not yet supported by PSA. Once it will in
931 # the future, the following line could be removed (see issues
932 # 6061, 6332 and following ones)
933 scripts/config.py unset MBEDTLS_ECP_RESTARTABLE
934}
935
936# Keep in sync with component_test_psa_crypto_config_reference_ecc_ecp_light_only
Minos Galanakis471b34c2024-07-26 15:39:24 +0100937component_test_psa_crypto_config_accel_ecc_ecp_light_only () {
938 msg "build: full with accelerated EC algs"
939
940 # Algorithms and key types to accelerate
941 loc_accel_list="ALG_ECDSA ALG_DETERMINISTIC_ECDSA \
942 ALG_ECDH \
943 ALG_JPAKE \
944 $(helper_get_psa_key_type_list "ECC") \
945 $(helper_get_psa_curve_list)"
946
947 # Configure
948 # ---------
949
950 # Use the same config as reference, only without built-in EC algs
951 config_psa_crypto_config_ecp_light_only 1
952
953 # Do not disable builtin curves because that support is required for:
954 # - MBEDTLS_PK_PARSE_EC_EXTENDED
955 # - MBEDTLS_PK_PARSE_EC_COMPRESSED
956
957 # Build
958 # -----
959
960 # These hashes are needed for some ECDSA signature tests.
961 loc_extra_list="ALG_SHA_1 ALG_SHA_224 ALG_SHA_256 ALG_SHA_384 ALG_SHA_512 \
962 ALG_SHA3_224 ALG_SHA3_256 ALG_SHA3_384 ALG_SHA3_512"
963 helper_libtestdriver1_make_drivers "$loc_accel_list" "$loc_extra_list"
964
965 helper_libtestdriver1_make_main "$loc_accel_list"
966
967 # Make sure any built-in EC alg was not re-enabled by accident (additive config)
968 not grep mbedtls_ecdsa_ ${BUILTIN_SRC_PATH}/ecdsa.o
969 not grep mbedtls_ecdh_ ${BUILTIN_SRC_PATH}/ecdh.o
970 not grep mbedtls_ecjpake_ ${BUILTIN_SRC_PATH}/ecjpake.o
971 not grep mbedtls_ecp_mul ${BUILTIN_SRC_PATH}/ecp.o
972
973 # Run the tests
974 # -------------
975
976 msg "test suites: full with accelerated EC algs"
977 make test
978
979 msg "ssl-opt: full with accelerated EC algs"
980 tests/ssl-opt.sh
981}
982
983# Keep in sync with component_test_psa_crypto_config_accel_ecc_ecp_light_only
Minos Galanakis471b34c2024-07-26 15:39:24 +0100984component_test_psa_crypto_config_reference_ecc_ecp_light_only () {
Ronald Cron93ba6252024-09-05 10:37:14 +0200985 msg "build: non-accelerated EC algs"
Minos Galanakis471b34c2024-07-26 15:39:24 +0100986
987 config_psa_crypto_config_ecp_light_only 0
988
989 make
990
991 msg "test suites: full with non-accelerated EC algs"
992 make test
993
994 msg "ssl-opt: full with non-accelerated EC algs"
995 tests/ssl-opt.sh
996}
997
998# This helper function is used by:
999# - component_test_psa_crypto_config_accel_ecc_no_ecp_at_all()
1000# - component_test_psa_crypto_config_reference_ecc_no_ecp_at_all()
1001# to ensure that both tests use the same underlying configuration when testing
1002# driver's coverage with analyze_outcomes.py.
1003#
1004# This functions accepts 1 boolean parameter as follows:
1005# - 1: building with accelerated EC algorithms (ECDSA, ECDH, ECJPAKE), therefore
1006# excluding their built-in implementation as well as ECP_C & ECP_LIGHT
1007# - 0: include built-in implementation of EC algorithms.
1008#
1009# PK_C and RSA_C are always disabled to ensure there is no remaining dependency
1010# on the ECP module.
Minos Galanakis471b34c2024-07-26 15:39:24 +01001011config_psa_crypto_no_ecp_at_all () {
1012 driver_only="$1"
1013 # start with full config for maximum coverage (also enables USE_PSA)
1014 helper_libtestdriver1_adjust_config "full"
1015
1016 if [ "$driver_only" -eq 1 ]; then
1017 # Disable modules that are accelerated
1018 scripts/config.py unset MBEDTLS_ECDSA_C
1019 scripts/config.py unset MBEDTLS_ECDH_C
1020 scripts/config.py unset MBEDTLS_ECJPAKE_C
1021 # Disable ECP module (entirely)
1022 scripts/config.py unset MBEDTLS_ECP_C
1023 fi
1024
1025 # Disable all the features that auto-enable ECP_LIGHT (see build_info.h)
1026 scripts/config.py unset MBEDTLS_PK_PARSE_EC_EXTENDED
1027 scripts/config.py unset MBEDTLS_PK_PARSE_EC_COMPRESSED
1028 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_DERIVE
1029
1030 # Restartable feature is not yet supported by PSA. Once it will in
1031 # the future, the following line could be removed (see issues
1032 # 6061, 6332 and following ones)
1033 scripts/config.py unset MBEDTLS_ECP_RESTARTABLE
1034}
1035
1036# Build and test a configuration where driver accelerates all EC algs while
1037# all support and dependencies from ECP and ECP_LIGHT are removed on the library
1038# side.
1039#
1040# Keep in sync with component_test_psa_crypto_config_reference_ecc_no_ecp_at_all()
Minos Galanakis471b34c2024-07-26 15:39:24 +01001041component_test_psa_crypto_config_accel_ecc_no_ecp_at_all () {
1042 msg "build: full + accelerated EC algs - ECP"
1043
1044 # Algorithms and key types to accelerate
1045 loc_accel_list="ALG_ECDSA ALG_DETERMINISTIC_ECDSA \
1046 ALG_ECDH \
1047 ALG_JPAKE \
1048 $(helper_get_psa_key_type_list "ECC") \
1049 $(helper_get_psa_curve_list)"
1050
1051 # Configure
1052 # ---------
1053
1054 # Set common configurations between library's and driver's builds
1055 config_psa_crypto_no_ecp_at_all 1
1056 # Disable all the builtin curves. All the required algs are accelerated.
1057 helper_disable_builtin_curves
1058
1059 # Build
1060 # -----
1061
1062 # Things we wanted supported in libtestdriver1, but not accelerated in the main library:
1063 # SHA-1 and all SHA-2/3 variants, as they are used by ECDSA deterministic.
1064 loc_extra_list="ALG_SHA_1 ALG_SHA_224 ALG_SHA_256 ALG_SHA_384 ALG_SHA_512 \
1065 ALG_SHA3_224 ALG_SHA3_256 ALG_SHA3_384 ALG_SHA3_512"
1066
1067 helper_libtestdriver1_make_drivers "$loc_accel_list" "$loc_extra_list"
1068
1069 helper_libtestdriver1_make_main "$loc_accel_list"
1070
1071 # Make sure any built-in EC alg was not re-enabled by accident (additive config)
1072 not grep mbedtls_ecdsa_ ${BUILTIN_SRC_PATH}/ecdsa.o
1073 not grep mbedtls_ecdh_ ${BUILTIN_SRC_PATH}/ecdh.o
1074 not grep mbedtls_ecjpake_ ${BUILTIN_SRC_PATH}/ecjpake.o
1075 # Also ensure that ECP module was not re-enabled
1076 not grep mbedtls_ecp_ ${BUILTIN_SRC_PATH}/ecp.o
1077
1078 # Run the tests
1079 # -------------
1080
1081 msg "test: full + accelerated EC algs - ECP"
1082 make test
1083
1084 msg "ssl-opt: full + accelerated EC algs - ECP"
1085 tests/ssl-opt.sh
1086}
1087
1088# Reference function used for driver's coverage analysis in analyze_outcomes.py
1089# in conjunction with component_test_psa_crypto_config_accel_ecc_no_ecp_at_all().
1090# Keep in sync with its accelerated counterpart.
Minos Galanakis471b34c2024-07-26 15:39:24 +01001091component_test_psa_crypto_config_reference_ecc_no_ecp_at_all () {
1092 msg "build: full + non accelerated EC algs"
1093
1094 config_psa_crypto_no_ecp_at_all 0
1095
1096 make
1097
1098 msg "test: full + non accelerated EC algs"
1099 make test
1100
1101 msg "ssl-opt: full + non accelerated EC algs"
1102 tests/ssl-opt.sh
1103}
1104
1105# This is a common configuration helper used directly from:
1106# - common_test_psa_crypto_config_accel_ecc_ffdh_no_bignum
1107# - common_test_psa_crypto_config_reference_ecc_ffdh_no_bignum
1108# and indirectly from:
1109# - component_test_psa_crypto_config_accel_ecc_no_bignum
1110# - accelerate all EC algs, disable RSA and FFDH
1111# - component_test_psa_crypto_config_reference_ecc_no_bignum
1112# - this is the reference component of the above
1113# - it still disables RSA and FFDH, but it uses builtin EC algs
1114# - component_test_psa_crypto_config_accel_ecc_ffdh_no_bignum
1115# - accelerate all EC and FFDH algs, disable only RSA
1116# - component_test_psa_crypto_config_reference_ecc_ffdh_no_bignum
1117# - this is the reference component of the above
1118# - it still disables RSA, but it uses builtin EC and FFDH algs
1119#
1120# This function accepts 2 parameters:
1121# $1: a boolean value which states if we are testing an accelerated scenario
1122# or not.
1123# $2: a string value which states which components are tested. Allowed values
1124# are "ECC" or "ECC_DH".
Minos Galanakisf78447f2024-07-26 20:49:51 +01001125config_psa_crypto_config_accel_ecc_ffdh_no_bignum () {
Minos Galanakis471b34c2024-07-26 15:39:24 +01001126 driver_only="$1"
1127 test_target="$2"
1128 # start with full config for maximum coverage (also enables USE_PSA)
1129 helper_libtestdriver1_adjust_config "full"
1130
1131 if [ "$driver_only" -eq 1 ]; then
1132 # Disable modules that are accelerated
1133 scripts/config.py unset MBEDTLS_ECDSA_C
1134 scripts/config.py unset MBEDTLS_ECDH_C
1135 scripts/config.py unset MBEDTLS_ECJPAKE_C
1136 # Disable ECP module (entirely)
1137 scripts/config.py unset MBEDTLS_ECP_C
1138 # Also disable bignum
1139 scripts/config.py unset MBEDTLS_BIGNUM_C
1140 fi
1141
1142 # Disable all the features that auto-enable ECP_LIGHT (see build_info.h)
1143 scripts/config.py unset MBEDTLS_PK_PARSE_EC_EXTENDED
1144 scripts/config.py unset MBEDTLS_PK_PARSE_EC_COMPRESSED
1145 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_DERIVE
1146
1147 # RSA support is intentionally disabled on this test because RSA_C depends
1148 # on BIGNUM_C.
1149 scripts/config.py -f "$CRYPTO_CONFIG_H" unset-all "PSA_WANT_KEY_TYPE_RSA_[0-9A-Z_a-z]*"
1150 scripts/config.py -f "$CRYPTO_CONFIG_H" unset-all "PSA_WANT_ALG_RSA_[0-9A-Z_a-z]*"
1151 scripts/config.py unset MBEDTLS_RSA_C
1152 scripts/config.py unset MBEDTLS_PKCS1_V15
1153 scripts/config.py unset MBEDTLS_PKCS1_V21
1154 scripts/config.py unset MBEDTLS_X509_RSASSA_PSS_SUPPORT
1155 # Also disable key exchanges that depend on RSA
Minos Galanakis471b34c2024-07-26 15:39:24 +01001156 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED
1157 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED
1158
1159 if [ "$test_target" = "ECC" ]; then
1160 # When testing ECC only, we disable FFDH support, both from builtin and
Valerio Setti8438c632025-01-22 11:56:40 +01001161 # PSA sides.
Minos Galanakis471b34c2024-07-26 15:39:24 +01001162 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_FFDH
1163 scripts/config.py -f "$CRYPTO_CONFIG_H" unset-all "PSA_WANT_KEY_TYPE_DH_[0-9A-Z_a-z]*"
1164 scripts/config.py -f "$CRYPTO_CONFIG_H" unset-all "PSA_WANT_DH_RFC7919_[0-9]*"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001165 fi
1166
1167 # Restartable feature is not yet supported by PSA. Once it will in
1168 # the future, the following line could be removed (see issues
1169 # 6061, 6332 and following ones)
1170 scripts/config.py unset MBEDTLS_ECP_RESTARTABLE
1171}
1172
1173# Common helper used by:
1174# - component_test_psa_crypto_config_accel_ecc_no_bignum
1175# - component_test_psa_crypto_config_accel_ecc_ffdh_no_bignum
1176#
1177# The goal is to build and test accelerating either:
1178# - ECC only or
1179# - both ECC and FFDH
1180#
1181# It is meant to be used in conjunction with
1182# common_test_psa_crypto_config_reference_ecc_ffdh_no_bignum() for drivers
1183# coverage analysis in the "analyze_outcomes.py" script.
Minos Galanakis471b34c2024-07-26 15:39:24 +01001184common_test_psa_crypto_config_accel_ecc_ffdh_no_bignum () {
1185 test_target="$1"
1186
1187 # This is an internal helper to simplify text message handling
1188 if [ "$test_target" = "ECC_DH" ]; then
1189 accel_text="ECC/FFDH"
1190 removed_text="ECP - DH"
1191 else
1192 accel_text="ECC"
1193 removed_text="ECP"
1194 fi
1195
1196 msg "build: full + accelerated $accel_text algs + USE_PSA - $removed_text - BIGNUM"
1197
1198 # By default we accelerate all EC keys/algs
1199 loc_accel_list="ALG_ECDSA ALG_DETERMINISTIC_ECDSA \
1200 ALG_ECDH \
1201 ALG_JPAKE \
1202 $(helper_get_psa_key_type_list "ECC") \
1203 $(helper_get_psa_curve_list)"
1204 # Optionally we can also add DH to the list of accelerated items
1205 if [ "$test_target" = "ECC_DH" ]; then
1206 loc_accel_list="$loc_accel_list \
1207 ALG_FFDH \
1208 $(helper_get_psa_key_type_list "DH") \
1209 $(helper_get_psa_dh_group_list)"
1210 fi
1211
1212 # Configure
1213 # ---------
1214
1215 # Set common configurations between library's and driver's builds
1216 config_psa_crypto_config_accel_ecc_ffdh_no_bignum 1 "$test_target"
1217 # Disable all the builtin curves. All the required algs are accelerated.
1218 helper_disable_builtin_curves
1219
1220 # Build
1221 # -----
1222
1223 # Things we wanted supported in libtestdriver1, but not accelerated in the main library:
1224 # SHA-1 and all SHA-2/3 variants, as they are used by ECDSA deterministic.
1225 loc_extra_list="ALG_SHA_1 ALG_SHA_224 ALG_SHA_256 ALG_SHA_384 ALG_SHA_512 \
1226 ALG_SHA3_224 ALG_SHA3_256 ALG_SHA3_384 ALG_SHA3_512"
1227
1228 helper_libtestdriver1_make_drivers "$loc_accel_list" "$loc_extra_list"
1229
1230 helper_libtestdriver1_make_main "$loc_accel_list"
1231
1232 # Make sure any built-in EC alg was not re-enabled by accident (additive config)
1233 not grep mbedtls_ecdsa_ ${BUILTIN_SRC_PATH}/ecdsa.o
1234 not grep mbedtls_ecdh_ ${BUILTIN_SRC_PATH}/ecdh.o
1235 not grep mbedtls_ecjpake_ ${BUILTIN_SRC_PATH}/ecjpake.o
Valerio Settieb63eb22025-02-12 13:32:49 +01001236 # Also ensure that ECP, RSA or BIGNUM modules were not re-enabled
Minos Galanakis471b34c2024-07-26 15:39:24 +01001237 not grep mbedtls_ecp_ ${BUILTIN_SRC_PATH}/ecp.o
1238 not grep mbedtls_rsa_ ${BUILTIN_SRC_PATH}/rsa.o
1239 not grep mbedtls_mpi_ ${BUILTIN_SRC_PATH}/bignum.o
Minos Galanakis471b34c2024-07-26 15:39:24 +01001240
1241 # Run the tests
1242 # -------------
1243
Valerio Settieb63eb22025-02-12 13:32:49 +01001244 msg "test suites: full + accelerated $accel_text algs + USE_PSA - $removed_text - BIGNUM"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001245
1246 make test
1247
1248 msg "ssl-opt: full + accelerated $accel_text algs + USE_PSA - $removed_text - BIGNUM"
1249 tests/ssl-opt.sh
1250}
1251
1252# Common helper used by:
1253# - component_test_psa_crypto_config_reference_ecc_no_bignum
1254# - component_test_psa_crypto_config_reference_ecc_ffdh_no_bignum
1255#
1256# The goal is to build and test a reference scenario (i.e. with builtin
1257# components) compared to the ones used in
1258# common_test_psa_crypto_config_accel_ecc_ffdh_no_bignum() above.
1259#
1260# It is meant to be used in conjunction with
1261# common_test_psa_crypto_config_accel_ecc_ffdh_no_bignum() for drivers'
1262# coverage analysis in "analyze_outcomes.py" script.
Minos Galanakis471b34c2024-07-26 15:39:24 +01001263common_test_psa_crypto_config_reference_ecc_ffdh_no_bignum () {
1264 test_target="$1"
1265
1266 # This is an internal helper to simplify text message handling
1267 if [ "$test_target" = "ECC_DH" ]; then
1268 accel_text="ECC/FFDH"
1269 else
1270 accel_text="ECC"
1271 fi
1272
1273 msg "build: full + non accelerated $accel_text algs + USE_PSA"
1274
1275 config_psa_crypto_config_accel_ecc_ffdh_no_bignum 0 "$test_target"
1276
1277 make
1278
1279 msg "test suites: full + non accelerated EC algs + USE_PSA"
1280 make test
1281
1282 msg "ssl-opt: full + non accelerated $accel_text algs + USE_PSA"
1283 tests/ssl-opt.sh
1284}
1285
1286component_test_psa_crypto_config_accel_ecc_no_bignum () {
1287 common_test_psa_crypto_config_accel_ecc_ffdh_no_bignum "ECC"
1288}
1289
1290component_test_psa_crypto_config_reference_ecc_no_bignum () {
1291 common_test_psa_crypto_config_reference_ecc_ffdh_no_bignum "ECC"
1292}
1293
1294component_test_psa_crypto_config_accel_ecc_ffdh_no_bignum () {
1295 common_test_psa_crypto_config_accel_ecc_ffdh_no_bignum "ECC_DH"
1296}
1297
1298component_test_psa_crypto_config_reference_ecc_ffdh_no_bignum () {
1299 common_test_psa_crypto_config_reference_ecc_ffdh_no_bignum "ECC_DH"
1300}
1301
Gilles Peskineeffa6a02024-09-14 11:35:36 +02001302component_test_tfm_config_as_is () {
1303 msg "build: configs/config-tfm.h"
Minos Galanakis5da58e52024-11-07 15:35:33 +00001304 MBEDTLS_CONFIG="configs/config-tfm.h"
Harry Ramsey94c386a2025-01-16 16:08:34 +00001305 CRYPTO_CONFIG="tf-psa-crypto/configs/ext/crypto_config_profile_medium.h"
Minos Galanakis4f619e12024-11-14 14:56:47 +00001306 CC=$ASAN_CC cmake -DMBEDTLS_CONFIG_FILE="$MBEDTLS_CONFIG" -DTF_PSA_CRYPTO_CONFIG_FILE="$CRYPTO_CONFIG" -D CMAKE_BUILD_TYPE:String=Asan .
Gilles Peskineeffa6a02024-09-14 11:35:36 +02001307 make
1308
1309 msg "test: configs/config-tfm.h - unit tests"
1310 make test
1311}
1312
Minos Galanakis471b34c2024-07-26 15:39:24 +01001313# Helper for setting common configurations between:
1314# - component_test_tfm_config_p256m_driver_accel_ec()
Gilles Peskineeffa6a02024-09-14 11:35:36 +02001315# - component_test_tfm_config_no_p256m()
Minos Galanakis471b34c2024-07-26 15:39:24 +01001316common_tfm_config () {
1317 # Enable TF-M config
1318 cp configs/config-tfm.h "$CONFIG_H"
Harry Ramsey94c386a2025-01-16 16:08:34 +00001319 cp tf-psa-crypto/configs/ext/crypto_config_profile_medium.h "$CRYPTO_CONFIG_H"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001320
Minos Galanakis471b34c2024-07-26 15:39:24 +01001321 # Config adjustment for better test coverage in our environment.
1322 # This is not needed just to build and pass tests.
1323 #
1324 # Enable filesystem I/O for the benefit of PK parse/write tests.
Minos Galanakis5da58e52024-11-07 15:35:33 +00001325 sed -i '/PROFILE_M_PSA_CRYPTO_CONFIG_H/i #define MBEDTLS_FS_IO' "$CRYPTO_CONFIG_H"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001326}
1327
1328# Keep this in sync with component_test_tfm_config() as they are both meant
1329# to be used in analyze_outcomes.py for driver's coverage analysis.
Minos Galanakis471b34c2024-07-26 15:39:24 +01001330component_test_tfm_config_p256m_driver_accel_ec () {
1331 msg "build: TF-M config + p256m driver + accel ECDH(E)/ECDSA"
1332
1333 common_tfm_config
1334
1335 # Build crypto library
David Horstmann5b93d972024-10-31 15:36:05 +00001336 make CC=$ASAN_CC CFLAGS="$ASAN_CFLAGS -I../framework/tests/include/spe" LDFLAGS="$ASAN_CFLAGS"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001337
1338 # Make sure any built-in EC alg was not re-enabled by accident (additive config)
1339 not grep mbedtls_ecdsa_ ${BUILTIN_SRC_PATH}/ecdsa.o
1340 not grep mbedtls_ecdh_ ${BUILTIN_SRC_PATH}/ecdh.o
1341 not grep mbedtls_ecjpake_ ${BUILTIN_SRC_PATH}/ecjpake.o
Valerio Settieb63eb22025-02-12 13:32:49 +01001342 # Also ensure that ECP, RSA or BIGNUM modules were not re-enabled
Minos Galanakis471b34c2024-07-26 15:39:24 +01001343 not grep mbedtls_ecp_ ${BUILTIN_SRC_PATH}/ecp.o
1344 not grep mbedtls_rsa_ ${BUILTIN_SRC_PATH}/rsa.o
Minos Galanakis471b34c2024-07-26 15:39:24 +01001345 not grep mbedtls_mpi_ ${BUILTIN_SRC_PATH}/bignum.o
1346 # Check that p256m was built
1347 grep -q p256_ecdsa_ library/libmbedcrypto.a
1348
1349 # In "config-tfm.h" we disabled CIPHER_C tweaking TF-M's configuration
1350 # files, so we want to ensure that it has not be re-enabled accidentally.
1351 not grep mbedtls_cipher ${BUILTIN_SRC_PATH}/cipher.o
1352
1353 # Run the tests
1354 msg "test: TF-M config + p256m driver + accel ECDH(E)/ECDSA"
1355 make test
1356}
1357
1358# Keep this in sync with component_test_tfm_config_p256m_driver_accel_ec() as
1359# they are both meant to be used in analyze_outcomes.py for driver's coverage
1360# analysis.
Gilles Peskineeffa6a02024-09-14 11:35:36 +02001361component_test_tfm_config_no_p256m () {
Minos Galanakis471b34c2024-07-26 15:39:24 +01001362 common_tfm_config
1363
1364 # Disable P256M driver, which is on by default, so that analyze_outcomes
1365 # can compare this test with test_tfm_config_p256m_driver_accel_ec
Minos Galanakis5da58e52024-11-07 15:35:33 +00001366 sed -i '/PROFILE_M_PSA_CRYPTO_CONFIG_H/i #undef MBEDTLS_PSA_P256M_DRIVER_ENABLED' "$CRYPTO_CONFIG_H"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001367
Gilles Peskineeffa6a02024-09-14 11:35:36 +02001368 msg "build: TF-M config without p256m"
David Horstmann5b93d972024-10-31 15:36:05 +00001369 make CFLAGS='-Werror -Wall -Wextra -I../framework/tests/include/spe' tests
Minos Galanakis471b34c2024-07-26 15:39:24 +01001370
1371 # Check that p256m was not built
1372 not grep p256_ecdsa_ library/libmbedcrypto.a
1373
1374 # In "config-tfm.h" we disabled CIPHER_C tweaking TF-M's configuration
1375 # files, so we want to ensure that it has not be re-enabled accidentally.
1376 not grep mbedtls_cipher ${BUILTIN_SRC_PATH}/cipher.o
1377
Gilles Peskineeffa6a02024-09-14 11:35:36 +02001378 msg "test: TF-M config without p256m"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001379 make test
1380}
1381
Minos Galanakis471b34c2024-07-26 15:39:24 +01001382# This is an helper used by:
1383# - component_test_psa_ecc_key_pair_no_derive
1384# - component_test_psa_ecc_key_pair_no_generate
1385# The goal is to test with all PSA_WANT_KEY_TYPE_xxx_KEY_PAIR_yyy symbols
1386# enabled, but one. Input arguments are as follows:
Gilles Peskinefef912c2024-09-20 16:07:09 +02001387# - $1 is the configuration to start from
1388# - $2 is the key type under test, i.e. ECC/RSA/DH
1389# - $3 is the key option to be unset (i.e. generate, derive, etc)
Minos Galanakisf78447f2024-07-26 20:49:51 +01001390build_and_test_psa_want_key_pair_partial () {
Gilles Peskinefef912c2024-09-20 16:07:09 +02001391 base_config=$1
1392 key_type=$2
1393 unset_option=$3
Minos Galanakis471b34c2024-07-26 15:39:24 +01001394 disabled_psa_want="PSA_WANT_KEY_TYPE_${key_type}_KEY_PAIR_${unset_option}"
1395
Gilles Peskinefef912c2024-09-20 16:07:09 +02001396 msg "build: $base_config - ${disabled_psa_want}"
1397 scripts/config.py "$base_config"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001398
1399 # All the PSA_WANT_KEY_TYPE_xxx_KEY_PAIR_yyy are enabled by default in
1400 # crypto_config.h so we just disable the one we don't want.
1401 scripts/config.py -f "$CRYPTO_CONFIG_H" unset "$disabled_psa_want"
1402
1403 make CC=$ASAN_CC CFLAGS="$ASAN_CFLAGS" LDFLAGS="$ASAN_CFLAGS"
1404
Gilles Peskinefef912c2024-09-20 16:07:09 +02001405 msg "test: $base_config - ${disabled_psa_want}"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001406 make test
1407}
1408
Minos Galanakisf78447f2024-07-26 20:49:51 +01001409component_test_psa_ecc_key_pair_no_derive () {
Gilles Peskinefef912c2024-09-20 16:07:09 +02001410 build_and_test_psa_want_key_pair_partial full "ECC" "DERIVE"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001411}
1412
Minos Galanakisf78447f2024-07-26 20:49:51 +01001413component_test_psa_ecc_key_pair_no_generate () {
Gilles Peskinefef912c2024-09-20 16:07:09 +02001414 # TLS needs ECC key generation whenever ephemeral ECDH is enabled.
1415 # We don't have proper guards for configurations with ECC key generation
1416 # disabled (https://github.com/Mbed-TLS/mbedtls/issues/9481). Until
1417 # then (if ever), just test the crypto part of the library.
1418 build_and_test_psa_want_key_pair_partial crypto_full "ECC" "GENERATE"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001419}
1420
1421config_psa_crypto_accel_rsa () {
1422 driver_only=$1
1423
1424 # Start from crypto_full config (no X.509, no TLS)
1425 helper_libtestdriver1_adjust_config "crypto_full"
1426
1427 if [ "$driver_only" -eq 1 ]; then
1428 # Remove RSA support and its dependencies
1429 scripts/config.py unset MBEDTLS_RSA_C
1430 scripts/config.py unset MBEDTLS_PKCS1_V15
1431 scripts/config.py unset MBEDTLS_PKCS1_V21
Ronald Cron9edf4c52025-07-15 15:40:46 +02001432 scripts/config.py unset MBEDTLS_GENPRIME
Minos Galanakis471b34c2024-07-26 15:39:24 +01001433
1434 # We need PEM parsing in the test library as well to support the import
1435 # of PEM encoded RSA keys.
Minos Galanakis23452f52024-11-28 17:48:14 +00001436 scripts/config.py -c "$CONFIG_TEST_DRIVER_H" set MBEDTLS_PEM_PARSE_C
1437 scripts/config.py -c "$CONFIG_TEST_DRIVER_H" set MBEDTLS_BASE64_C
Minos Galanakis471b34c2024-07-26 15:39:24 +01001438 fi
1439}
1440
1441component_test_psa_crypto_config_accel_rsa_crypto () {
1442 msg "build: crypto_full with accelerated RSA"
1443
1444 loc_accel_list="ALG_RSA_OAEP ALG_RSA_PSS \
1445 ALG_RSA_PKCS1V15_CRYPT ALG_RSA_PKCS1V15_SIGN \
1446 KEY_TYPE_RSA_PUBLIC_KEY \
1447 KEY_TYPE_RSA_KEY_PAIR_BASIC \
1448 KEY_TYPE_RSA_KEY_PAIR_GENERATE \
1449 KEY_TYPE_RSA_KEY_PAIR_IMPORT \
1450 KEY_TYPE_RSA_KEY_PAIR_EXPORT"
1451
1452 # Configure
1453 # ---------
1454
1455 config_psa_crypto_accel_rsa 1
1456
1457 # Build
1458 # -----
1459
1460 # These hashes are needed for unit tests.
1461 loc_extra_list="ALG_SHA_1 ALG_SHA_224 ALG_SHA_256 ALG_SHA_384 ALG_SHA_512 \
1462 ALG_SHA3_224 ALG_SHA3_256 ALG_SHA3_384 ALG_SHA3_512 ALG_MD5"
1463 helper_libtestdriver1_make_drivers "$loc_accel_list" "$loc_extra_list"
1464
1465 helper_libtestdriver1_make_main "$loc_accel_list"
1466
1467 # Make sure this was not re-enabled by accident (additive config)
1468 not grep mbedtls_rsa ${BUILTIN_SRC_PATH}/rsa.o
1469
1470 # Run the tests
1471 # -------------
1472
1473 msg "test: crypto_full with accelerated RSA"
1474 make test
1475}
1476
1477component_test_psa_crypto_config_reference_rsa_crypto () {
1478 msg "build: crypto_full with non-accelerated RSA"
1479
1480 # Configure
1481 # ---------
1482 config_psa_crypto_accel_rsa 0
1483
1484 # Build
1485 # -----
1486 make
1487
1488 # Run the tests
1489 # -------------
1490 msg "test: crypto_full with non-accelerated RSA"
1491 make test
1492}
1493
1494# This is a temporary test to verify that full RSA support is present even when
1495# only one single new symbols (PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_BASIC) is defined.
Minos Galanakisf78447f2024-07-26 20:49:51 +01001496component_test_new_psa_want_key_pair_symbol () {
Minos Galanakis471b34c2024-07-26 15:39:24 +01001497 msg "Build: crypto config - MBEDTLS_RSA_C + PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_BASIC"
1498
1499 # Create a temporary output file unless there is already one set
1500 if [ "$MBEDTLS_TEST_OUTCOME_FILE" ]; then
1501 REMOVE_OUTCOME_ON_EXIT="no"
1502 else
1503 REMOVE_OUTCOME_ON_EXIT="yes"
1504 MBEDTLS_TEST_OUTCOME_FILE="$PWD/out.csv"
1505 export MBEDTLS_TEST_OUTCOME_FILE
1506 fi
1507
1508 # Start from crypto configuration
1509 scripts/config.py crypto
1510
1511 # Remove RSA support and its dependencies
1512 scripts/config.py unset MBEDTLS_PKCS1_V15
1513 scripts/config.py unset MBEDTLS_PKCS1_V21
Minos Galanakis471b34c2024-07-26 15:39:24 +01001514 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED
1515 scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED
Minos Galanakis471b34c2024-07-26 15:39:24 +01001516 scripts/config.py unset MBEDTLS_RSA_C
1517 scripts/config.py unset MBEDTLS_X509_RSASSA_PSS_SUPPORT
1518
Minos Galanakis471b34c2024-07-26 15:39:24 +01001519 # Keep only PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_BASIC enabled in order to ensure
1520 # that proper translations is done in crypto_legacy.h.
1521 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_IMPORT
1522 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_EXPORT
1523 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_GENERATE
1524
1525 make
1526
1527 msg "Test: crypto config - MBEDTLS_RSA_C + PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_BASIC"
1528 make test
1529
1530 # Parse only 1 relevant line from the outcome file, i.e. a test which is
1531 # performing RSA signature.
1532 msg "Verify that 'RSA PKCS1 Sign #1 (SHA512, 1536 bits RSA)' is PASS"
1533 cat $MBEDTLS_TEST_OUTCOME_FILE | grep 'RSA PKCS1 Sign #1 (SHA512, 1536 bits RSA)' | grep -q "PASS"
1534
1535 if [ "$REMOVE_OUTCOME_ON_EXIT" == "yes" ]; then
1536 rm $MBEDTLS_TEST_OUTCOME_FILE
1537 fi
1538}
1539
1540component_test_psa_crypto_config_accel_hash () {
Ronald Cron93ba6252024-09-05 10:37:14 +02001541 msg "test: accelerated hash"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001542
1543 loc_accel_list="ALG_MD5 ALG_RIPEMD160 ALG_SHA_1 \
1544 ALG_SHA_224 ALG_SHA_256 ALG_SHA_384 ALG_SHA_512 \
1545 ALG_SHA3_224 ALG_SHA3_256 ALG_SHA3_384 ALG_SHA3_512"
1546
1547 # Configure
1548 # ---------
1549
1550 # Start from default config (no USE_PSA)
1551 helper_libtestdriver1_adjust_config "default"
1552
1553 # Disable the things that are being accelerated
1554 scripts/config.py unset MBEDTLS_MD5_C
1555 scripts/config.py unset MBEDTLS_RIPEMD160_C
1556 scripts/config.py unset MBEDTLS_SHA1_C
1557 scripts/config.py unset MBEDTLS_SHA224_C
1558 scripts/config.py unset MBEDTLS_SHA256_C
1559 scripts/config.py unset MBEDTLS_SHA384_C
1560 scripts/config.py unset MBEDTLS_SHA512_C
Minos Galanakis471b34c2024-07-26 15:39:24 +01001561
1562 # Build
1563 # -----
1564
1565 helper_libtestdriver1_make_drivers "$loc_accel_list"
1566
1567 helper_libtestdriver1_make_main "$loc_accel_list"
1568
1569 # There's a risk of something getting re-enabled via config_psa.h;
1570 # make sure it did not happen. Note: it's OK for MD_C to be enabled.
1571 not grep mbedtls_md5 ${BUILTIN_SRC_PATH}/md5.o
1572 not grep mbedtls_sha1 ${BUILTIN_SRC_PATH}/sha1.o
1573 not grep mbedtls_sha256 ${BUILTIN_SRC_PATH}/sha256.o
1574 not grep mbedtls_sha512 ${BUILTIN_SRC_PATH}/sha512.o
1575 not grep mbedtls_ripemd160 ${BUILTIN_SRC_PATH}/ripemd160.o
1576
1577 # Run the tests
1578 # -------------
1579
Ronald Cron93ba6252024-09-05 10:37:14 +02001580 msg "test: accelerated hash"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001581 make test
1582}
1583
1584# Auxiliary function to build config for hashes with and without drivers
Minos Galanakis471b34c2024-07-26 15:39:24 +01001585config_psa_crypto_hash_use_psa () {
1586 driver_only="$1"
1587 # start with config full for maximum coverage (also enables USE_PSA)
1588 helper_libtestdriver1_adjust_config "full"
1589 if [ "$driver_only" -eq 1 ]; then
1590 # disable the built-in implementation of hashes
1591 scripts/config.py unset MBEDTLS_MD5_C
1592 scripts/config.py unset MBEDTLS_RIPEMD160_C
1593 scripts/config.py unset MBEDTLS_SHA1_C
1594 scripts/config.py unset MBEDTLS_SHA224_C
1595 scripts/config.py unset MBEDTLS_SHA256_C # see external RNG below
1596 scripts/config.py unset MBEDTLS_SHA256_USE_ARMV8_A_CRYPTO_IF_PRESENT
1597 scripts/config.py unset MBEDTLS_SHA384_C
1598 scripts/config.py unset MBEDTLS_SHA512_C
1599 scripts/config.py unset MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT
Minos Galanakis471b34c2024-07-26 15:39:24 +01001600 fi
1601}
1602
1603# Note that component_test_psa_crypto_config_reference_hash_use_psa
1604# is related to this component and both components need to be kept in sync.
1605# For details please see comments for component_test_psa_crypto_config_reference_hash_use_psa.
Minos Galanakis471b34c2024-07-26 15:39:24 +01001606component_test_psa_crypto_config_accel_hash_use_psa () {
1607 msg "test: full with accelerated hashes"
1608
1609 loc_accel_list="ALG_MD5 ALG_RIPEMD160 ALG_SHA_1 \
1610 ALG_SHA_224 ALG_SHA_256 ALG_SHA_384 ALG_SHA_512 \
1611 ALG_SHA3_224 ALG_SHA3_256 ALG_SHA3_384 ALG_SHA3_512"
1612
1613 # Configure
1614 # ---------
1615
1616 config_psa_crypto_hash_use_psa 1
1617
1618 # Build
1619 # -----
1620
1621 helper_libtestdriver1_make_drivers "$loc_accel_list"
1622
1623 helper_libtestdriver1_make_main "$loc_accel_list"
1624
1625 # There's a risk of something getting re-enabled via config_psa.h;
1626 # make sure it did not happen. Note: it's OK for MD_C to be enabled.
1627 not grep mbedtls_md5 ${BUILTIN_SRC_PATH}/md5.o
1628 not grep mbedtls_sha1 ${BUILTIN_SRC_PATH}/sha1.o
1629 not grep mbedtls_sha256 ${BUILTIN_SRC_PATH}/sha256.o
1630 not grep mbedtls_sha512 ${BUILTIN_SRC_PATH}/sha512.o
1631 not grep mbedtls_ripemd160 ${BUILTIN_SRC_PATH}/ripemd160.o
1632
1633 # Run the tests
1634 # -------------
1635
1636 msg "test: full with accelerated hashes"
1637 make test
1638
1639 # This is mostly useful so that we can later compare outcome files with
1640 # the reference config in analyze_outcomes.py, to check that the
1641 # dependency declarations in ssl-opt.sh and in TLS code are correct.
1642 msg "test: ssl-opt.sh, full with accelerated hashes"
1643 tests/ssl-opt.sh
1644
1645 # This is to make sure all ciphersuites are exercised, but we don't need
1646 # interop testing (besides, we already got some from ssl-opt.sh).
1647 msg "test: compat.sh, full with accelerated hashes"
1648 tests/compat.sh -p mbedTLS -V YES
1649}
1650
1651# This component provides reference configuration for test_psa_crypto_config_accel_hash_use_psa
1652# without accelerated hash. The outcome from both components are used by the analyze_outcomes.py
1653# script to find regression in test coverage when accelerated hash is used (tests and ssl-opt).
1654# Both components need to be kept in sync.
Minos Galanakisf78447f2024-07-26 20:49:51 +01001655component_test_psa_crypto_config_reference_hash_use_psa () {
Minos Galanakis471b34c2024-07-26 15:39:24 +01001656 msg "test: full without accelerated hashes"
1657
1658 config_psa_crypto_hash_use_psa 0
1659
1660 make
1661
1662 msg "test: full without accelerated hashes"
1663 make test
1664
1665 msg "test: ssl-opt.sh, full without accelerated hashes"
1666 tests/ssl-opt.sh
1667}
1668
1669# Auxiliary function to build config for hashes with and without drivers
Minos Galanakis471b34c2024-07-26 15:39:24 +01001670config_psa_crypto_hmac_use_psa () {
1671 driver_only="$1"
1672 # start with config full for maximum coverage (also enables USE_PSA)
1673 helper_libtestdriver1_adjust_config "full"
1674
1675 if [ "$driver_only" -eq 1 ]; then
1676 # Disable MD_C in order to disable the builtin support for HMAC. MD_LIGHT
1677 # is still enabled though (for ENTROPY_C among others).
1678 scripts/config.py unset MBEDTLS_MD_C
1679 # Disable also the builtin hashes since they are supported by the driver
1680 # and MD module is able to perform PSA dispathing.
1681 scripts/config.py unset-all MBEDTLS_SHA
1682 scripts/config.py unset MBEDTLS_MD5_C
1683 scripts/config.py unset MBEDTLS_RIPEMD160_C
1684 fi
1685
1686 # Direct dependencies of MD_C. We disable them also in the reference
1687 # component to work with the same set of features.
1688 scripts/config.py unset MBEDTLS_PKCS7_C
1689 scripts/config.py unset MBEDTLS_PKCS5_C
1690 scripts/config.py unset MBEDTLS_HMAC_DRBG_C
1691 scripts/config.py unset MBEDTLS_HKDF_C
1692 # Dependencies of HMAC_DRBG
1693 scripts/config.py unset MBEDTLS_ECDSA_DETERMINISTIC
1694 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_DETERMINISTIC_ECDSA
1695}
1696
Minos Galanakisf78447f2024-07-26 20:49:51 +01001697component_test_psa_crypto_config_accel_hmac () {
Minos Galanakis471b34c2024-07-26 15:39:24 +01001698 msg "test: full with accelerated hmac"
1699
1700 loc_accel_list="ALG_HMAC KEY_TYPE_HMAC \
1701 ALG_MD5 ALG_RIPEMD160 ALG_SHA_1 \
1702 ALG_SHA_224 ALG_SHA_256 ALG_SHA_384 ALG_SHA_512 \
1703 ALG_SHA3_224 ALG_SHA3_256 ALG_SHA3_384 ALG_SHA3_512"
1704
1705 # Configure
1706 # ---------
1707
1708 config_psa_crypto_hmac_use_psa 1
1709
1710 # Build
1711 # -----
1712
1713 helper_libtestdriver1_make_drivers "$loc_accel_list"
1714
1715 helper_libtestdriver1_make_main "$loc_accel_list"
1716
1717 # Ensure that built-in support for HMAC is disabled.
1718 not grep mbedtls_md_hmac ${BUILTIN_SRC_PATH}/md.o
1719
1720 # Run the tests
1721 # -------------
1722
1723 msg "test: full with accelerated hmac"
1724 make test
1725}
1726
Minos Galanakisf78447f2024-07-26 20:49:51 +01001727component_test_psa_crypto_config_reference_hmac () {
Minos Galanakis471b34c2024-07-26 15:39:24 +01001728 msg "test: full without accelerated hmac"
1729
1730 config_psa_crypto_hmac_use_psa 0
1731
1732 make
1733
1734 msg "test: full without accelerated hmac"
1735 make test
1736}
1737
Minos Galanakis471b34c2024-07-26 15:39:24 +01001738component_test_psa_crypto_config_accel_aead () {
Ronald Cron93ba6252024-09-05 10:37:14 +02001739 msg "test: accelerated AEAD"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001740
1741 loc_accel_list="ALG_GCM ALG_CCM ALG_CHACHA20_POLY1305 \
1742 KEY_TYPE_AES KEY_TYPE_CHACHA20 KEY_TYPE_ARIA KEY_TYPE_CAMELLIA"
1743
1744 # Configure
1745 # ---------
1746
1747 # Start from full config
1748 helper_libtestdriver1_adjust_config "full"
1749
1750 # Disable things that are being accelerated
1751 scripts/config.py unset MBEDTLS_GCM_C
1752 scripts/config.py unset MBEDTLS_CCM_C
1753 scripts/config.py unset MBEDTLS_CHACHAPOLY_C
1754
1755 # Disable CCM_STAR_NO_TAG because this re-enables CCM_C.
1756 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CCM_STAR_NO_TAG
1757
1758 # Build
1759 # -----
1760
1761 helper_libtestdriver1_make_drivers "$loc_accel_list"
1762
1763 helper_libtestdriver1_make_main "$loc_accel_list"
1764
1765 # Make sure this was not re-enabled by accident (additive config)
1766 not grep mbedtls_ccm ${BUILTIN_SRC_PATH}/ccm.o
1767 not grep mbedtls_gcm ${BUILTIN_SRC_PATH}/gcm.o
1768 not grep mbedtls_chachapoly ${BUILTIN_SRC_PATH}/chachapoly.o
1769
1770 # Run the tests
1771 # -------------
1772
Ronald Cron93ba6252024-09-05 10:37:14 +02001773 msg "test: accelerated AEAD"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001774 make test
1775}
1776
1777# This is a common configuration function used in:
1778# - component_test_psa_crypto_config_accel_cipher_aead_cmac
1779# - component_test_psa_crypto_config_reference_cipher_aead_cmac
Minos Galanakisf78447f2024-07-26 20:49:51 +01001780common_psa_crypto_config_accel_cipher_aead_cmac () {
Minos Galanakis471b34c2024-07-26 15:39:24 +01001781 # Start from the full config
1782 helper_libtestdriver1_adjust_config "full"
1783
1784 scripts/config.py unset MBEDTLS_NIST_KW_C
1785}
1786
1787# The 2 following test components, i.e.
1788# - component_test_psa_crypto_config_accel_cipher_aead_cmac
1789# - component_test_psa_crypto_config_reference_cipher_aead_cmac
1790# are meant to be used together in analyze_outcomes.py script in order to test
1791# driver's coverage for ciphers and AEADs.
Minos Galanakis471b34c2024-07-26 15:39:24 +01001792component_test_psa_crypto_config_accel_cipher_aead_cmac () {
1793 msg "build: full config with accelerated cipher inc. AEAD and CMAC"
1794
1795 loc_accel_list="ALG_ECB_NO_PADDING ALG_CBC_NO_PADDING ALG_CBC_PKCS7 ALG_CTR ALG_CFB \
1796 ALG_OFB ALG_XTS ALG_STREAM_CIPHER ALG_CCM_STAR_NO_TAG \
1797 ALG_GCM ALG_CCM ALG_CHACHA20_POLY1305 ALG_CMAC \
Ari Weiler-Ofek86422e52025-07-04 14:43:30 +01001798 KEY_TYPE_AES KEY_TYPE_ARIA KEY_TYPE_CHACHA20 KEY_TYPE_CAMELLIA"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001799
1800 # Configure
1801 # ---------
1802
1803 common_psa_crypto_config_accel_cipher_aead_cmac
1804
1805 # Disable the things that are being accelerated
1806 scripts/config.py unset MBEDTLS_CIPHER_MODE_CBC
1807 scripts/config.py unset MBEDTLS_CIPHER_PADDING_PKCS7
1808 scripts/config.py unset MBEDTLS_CIPHER_MODE_CTR
1809 scripts/config.py unset MBEDTLS_CIPHER_MODE_CFB
1810 scripts/config.py unset MBEDTLS_CIPHER_MODE_OFB
1811 scripts/config.py unset MBEDTLS_CIPHER_MODE_XTS
1812 scripts/config.py unset MBEDTLS_GCM_C
1813 scripts/config.py unset MBEDTLS_CCM_C
1814 scripts/config.py unset MBEDTLS_CHACHAPOLY_C
1815 scripts/config.py unset MBEDTLS_CMAC_C
1816 scripts/config.py unset MBEDTLS_DES_C
1817 scripts/config.py unset MBEDTLS_AES_C
1818 scripts/config.py unset MBEDTLS_ARIA_C
1819 scripts/config.py unset MBEDTLS_CHACHA20_C
1820 scripts/config.py unset MBEDTLS_CAMELLIA_C
Ronald Cronb5c6fcc2025-07-10 13:40:00 +02001821 scripts/config.py unset MBEDTLS_POLY1305_C
Minos Galanakis471b34c2024-07-26 15:39:24 +01001822
Ari Weiler-Ofek5d8d2992025-07-07 23:20:29 +01001823 # Disable DES, if it still exists.
1824 # This can be removed once we remove DES from the library.
1825 scripts/config.py unset PSA_WANT_KEY_TYPE_DES
1826
Minos Galanakis471b34c2024-07-26 15:39:24 +01001827 # Disable CIPHER_C entirely as all ciphers/AEADs are accelerated and PSA
1828 # does not depend on it.
1829 scripts/config.py unset MBEDTLS_CIPHER_C
1830
1831 # Build
1832 # -----
1833
1834 helper_libtestdriver1_make_drivers "$loc_accel_list"
1835
1836 helper_libtestdriver1_make_main "$loc_accel_list"
1837
1838 # Make sure this was not re-enabled by accident (additive config)
1839 not grep mbedtls_cipher ${BUILTIN_SRC_PATH}/cipher.o
Minos Galanakis471b34c2024-07-26 15:39:24 +01001840 not grep mbedtls_aes ${BUILTIN_SRC_PATH}/aes.o
1841 not grep mbedtls_aria ${BUILTIN_SRC_PATH}/aria.o
1842 not grep mbedtls_camellia ${BUILTIN_SRC_PATH}/camellia.o
1843 not grep mbedtls_ccm ${BUILTIN_SRC_PATH}/ccm.o
1844 not grep mbedtls_gcm ${BUILTIN_SRC_PATH}/gcm.o
1845 not grep mbedtls_chachapoly ${BUILTIN_SRC_PATH}/chachapoly.o
1846 not grep mbedtls_cmac ${BUILTIN_SRC_PATH}/cmac.o
Ronald Cronb5c6fcc2025-07-10 13:40:00 +02001847 not grep mbedtls_poly1305 ${BUILTIN_SRC_PATH}/poly1305.o
Minos Galanakis471b34c2024-07-26 15:39:24 +01001848
1849 # Run the tests
1850 # -------------
1851
1852 msg "test: full config with accelerated cipher inc. AEAD and CMAC"
1853 make test
1854
1855 msg "ssl-opt: full config with accelerated cipher inc. AEAD and CMAC"
Ronald Cronbd28acf2025-07-10 09:53:50 +02001856 # Exclude password-protected key tests — they require built-in CBC and AES.
1857 tests/ssl-opt.sh -e "TLS: password protected"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001858
1859 msg "compat.sh: full config with accelerated cipher inc. AEAD and CMAC"
1860 tests/compat.sh -V NO -p mbedTLS
1861}
1862
1863component_test_psa_crypto_config_reference_cipher_aead_cmac () {
1864 msg "build: full config with non-accelerated cipher inc. AEAD and CMAC"
1865 common_psa_crypto_config_accel_cipher_aead_cmac
1866
Ari Weiler-Ofek5d8d2992025-07-07 23:20:29 +01001867 # Disable DES, if it still exists.
1868 # This can be removed once we remove DES from the library.
1869 scripts/config.py unset PSA_WANT_KEY_TYPE_DES
1870
Minos Galanakis471b34c2024-07-26 15:39:24 +01001871 make
1872
1873 msg "test: full config with non-accelerated cipher inc. AEAD and CMAC"
1874 make test
1875
1876 msg "ssl-opt: full config with non-accelerated cipher inc. AEAD and CMAC"
Ronald Cronbd28acf2025-07-10 09:53:50 +02001877 # Exclude password-protected key tests as in test_psa_crypto_config_accel_cipher_aead_cmac.
1878 tests/ssl-opt.sh -e "TLS: password protected"
Minos Galanakis471b34c2024-07-26 15:39:24 +01001879
1880 msg "compat.sh: full config with non-accelerated cipher inc. AEAD and CMAC"
1881 tests/compat.sh -V NO -p mbedTLS
1882}
1883
Minos Galanakisf78447f2024-07-26 20:49:51 +01001884common_block_cipher_dispatch () {
Minos Galanakis471b34c2024-07-26 15:39:24 +01001885 TEST_WITH_DRIVER="$1"
1886
1887 # Start from the full config
1888 helper_libtestdriver1_adjust_config "full"
1889
1890 if [ "$TEST_WITH_DRIVER" -eq 1 ]; then
1891 # Disable key types that are accelerated (there is no legacy equivalent
1892 # symbol for ECB)
1893 scripts/config.py unset MBEDTLS_AES_C
1894 scripts/config.py unset MBEDTLS_ARIA_C
1895 scripts/config.py unset MBEDTLS_CAMELLIA_C
1896 fi
1897
1898 # Disable cipher's modes that, when not accelerated, cause
1899 # legacy key types to be re-enabled in "config_adjust_legacy_from_psa.h".
1900 # Keep this also in the reference component in order to skip the same tests
1901 # that were skipped in the accelerated one.
1902 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CTR
1903 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CFB
1904 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_OFB
1905 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CBC_NO_PADDING
1906 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CBC_PKCS7
1907 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CMAC
1908 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CCM_STAR_NO_TAG
1909 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_PBKDF2_AES_CMAC_PRF_128
1910
1911 # Disable direct dependency on AES_C
1912 scripts/config.py unset MBEDTLS_NIST_KW_C
1913
1914 # Prevent the cipher module from using deprecated PSA path. The reason is
1915 # that otherwise there will be tests relying on "aes_info" (defined in
1916 # "cipher_wrap.c") whose functions are not available when AES_C is
1917 # not defined. ARIA and Camellia are not a problem in this case because
1918 # the PSA path is not tested for these key types.
1919 scripts/config.py set MBEDTLS_DEPRECATED_REMOVED
1920}
1921
Gilles Peskinea9dda7e2024-06-21 11:25:01 +02001922component_test_full_block_cipher_psa_dispatch_static_keystore () {
1923 msg "build: full + PSA dispatch in block_cipher with static keystore"
1924 # Check that the static key store works well when CTR_DRBG uses a
1925 # PSA key for AES.
1926 scripts/config.py unset MBEDTLS_PSA_KEY_STORE_DYNAMIC
1927
1928 loc_accel_list="ALG_ECB_NO_PADDING \
1929 KEY_TYPE_AES KEY_TYPE_ARIA KEY_TYPE_CAMELLIA"
1930
1931 # Configure
1932 # ---------
1933
1934 common_block_cipher_dispatch 1
1935
1936 # Build
1937 # -----
1938
1939 helper_libtestdriver1_make_drivers "$loc_accel_list"
1940
1941 helper_libtestdriver1_make_main "$loc_accel_list"
1942
1943 # Make sure disabled components were not re-enabled by accident (additive
1944 # config)
1945 not grep mbedtls_aes_ library/aes.o
1946 not grep mbedtls_aria_ library/aria.o
1947 not grep mbedtls_camellia_ library/camellia.o
1948
1949 # Run the tests
1950 # -------------
1951
1952 msg "test: full + PSA dispatch in block_cipher with static keystore"
1953 make test
1954}
1955
Minos Galanakis471b34c2024-07-26 15:39:24 +01001956component_test_full_block_cipher_psa_dispatch () {
1957 msg "build: full + PSA dispatch in block_cipher"
1958
1959 loc_accel_list="ALG_ECB_NO_PADDING \
1960 KEY_TYPE_AES KEY_TYPE_ARIA KEY_TYPE_CAMELLIA"
1961
1962 # Configure
1963 # ---------
1964
1965 common_block_cipher_dispatch 1
1966
1967 # Build
1968 # -----
1969
1970 helper_libtestdriver1_make_drivers "$loc_accel_list"
1971
1972 helper_libtestdriver1_make_main "$loc_accel_list"
1973
1974 # Make sure disabled components were not re-enabled by accident (additive
1975 # config)
1976 not grep mbedtls_aes_ ${BUILTIN_SRC_PATH}/aes.o
1977 not grep mbedtls_aria_ ${BUILTIN_SRC_PATH}/aria.o
1978 not grep mbedtls_camellia_ ${BUILTIN_SRC_PATH}/camellia.o
1979
1980 # Run the tests
1981 # -------------
1982
1983 msg "test: full + PSA dispatch in block_cipher"
1984 make test
1985}
1986
1987# This is the reference component of component_test_full_block_cipher_psa_dispatch
Minos Galanakis471b34c2024-07-26 15:39:24 +01001988component_test_full_block_cipher_legacy_dispatch () {
1989 msg "build: full + legacy dispatch in block_cipher"
1990
1991 common_block_cipher_dispatch 0
1992
1993 make
1994
1995 msg "test: full + legacy dispatch in block_cipher"
1996 make test
1997}
1998
Minos Galanakisf78447f2024-07-26 20:49:51 +01001999component_test_aead_chachapoly_disabled () {
Minos Galanakis471b34c2024-07-26 15:39:24 +01002000 msg "build: full minus CHACHAPOLY"
2001 scripts/config.py full
2002 scripts/config.py unset MBEDTLS_CHACHAPOLY_C
2003 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CHACHA20_POLY1305
2004 make CC=$ASAN_CC CFLAGS="$ASAN_CFLAGS" LDFLAGS="$ASAN_CFLAGS"
2005
2006 msg "test: full minus CHACHAPOLY"
2007 make test
2008}
2009
Minos Galanakisf78447f2024-07-26 20:49:51 +01002010component_test_aead_only_ccm () {
Minos Galanakis471b34c2024-07-26 15:39:24 +01002011 msg "build: full minus CHACHAPOLY and GCM"
2012 scripts/config.py full
2013 scripts/config.py unset MBEDTLS_CHACHAPOLY_C
2014 scripts/config.py unset MBEDTLS_GCM_C
2015 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CHACHA20_POLY1305
2016 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_GCM
2017 make CC=$ASAN_CC CFLAGS="$ASAN_CFLAGS" LDFLAGS="$ASAN_CFLAGS"
2018
2019 msg "test: full minus CHACHAPOLY and GCM"
2020 make test
2021}
2022
Minos Galanakisf78447f2024-07-26 20:49:51 +01002023component_test_ccm_aes_sha256 () {
Minos Galanakis471b34c2024-07-26 15:39:24 +01002024 msg "build: CCM + AES + SHA256 configuration"
2025
Minos Galanakisa17ffc72024-12-02 23:57:30 +00002026 # Setting a blank config disables everyhing in the library side.
2027 echo '#define MBEDTLS_CONFIG_H ' >"$CONFIG_H"
Harry Ramsey94c386a2025-01-16 16:08:34 +00002028 cp tf-psa-crypto/configs/crypto-config-ccm-aes-sha256.h "$CRYPTO_CONFIG_H"
Ronald Cron9d262d72024-12-06 17:41:26 +01002029
Minos Galanakis471b34c2024-07-26 15:39:24 +01002030 make
Minos Galanakis471b34c2024-07-26 15:39:24 +01002031 msg "test: CCM + AES + SHA256 configuration"
2032 make test
2033}
2034
2035# Test that the given .o file builds with all (valid) combinations of the given options.
2036#
2037# Syntax: build_test_config_combos FILE VALIDATOR_FUNCTION OPT1 OPT2 ...
2038#
2039# The validator function is the name of a function to validate the combination of options.
2040# It may be "" if all combinations are valid.
2041# It receives a string containing a combination of options, as passed to the compiler,
2042# e.g. "-DOPT1 -DOPT2 ...". It must return 0 iff the combination is valid, non-zero if invalid.
Minos Galanakisf78447f2024-07-26 20:49:51 +01002043build_test_config_combos () {
Minos Galanakis471b34c2024-07-26 15:39:24 +01002044 file=$1
2045 shift
2046 validate_options=$1
2047 shift
2048 options=("$@")
2049
2050 # clear all of the options so that they can be overridden on the clang commandline
2051 for opt in "${options[@]}"; do
2052 ./scripts/config.py unset ${opt}
2053 done
2054
2055 # enter the library directory
2056 cd library
2057
2058 # The most common issue is unused variables/functions, so ensure -Wunused is set.
2059 warning_flags="-Werror -Wall -Wextra -Wwrite-strings -Wpointer-arith -Wimplicit-fallthrough -Wshadow -Wvla -Wformat=2 -Wno-format-nonliteral -Wshadow -Wasm-operand-widths -Wunused"
2060
2061 # Extract the command generated by the Makefile to build the target file.
2062 # This ensures that we have any include paths, macro definitions, etc
2063 # that may be applied by make.
2064 # Add -fsyntax-only as we only want a syntax check and don't need to generate a file.
2065 compile_cmd="clang \$(LOCAL_CFLAGS) ${warning_flags} -fsyntax-only -c"
2066
2067 makefile=$(TMPDIR=. mktemp)
2068 deps=""
2069
2070 len=${#options[@]}
2071 source_file=../${file%.o}.c
2072
2073 targets=0
2074 echo 'include Makefile' >${makefile}
2075
2076 for ((i = 0; i < $((2**${len})); i++)); do
2077 # generate each of 2^n combinations of options
2078 # each bit of $i is used to determine if options[i] will be set or not
2079 target="t"
2080 clang_args=""
2081 for ((j = 0; j < ${len}; j++)); do
2082 if (((i >> j) & 1)); then
2083 opt=-D${options[$j]}
2084 clang_args="${clang_args} ${opt}"
2085 target="${target}${opt}"
2086 fi
2087 done
2088
2089 # if combination is not known to be invalid, add it to the makefile
2090 if [[ -z $validate_options ]] || $validate_options "${clang_args}"; then
2091 cmd="${compile_cmd} ${clang_args}"
2092 echo "${target}: ${source_file}; $cmd ${source_file}" >> ${makefile}
2093
2094 deps="${deps} ${target}"
2095 ((++targets))
2096 fi
2097 done
2098
2099 echo "build_test_config_combos: ${deps}" >> ${makefile}
2100
2101 # execute all of the commands via Make (probably in parallel)
2102 make -s -f ${makefile} build_test_config_combos
2103 echo "$targets targets checked"
2104
2105 # clean up the temporary makefile
2106 rm ${makefile}
2107}
2108
Minos Galanakisf78447f2024-07-26 20:49:51 +01002109validate_aes_config_variations () {
Minos Galanakis471b34c2024-07-26 15:39:24 +01002110 if [[ "$1" == *"MBEDTLS_AES_USE_HARDWARE_ONLY"* ]]; then
2111 if [[ !(("$HOSTTYPE" == "aarch64" && "$1" != *"MBEDTLS_AESCE_C"*) || \
2112 ("$HOSTTYPE" == "x86_64" && "$1" != *"MBEDTLS_AESNI_C"*)) ]]; then
2113 return 1
2114 fi
2115 fi
2116 return 0
2117}
2118
Minos Galanakisf78447f2024-07-26 20:49:51 +01002119component_build_aes_variations () {
Minos Galanakis471b34c2024-07-26 15:39:24 +01002120 # 18s - around 90ms per clang invocation on M1 Pro
2121 #
2122 # aes.o has many #if defined(...) guards that intersect in complex ways.
2123 # Test that all the combinations build cleanly.
2124
2125 MBEDTLS_ROOT_DIR="$PWD"
2126 msg "build: aes.o for all combinations of relevant config options"
2127
2128 build_test_config_combos ${BUILTIN_SRC_PATH}/aes.o validate_aes_config_variations \
Thomas Daubney6cf05f92024-07-18 11:30:22 +01002129 "MBEDTLS_AES_ROM_TABLES" \
Minos Galanakis471b34c2024-07-26 15:39:24 +01002130 "MBEDTLS_AES_FEWER_TABLES" "MBEDTLS_AES_USE_HARDWARE_ONLY" \
2131 "MBEDTLS_AESNI_C" "MBEDTLS_AESCE_C" "MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH"
2132
2133 cd "$MBEDTLS_ROOT_DIR"
2134 msg "build: aes.o for all combinations of relevant config options + BLOCK_CIPHER_NO_DECRYPT"
2135
Ari Weiler-Ofek86422e52025-07-04 14:43:30 +01002136 # MBEDTLS_BLOCK_CIPHER_NO_DECRYPT is incompatible with ECB in PSA, CBC/XTS/NIST_KW,
Minos Galanakis471b34c2024-07-26 15:39:24 +01002137 # manually set or unset those configurations to check
2138 # MBEDTLS_BLOCK_CIPHER_NO_DECRYPT with various combinations in aes.o.
2139 scripts/config.py set MBEDTLS_BLOCK_CIPHER_NO_DECRYPT
Minos Galanakis471b34c2024-07-26 15:39:24 +01002140 scripts/config.py unset MBEDTLS_CIPHER_MODE_XTS
Minos Galanakis471b34c2024-07-26 15:39:24 +01002141 scripts/config.py unset MBEDTLS_NIST_KW_C
Ronald Cron54d1eec2024-09-06 09:55:38 +02002142
Minos Galanakis00b641c2024-11-28 23:05:10 +00002143 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_CBC_NO_PADDING
2144 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_CBC_PKCS7
2145 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_ALG_ECB_NO_PADDING
2146 scripts/config.py -c $CRYPTO_CONFIG_H unset PSA_WANT_KEY_TYPE_DES
Ronald Cron4153ebb2024-09-11 15:32:48 +02002147 # Note: The two unsets below are to be removed for Mbed TLS 4.0
Ronald Cron54d1eec2024-09-06 09:55:38 +02002148 scripts/config.py unset MBEDTLS_CIPHER_MODE_CBC
2149 scripts/config.py unset MBEDTLS_DES_C
2150
Minos Galanakis471b34c2024-07-26 15:39:24 +01002151 build_test_config_combos ${BUILTIN_SRC_PATH}/aes.o validate_aes_config_variations \
Thomas Daubney6cf05f92024-07-18 11:30:22 +01002152 "MBEDTLS_AES_ROM_TABLES" \
Minos Galanakis471b34c2024-07-26 15:39:24 +01002153 "MBEDTLS_AES_FEWER_TABLES" "MBEDTLS_AES_USE_HARDWARE_ONLY" \
2154 "MBEDTLS_AESNI_C" "MBEDTLS_AESCE_C" "MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH"
2155}
2156
Minos Galanakisf78447f2024-07-26 20:49:51 +01002157component_test_sha3_variations () {
Minos Galanakis471b34c2024-07-26 15:39:24 +01002158 msg "sha3 loop unroll variations"
2159
2160 # define minimal config sufficient to test SHA3
Ronald Crone7f289e2024-09-06 11:02:47 +02002161 cat > include/mbedtls/mbedtls_config.h << END
Ronald Crone7f289e2024-09-06 11:02:47 +02002162END
2163
2164 cat > tf-psa-crypto/include/psa/crypto_config.h << END
2165 #define PSA_WANT_ALG_SHA_256 1
2166 #define PSA_WANT_ALG_SHA3_224 1
2167 #define PSA_WANT_ALG_SHA3_256 1
2168 #define PSA_WANT_ALG_SHA3_384 1
2169 #define PSA_WANT_ALG_SHA3_512 1
Ronald Cron3dd1d3d2024-12-05 15:12:06 +01002170 #define MBEDTLS_AES_C
2171 #define MBEDTLS_CTR_DRBG_C
2172 #define MBEDTLS_ENTROPY_C
2173 #define MBEDTLS_PSA_CRYPTO_C
2174 #define MBEDTLS_SELF_TEST
Minos Galanakis471b34c2024-07-26 15:39:24 +01002175END
2176
2177 msg "all loops unrolled"
2178 make clean
2179 make -C tests ../tf-psa-crypto/tests/test_suite_shax CFLAGS="-DMBEDTLS_SHA3_THETA_UNROLL=1 -DMBEDTLS_SHA3_PI_UNROLL=1 -DMBEDTLS_SHA3_CHI_UNROLL=1 -DMBEDTLS_SHA3_RHO_UNROLL=1"
2180 ./tf-psa-crypto/tests/test_suite_shax
2181
2182 msg "all loops rolled up"
2183 make clean
2184 make -C tests ../tf-psa-crypto/tests/test_suite_shax CFLAGS="-DMBEDTLS_SHA3_THETA_UNROLL=0 -DMBEDTLS_SHA3_PI_UNROLL=0 -DMBEDTLS_SHA3_CHI_UNROLL=0 -DMBEDTLS_SHA3_RHO_UNROLL=0"
2185 ./tf-psa-crypto/tests/test_suite_shax
2186}
2187
Minos Galanakisf699d512024-08-01 11:32:30 +01002188support_build_aes_aesce_armcc () {
2189 support_build_armcc
2190}
2191
Minos Galanakis471b34c2024-07-26 15:39:24 +01002192# For timebeing, no aarch64 gcc available in CI and no arm64 CI node.
2193component_build_aes_aesce_armcc () {
2194 msg "Build: AESCE test on arm64 platform without plain C."
2195 scripts/config.py baremetal
2196
2197 # armc[56] don't support SHA-512 intrinsics
2198 scripts/config.py unset MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT
2199
2200 # Stop armclang warning about feature detection for A64_CRYPTO.
2201 # With this enabled, the library does build correctly under armclang,
2202 # but in baremetal builds (as tested here), feature detection is
2203 # unavailable, and the user is notified via a #warning. So enabling
2204 # this feature would prevent us from building with -Werror on
2205 # armclang. Tracked in #7198.
2206 scripts/config.py unset MBEDTLS_SHA256_USE_ARMV8_A_CRYPTO_IF_PRESENT
2207 scripts/config.py set MBEDTLS_HAVE_ASM
2208
2209 msg "AESCE, build with default configuration."
2210 scripts/config.py set MBEDTLS_AESCE_C
2211 scripts/config.py unset MBEDTLS_AES_USE_HARDWARE_ONLY
Manuel Pégourié-Gonnard8f08bcd2024-10-01 13:01:54 +02002212 helper_armc6_build_test "-O1 --target=aarch64-arm-none-eabi -march=armv8-a+crypto"
Minos Galanakis471b34c2024-07-26 15:39:24 +01002213
2214 msg "AESCE, build AESCE only"
2215 scripts/config.py set MBEDTLS_AESCE_C
2216 scripts/config.py set MBEDTLS_AES_USE_HARDWARE_ONLY
Manuel Pégourié-Gonnard8f08bcd2024-10-01 13:01:54 +02002217 helper_armc6_build_test "-O1 --target=aarch64-arm-none-eabi -march=armv8-a+crypto"
Minos Galanakis471b34c2024-07-26 15:39:24 +01002218}
2219
Minos Galanakis471b34c2024-07-26 15:39:24 +01002220component_test_aes_only_128_bit_keys () {
2221 msg "build: default config + AES_ONLY_128_BIT_KEY_LENGTH"
2222 scripts/config.py set MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH
2223
2224 make CFLAGS='-O2 -Werror -Wall -Wextra'
2225
2226 msg "test: default config + AES_ONLY_128_BIT_KEY_LENGTH"
2227 make test
2228}
2229
2230component_test_no_ctr_drbg_aes_only_128_bit_keys () {
2231 msg "build: default config + AES_ONLY_128_BIT_KEY_LENGTH - CTR_DRBG_C"
2232 scripts/config.py set MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH
2233 scripts/config.py unset MBEDTLS_CTR_DRBG_C
2234
2235 make CC=clang CFLAGS='-Werror -Wall -Wextra'
2236
2237 msg "test: default config + AES_ONLY_128_BIT_KEY_LENGTH - CTR_DRBG_C"
2238 make test
2239}
2240
2241component_test_aes_only_128_bit_keys_have_builtins () {
2242 msg "build: default config + AES_ONLY_128_BIT_KEY_LENGTH - AESNI_C - AESCE_C"
2243 scripts/config.py set MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH
2244 scripts/config.py unset MBEDTLS_AESNI_C
2245 scripts/config.py unset MBEDTLS_AESCE_C
2246
2247 make CFLAGS='-O2 -Werror -Wall -Wextra'
2248
2249 msg "test: default config + AES_ONLY_128_BIT_KEY_LENGTH - AESNI_C - AESCE_C"
2250 make test
2251
2252 msg "selftest: default config + AES_ONLY_128_BIT_KEY_LENGTH - AESNI_C - AESCE_C"
2253 programs/test/selftest
2254}
2255
2256component_test_gcm_largetable () {
2257 msg "build: default config + GCM_LARGE_TABLE - AESNI_C - AESCE_C"
2258 scripts/config.py set MBEDTLS_GCM_LARGE_TABLE
2259 scripts/config.py unset MBEDTLS_AESNI_C
2260 scripts/config.py unset MBEDTLS_AESCE_C
2261
2262 make CFLAGS='-O2 -Werror -Wall -Wextra'
2263
2264 msg "test: default config - GCM_LARGE_TABLE - AESNI_C - AESCE_C"
2265 make test
2266}
2267
2268component_test_aes_fewer_tables () {
2269 msg "build: default config with AES_FEWER_TABLES enabled"
2270 scripts/config.py set MBEDTLS_AES_FEWER_TABLES
2271 make CFLAGS='-O2 -Werror -Wall -Wextra'
2272
2273 msg "test: AES_FEWER_TABLES"
2274 make test
2275}
2276
2277component_test_aes_rom_tables () {
2278 msg "build: default config with AES_ROM_TABLES enabled"
2279 scripts/config.py set MBEDTLS_AES_ROM_TABLES
2280 make CFLAGS='-O2 -Werror -Wall -Wextra'
2281
2282 msg "test: AES_ROM_TABLES"
2283 make test
2284}
2285
2286component_test_aes_fewer_tables_and_rom_tables () {
2287 msg "build: default config with AES_ROM_TABLES and AES_FEWER_TABLES enabled"
2288 scripts/config.py set MBEDTLS_AES_FEWER_TABLES
2289 scripts/config.py set MBEDTLS_AES_ROM_TABLES
2290 make CFLAGS='-O2 -Werror -Wall -Wextra'
2291
2292 msg "test: AES_FEWER_TABLES + AES_ROM_TABLES"
2293 make test
2294}
2295
Ronald Cron66040472024-09-06 10:14:38 +02002296# helper for component_test_block_cipher_no_decrypt_aesni() which:
Minos Galanakis471b34c2024-07-26 15:39:24 +01002297# - enable/disable the list of config options passed from -s/-u respectively.
2298# - build
2299# - test for tests_suite_xxx
2300# - selftest
2301#
2302# Usage: helper_block_cipher_no_decrypt_build_test
2303# [-s set_opts] [-u unset_opts] [-c cflags] [-l ldflags] [option [...]]
2304# Options: -s set_opts the list of config options to enable
2305# -u unset_opts the list of config options to disable
2306# -c cflags the list of options passed to CFLAGS
2307# -l ldflags the list of options passed to LDFLAGS
Minos Galanakis471b34c2024-07-26 15:39:24 +01002308helper_block_cipher_no_decrypt_build_test () {
2309 while [ $# -gt 0 ]; do
2310 case "$1" in
2311 -s)
2312 shift; local set_opts="$1";;
2313 -u)
2314 shift; local unset_opts="$1";;
2315 -c)
2316 shift; local cflags="-Werror -Wall -Wextra $1";;
2317 -l)
2318 shift; local ldflags="$1";;
2319 esac
2320 shift
2321 done
2322 set_opts="${set_opts:-}"
2323 unset_opts="${unset_opts:-}"
2324 cflags="${cflags:-}"
2325 ldflags="${ldflags:-}"
2326
2327 [ -n "$set_opts" ] && echo "Enabling: $set_opts" && scripts/config.py set-all $set_opts
2328 [ -n "$unset_opts" ] && echo "Disabling: $unset_opts" && scripts/config.py unset-all $unset_opts
2329
2330 msg "build: default config + BLOCK_CIPHER_NO_DECRYPT${set_opts:+ + $set_opts}${unset_opts:+ - $unset_opts} with $cflags${ldflags:+, $ldflags}"
2331 make clean
2332 make CFLAGS="-O2 $cflags" LDFLAGS="$ldflags"
2333
2334 # Make sure we don't have mbedtls_xxx_setkey_dec in AES/ARIA/CAMELLIA
2335 not grep mbedtls_aes_setkey_dec ${BUILTIN_SRC_PATH}/aes.o
2336 not grep mbedtls_aria_setkey_dec ${BUILTIN_SRC_PATH}/aria.o
2337 not grep mbedtls_camellia_setkey_dec ${BUILTIN_SRC_PATH}/camellia.o
2338 # Make sure we don't have mbedtls_internal_aes_decrypt in AES
2339 not grep mbedtls_internal_aes_decrypt ${BUILTIN_SRC_PATH}/aes.o
2340 # Make sure we don't have mbedtls_aesni_inverse_key in AESNI
2341 not grep mbedtls_aesni_inverse_key ${BUILTIN_SRC_PATH}/aesni.o
2342
2343 msg "test: default config + BLOCK_CIPHER_NO_DECRYPT${set_opts:+ + $set_opts}${unset_opts:+ - $unset_opts} with $cflags${ldflags:+, $ldflags}"
2344 make test
2345
2346 msg "selftest: default config + BLOCK_CIPHER_NO_DECRYPT${set_opts:+ + $set_opts}${unset_opts:+ - $unset_opts} with $cflags${ldflags:+, $ldflags}"
2347 programs/test/selftest
2348}
2349
Ronald Cron66040472024-09-06 10:14:38 +02002350# This is a configuration function used in component_test_block_cipher_no_decrypt_xxx:
2351config_block_cipher_no_decrypt () {
2352 scripts/config.py set MBEDTLS_BLOCK_CIPHER_NO_DECRYPT
2353 scripts/config.py unset MBEDTLS_CIPHER_MODE_XTS
2354 scripts/config.py unset MBEDTLS_NIST_KW_C
2355
2356 # Enable support for cryptographic mechanisms through the PSA API.
2357 # Note: XTS, KW are not yet supported via the PSA API in Mbed TLS.
Ronald Cron66040472024-09-06 10:14:38 +02002358 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CBC_NO_PADDING
2359 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_CBC_PKCS7
2360 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_ALG_ECB_NO_PADDING
2361 scripts/config.py -f "$CRYPTO_CONFIG_H" unset PSA_WANT_KEY_TYPE_DES
Ronald Cron4153ebb2024-09-11 15:32:48 +02002362 # Note: The two unsets below are to be removed for Mbed TLS 4.0
Ronald Cron66040472024-09-06 10:14:38 +02002363 scripts/config.py unset MBEDTLS_CIPHER_MODE_CBC
2364 scripts/config.py unset MBEDTLS_DES_C
2365}
2366
2367component_test_block_cipher_no_decrypt_aesni () {
2368 # Test BLOCK_CIPHER_NO_DECRYPT with AESNI intrinsics, AESNI assembly and
2369 # AES C implementation on x86_64 and with AESNI intrinsics on x86.
2370
2371 # This consistently causes an llvm crash on clang 3.8, so use gcc
2372 export CC=gcc
2373 config_block_cipher_no_decrypt
2374
Minos Galanakis471b34c2024-07-26 15:39:24 +01002375 # test AESNI intrinsics
2376 helper_block_cipher_no_decrypt_build_test \
2377 -s "MBEDTLS_AESNI_C" \
2378 -c "-mpclmul -msse2 -maes"
2379
2380 # test AESNI assembly
2381 helper_block_cipher_no_decrypt_build_test \
2382 -s "MBEDTLS_AESNI_C" \
2383 -c "-mno-pclmul -mno-sse2 -mno-aes"
2384
2385 # test AES C implementation
2386 helper_block_cipher_no_decrypt_build_test \
2387 -u "MBEDTLS_AESNI_C"
2388
2389 # test AESNI intrinsics for i386 target
2390 helper_block_cipher_no_decrypt_build_test \
2391 -s "MBEDTLS_AESNI_C" \
2392 -c "-m32 -mpclmul -msse2 -maes" \
2393 -l "-m32"
2394}
2395
Minos Galanakisf699d512024-08-01 11:32:30 +01002396support_test_block_cipher_no_decrypt_aesce_armcc () {
2397 support_build_armcc
2398}
2399
Minos Galanakis471b34c2024-07-26 15:39:24 +01002400component_test_block_cipher_no_decrypt_aesce_armcc () {
2401 scripts/config.py baremetal
2402
2403 # armc[56] don't support SHA-512 intrinsics
2404 scripts/config.py unset MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT
2405
2406 # Stop armclang warning about feature detection for A64_CRYPTO.
2407 # With this enabled, the library does build correctly under armclang,
2408 # but in baremetal builds (as tested here), feature detection is
2409 # unavailable, and the user is notified via a #warning. So enabling
2410 # this feature would prevent us from building with -Werror on
2411 # armclang. Tracked in #7198.
2412 scripts/config.py unset MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT
2413 scripts/config.py set MBEDTLS_HAVE_ASM
2414
Ronald Cron66040472024-09-06 10:14:38 +02002415 config_block_cipher_no_decrypt
Minos Galanakis471b34c2024-07-26 15:39:24 +01002416
2417 # test AESCE baremetal build
2418 scripts/config.py set MBEDTLS_AESCE_C
2419 msg "build: default config + BLOCK_CIPHER_NO_DECRYPT with AESCE"
Manuel Pégourié-Gonnard8f08bcd2024-10-01 13:01:54 +02002420 helper_armc6_build_test "-O1 --target=aarch64-arm-none-eabi -march=armv8-a+crypto -Werror -Wall -Wextra"
Minos Galanakis471b34c2024-07-26 15:39:24 +01002421
2422 # Make sure we don't have mbedtls_xxx_setkey_dec in AES/ARIA/CAMELLIA
2423 not grep mbedtls_aes_setkey_dec ${BUILTIN_SRC_PATH}/aes.o
2424 not grep mbedtls_aria_setkey_dec ${BUILTIN_SRC_PATH}/aria.o
2425 not grep mbedtls_camellia_setkey_dec ${BUILTIN_SRC_PATH}/camellia.o
2426 # Make sure we don't have mbedtls_internal_aes_decrypt in AES
2427 not grep mbedtls_internal_aes_decrypt ${BUILTIN_SRC_PATH}/aes.o
2428 # Make sure we don't have mbedtls_aesce_inverse_key and aesce_decrypt_block in AESCE
2429 not grep mbedtls_aesce_inverse_key ${BUILTIN_SRC_PATH}/aesce.o
2430 not grep aesce_decrypt_block ${BUILTIN_SRC_PATH}/aesce.o
2431}
2432
2433component_test_ctr_drbg_aes_256_sha_256 () {
2434 msg "build: full + MBEDTLS_ENTROPY_FORCE_SHA256 (ASan build)"
2435 scripts/config.py full
2436 scripts/config.py unset MBEDTLS_MEMORY_BUFFER_ALLOC_C
2437 scripts/config.py set MBEDTLS_ENTROPY_FORCE_SHA256
2438 CC=$ASAN_CC cmake -D CMAKE_BUILD_TYPE:String=Asan .
2439 make
2440
2441 msg "test: full + MBEDTLS_ENTROPY_FORCE_SHA256 (ASan build)"
2442 make test
2443}
2444
2445component_test_ctr_drbg_aes_128_sha_512 () {
2446 msg "build: full + MBEDTLS_CTR_DRBG_USE_128_BIT_KEY (ASan build)"
2447 scripts/config.py full
2448 scripts/config.py unset MBEDTLS_MEMORY_BUFFER_ALLOC_C
2449 scripts/config.py set MBEDTLS_CTR_DRBG_USE_128_BIT_KEY
2450 CC=$ASAN_CC cmake -D CMAKE_BUILD_TYPE:String=Asan .
2451 make
2452
2453 msg "test: full + MBEDTLS_CTR_DRBG_USE_128_BIT_KEY (ASan build)"
2454 make test
2455}
2456
2457component_test_ctr_drbg_aes_128_sha_256 () {
2458 msg "build: full + MBEDTLS_CTR_DRBG_USE_128_BIT_KEY + MBEDTLS_ENTROPY_FORCE_SHA256 (ASan build)"
2459 scripts/config.py full
2460 scripts/config.py unset MBEDTLS_MEMORY_BUFFER_ALLOC_C
2461 scripts/config.py set MBEDTLS_CTR_DRBG_USE_128_BIT_KEY
2462 scripts/config.py set MBEDTLS_ENTROPY_FORCE_SHA256
2463 CC=$ASAN_CC cmake -D CMAKE_BUILD_TYPE:String=Asan .
2464 make
2465
2466 msg "test: full + MBEDTLS_CTR_DRBG_USE_128_BIT_KEY + MBEDTLS_ENTROPY_FORCE_SHA256 (ASan build)"
2467 make test
2468}
2469
Gilles Peskinea9dda7e2024-06-21 11:25:01 +02002470component_test_full_static_keystore () {
2471 msg "build: full config - MBEDTLS_PSA_KEY_STORE_DYNAMIC"
2472 scripts/config.py full
2473 scripts/config.py unset MBEDTLS_PSA_KEY_STORE_DYNAMIC
2474 make CC=clang CFLAGS="$ASAN_CFLAGS -Os" LDFLAGS="$ASAN_CFLAGS"
2475
2476 msg "test: full config - MBEDTLS_PSA_KEY_STORE_DYNAMIC"
2477 make test
2478}
2479
Minos Galanakis471b34c2024-07-26 15:39:24 +01002480component_test_psa_crypto_drivers () {
Ronald Crona0afbfb2024-10-15 13:20:31 +02002481 # Test dispatch to drivers and fallbacks with
2482 # test_suite_psa_crypto_driver_wrappers test suite. The test drivers that
2483 # are wrappers around the builtin drivers are activated by
2484 # PSA_CRYPTO_DRIVER_TEST.
2485 #
2486 # For the time being, some test cases in test_suite_block_cipher and
2487 # test_suite_md.psa rely on this component to be run at least once by the
2488 # CI. This should disappear as we progress the 4.x work. See
2489 # config_adjust_test_accelerators.h for more information.
Minos Galanakis471b34c2024-07-26 15:39:24 +01002490 msg "build: full + test drivers dispatching to builtins"
2491 scripts/config.py full
Ronald Cron67cc6a72024-10-14 10:55:24 +02002492 loc_cflags="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_CONFIG_ADJUST_TEST_ACCELERATORS"
David Horstmann5b93d972024-10-31 15:36:05 +00002493 loc_cflags="${loc_cflags} -I../framework/tests/include"
Minos Galanakis471b34c2024-07-26 15:39:24 +01002494
2495 make CC=$ASAN_CC CFLAGS="${loc_cflags}" LDFLAGS="$ASAN_CFLAGS"
2496
2497 msg "test: full + test drivers dispatching to builtins"
2498 make test
2499}
2500
2501component_build_psa_config_file () {
Minos Galanakis4f619e12024-11-14 14:56:47 +00002502 msg "build: make with TF_PSA_CRYPTO_CONFIG_FILE" # ~40s
Minos Galanakis471b34c2024-07-26 15:39:24 +01002503 cp "$CRYPTO_CONFIG_H" psa_test_config.h
Minos Galanakis4f619e12024-11-14 14:56:47 +00002504 echo '#error "TF_PSA_CRYPTO_CONFIG_FILE is not working"' >"$CRYPTO_CONFIG_H"
2505 make CFLAGS="-I '$PWD' -DTF_PSA_CRYPTO_CONFIG_FILE='\"psa_test_config.h\"'"
Minos Galanakis471b34c2024-07-26 15:39:24 +01002506 # Make sure this feature is enabled. We'll disable it in the next phase.
Ronald Cron3f120062025-07-03 14:45:51 +02002507 programs/test/query_compile_time_config PSA_WANT_ALG_CMAC
Minos Galanakis471b34c2024-07-26 15:39:24 +01002508 make clean
2509
Minos Galanakis4f619e12024-11-14 14:56:47 +00002510 msg "build: make with TF_PSA_CRYPTO_CONFIG_FILE + TF_PSA_CRYPTO_USER_CONFIG_FILE" # ~40s
Minos Galanakis471b34c2024-07-26 15:39:24 +01002511 # In the user config, disable one feature and its dependencies, which will
2512 # reflect on the mbedtls configuration so we can query it with
2513 # query_compile_time_config.
2514 echo '#undef PSA_WANT_ALG_CMAC' >psa_user_config.h
2515 echo '#undef PSA_WANT_ALG_PBKDF2_AES_CMAC_PRF_128' >> psa_user_config.h
Minos Galanakisaa2f12c2024-10-22 15:31:07 +01002516 echo '#undef MBEDTLS_CMAC_C' >> psa_user_config.h
Minos Galanakis4f619e12024-11-14 14:56:47 +00002517 make CFLAGS="-I '$PWD' -DTF_PSA_CRYPTO_CONFIG_FILE='\"psa_test_config.h\"' -DTF_PSA_CRYPTO_USER_CONFIG_FILE='\"psa_user_config.h\"'"
Ronald Cron3f120062025-07-03 14:45:51 +02002518 not programs/test/query_compile_time_config PSA_WANT_ALG_CMAC
Minos Galanakis471b34c2024-07-26 15:39:24 +01002519
2520 rm -f psa_test_config.h psa_user_config.h
2521}
2522
2523component_build_psa_alt_headers () {
2524 msg "build: make with PSA alt headers" # ~20s
2525
2526 # Generate alternative versions of the substitutable headers with the
2527 # same content except different include guards.
David Horstmanndc459512024-11-07 17:08:11 +00002528 make -C tests ../framework/tests/include/alt-extra/psa/crypto_platform_alt.h ../framework/tests/include/alt-extra/psa/crypto_struct_alt.h
Minos Galanakis471b34c2024-07-26 15:39:24 +01002529
2530 # Build the library and some programs.
2531 # Don't build the fuzzers to avoid having to go through hoops to set
2532 # a correct include path for programs/fuzz/Makefile.
David Horstmann5b93d972024-10-31 15:36:05 +00002533 make CFLAGS="-I ../framework/tests/include/alt-extra -DMBEDTLS_PSA_CRYPTO_PLATFORM_FILE='\"psa/crypto_platform_alt.h\"' -DMBEDTLS_PSA_CRYPTO_STRUCT_FILE='\"psa/crypto_struct_alt.h\"'" lib
2534 make -C programs -o fuzz CFLAGS="-I ../framework/tests/include/alt-extra -DMBEDTLS_PSA_CRYPTO_PLATFORM_FILE='\"psa/crypto_platform_alt.h\"' -DMBEDTLS_PSA_CRYPTO_STRUCT_FILE='\"psa/crypto_struct_alt.h\"'"
Minos Galanakis471b34c2024-07-26 15:39:24 +01002535
2536 # Check that we're getting the alternative include guards and not the
2537 # original include guards.
2538 programs/test/query_included_headers | grep -x PSA_CRYPTO_PLATFORM_ALT_H
2539 programs/test/query_included_headers | grep -x PSA_CRYPTO_STRUCT_ALT_H
2540 programs/test/query_included_headers | not grep -x PSA_CRYPTO_PLATFORM_H
2541 programs/test/query_included_headers | not grep -x PSA_CRYPTO_STRUCT_H
2542}
2543
2544component_test_min_mpi_window_size () {
2545 msg "build: Default + MBEDTLS_MPI_WINDOW_SIZE=1 (ASan build)" # ~ 10s
2546 scripts/config.py set MBEDTLS_MPI_WINDOW_SIZE 1
2547 CC=$ASAN_CC cmake -D CMAKE_BUILD_TYPE:String=Asan .
2548 make
2549
2550 msg "test: MBEDTLS_MPI_WINDOW_SIZE=1 - main suites (inc. selftests) (ASan build)" # ~ 10s
2551 make test
2552}
Ronald Cronf256f8a2025-07-10 17:37:18 +02002553
2554component_test_xts () {
2555 # Component dedicated to run XTS unit test cases while XTS is not
2556 # supported through the PSA API.
2557 msg "build: Default + MBEDTLS_CIPHER_MODE_XTS"
2558
2559 echo "#define MBEDTLS_CIPHER_MODE_XTS" > psa_user_config.h
2560 cmake -DTF_PSA_CRYPTO_USER_CONFIG_FILE="psa_user_config.h"
2561 make
2562
Ronald Crone0b06eb2025-07-15 08:58:32 +02002563 rm -f psa_user_config.h
2564
Ronald Cronf256f8a2025-07-10 17:37:18 +02002565 msg "test: Default + MBEDTLS_CIPHER_MODE_XTS"
2566 make test
Ronald Cronf256f8a2025-07-10 17:37:18 +02002567}