Gilles Peskine | 15c2cbf | 2020-06-25 18:36:28 +0200 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
| 2 | |
| 3 | """Analyze the test outcomes from a full CI run. |
| 4 | |
| 5 | This script can also run on outcomes from a partial run, but the results are |
| 6 | less likely to be useful. |
| 7 | """ |
| 8 | |
Przemek Stekiel | 85c54ea | 2022-11-17 11:50:23 +0100 | [diff] [blame] | 9 | import re |
Gilles Peskine | 2a71fac | 2024-09-17 15:07:22 +0200 | [diff] [blame] | 10 | import typing |
Gilles Peskine | 15c2cbf | 2020-06-25 18:36:28 +0200 | [diff] [blame] | 11 | |
Gilles Peskine | 3146772 | 2024-10-03 18:52:58 +0200 | [diff] [blame] | 12 | import scripts_path # pylint: disable=unused-import |
| 13 | from mbedtls_framework import outcome_analysis |
Gilles Peskine | 8d3c70a | 2020-06-25 18:37:43 +0200 | [diff] [blame] | 14 | |
Pengyu Lv | c2e8f3a | 2023-11-28 17:22:04 +0800 | [diff] [blame] | 15 | |
Gilles Peskine | 082eade | 2024-10-03 18:42:37 +0200 | [diff] [blame] | 16 | class CoverageTask(outcome_analysis.CoverageTask): |
Gilles Peskine | 095561c | 2024-10-04 16:24:26 +0200 | [diff] [blame] | 17 | """Justify test cases that are never executed.""" |
Gilles Peskine | 3f5022e | 2024-09-16 20:23:40 +0200 | [diff] [blame] | 18 | |
Gilles Peskine | 2a71fac | 2024-09-17 15:07:22 +0200 | [diff] [blame] | 19 | @staticmethod |
Gilles Peskine | 5872c0d | 2024-09-17 17:15:29 +0200 | [diff] [blame] | 20 | def _has_word_re(words: typing.Iterable[str], |
| 21 | exclude: typing.Optional[str] = None) -> typing.Pattern: |
Gilles Peskine | 2a71fac | 2024-09-17 15:07:22 +0200 | [diff] [blame] | 22 | """Construct a regex that matches if any of the words appears. |
| 23 | |
| 24 | The occurrence must start and end at a word boundary. |
Gilles Peskine | 5872c0d | 2024-09-17 17:15:29 +0200 | [diff] [blame] | 25 | |
| 26 | If exclude is specified, strings containing a match for that |
| 27 | regular expression will not match the returned pattern. |
Gilles Peskine | 2a71fac | 2024-09-17 15:07:22 +0200 | [diff] [blame] | 28 | """ |
Gilles Peskine | 5872c0d | 2024-09-17 17:15:29 +0200 | [diff] [blame] | 29 | exclude_clause = r'' |
| 30 | if exclude: |
| 31 | exclude_clause = r'(?!.*' + exclude + ')' |
| 32 | return re.compile(exclude_clause + |
| 33 | r'.*\b(?:' + r'|'.join(words) + r')\b.*', |
Gilles Peskine | 5e3ed3f | 2024-10-11 12:00:44 +0200 | [diff] [blame] | 34 | re.DOTALL) |
Gilles Peskine | 2a71fac | 2024-09-17 15:07:22 +0200 | [diff] [blame] | 35 | |
Gilles Peskine | 2a71fac | 2024-09-17 15:07:22 +0200 | [diff] [blame] | 36 | IGNORED_TESTS = { |
Gilles Peskine | de2316b | 2024-09-17 18:32:05 +0200 | [diff] [blame] | 37 | 'ssl-opt': [ |
| 38 | # We don't run ssl-opt.sh with Valgrind on the CI because |
| 39 | # it's extremely slow. We don't intend to change this. |
| 40 | 'DTLS client reconnect from same port: reconnect, nbio, valgrind', |
Gilles Peskine | de2316b | 2024-09-17 18:32:05 +0200 | [diff] [blame] | 41 | # We don't have IPv6 in our CI environment. |
| 42 | # https://github.com/Mbed-TLS/mbedtls-test/issues/176 |
| 43 | 'DTLS cookie: enabled, IPv6', |
| 44 | # Disabled due to OpenSSL bug. |
| 45 | # https://github.com/openssl/openssl/issues/18887 |
| 46 | 'DTLS fragmenting: 3d, openssl client, DTLS 1.2', |
| 47 | # We don't run ssl-opt.sh with Valgrind on the CI because |
| 48 | # it's extremely slow. We don't intend to change this. |
| 49 | 'DTLS fragmenting: proxy MTU: auto-reduction (with valgrind)', |
Gilles Peskine | 24b03d8 | 2024-10-04 16:22:24 +0200 | [diff] [blame] | 50 | # TLS doesn't use restartable ECDH yet. |
| 51 | # https://github.com/Mbed-TLS/mbedtls/issues/7294 |
| 52 | re.compile(r'EC restart:.*no USE_PSA.*'), |
Gilles Peskine | de2316b | 2024-09-17 18:32:05 +0200 | [diff] [blame] | 53 | ], |
Gilles Peskine | 2fd25bb | 2024-09-17 19:46:18 +0200 | [diff] [blame] | 54 | 'test_suite_config.mbedtls_boolean': [ |
Gilles Peskine | 2fd25bb | 2024-09-17 19:46:18 +0200 | [diff] [blame] | 55 | # Missing coverage of test configurations. |
| 56 | # https://github.com/Mbed-TLS/mbedtls/issues/9585 |
| 57 | 'Config: !MBEDTLS_SSL_DTLS_ANTI_REPLAY', |
| 58 | # Missing coverage of test configurations. |
| 59 | # https://github.com/Mbed-TLS/mbedtls/issues/9585 |
| 60 | 'Config: !MBEDTLS_SSL_DTLS_HELLO_VERIFY', |
| 61 | # We don't run test_suite_config when we test this. |
| 62 | # https://github.com/Mbed-TLS/mbedtls/issues/9586 |
| 63 | 'Config: !MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ENABLED', |
Gilles Peskine | 2fd25bb | 2024-09-17 19:46:18 +0200 | [diff] [blame] | 64 | ], |
| 65 | 'test_suite_config.psa_boolean': [ |
| 66 | # We don't test with HMAC disabled. |
| 67 | # https://github.com/Mbed-TLS/mbedtls/issues/9591 |
| 68 | 'Config: !PSA_WANT_ALG_HMAC', |
Gilles Peskine | 2fd25bb | 2024-09-17 19:46:18 +0200 | [diff] [blame] | 69 | # The DERIVE key type is always enabled. |
| 70 | 'Config: !PSA_WANT_KEY_TYPE_DERIVE', |
| 71 | # More granularity of key pair type enablement macros |
| 72 | # than we care to test. |
| 73 | # https://github.com/Mbed-TLS/mbedtls/issues/9590 |
| 74 | 'Config: !PSA_WANT_KEY_TYPE_DH_KEY_PAIR_EXPORT', |
| 75 | 'Config: !PSA_WANT_KEY_TYPE_DH_KEY_PAIR_GENERATE', |
| 76 | 'Config: !PSA_WANT_KEY_TYPE_DH_KEY_PAIR_IMPORT', |
| 77 | # More granularity of key pair type enablement macros |
| 78 | # than we care to test. |
| 79 | # https://github.com/Mbed-TLS/mbedtls/issues/9590 |
| 80 | 'Config: !PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_EXPORT', |
| 81 | 'Config: !PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_IMPORT', |
| 82 | # We don't test with HMAC disabled. |
| 83 | # https://github.com/Mbed-TLS/mbedtls/issues/9591 |
| 84 | 'Config: !PSA_WANT_KEY_TYPE_HMAC', |
| 85 | # The PASSWORD key type is always enabled. |
| 86 | 'Config: !PSA_WANT_KEY_TYPE_PASSWORD', |
| 87 | # The PASSWORD_HASH key type is always enabled. |
| 88 | 'Config: !PSA_WANT_KEY_TYPE_PASSWORD_HASH', |
| 89 | # The RAW_DATA key type is always enabled. |
| 90 | 'Config: !PSA_WANT_KEY_TYPE_RAW_DATA', |
| 91 | # More granularity of key pair type enablement macros |
| 92 | # than we care to test. |
| 93 | # https://github.com/Mbed-TLS/mbedtls/issues/9590 |
| 94 | 'Config: !PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_EXPORT', |
| 95 | 'Config: !PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_IMPORT', |
| 96 | # Algorithm declared but not supported. |
| 97 | 'Config: PSA_WANT_ALG_CBC_MAC', |
| 98 | # Algorithm declared but not supported. |
| 99 | 'Config: PSA_WANT_ALG_XTS', |
Gilles Peskine | 2fd25bb | 2024-09-17 19:46:18 +0200 | [diff] [blame] | 100 | # More granularity of key pair type enablement macros |
| 101 | # than we care to test. |
| 102 | # https://github.com/Mbed-TLS/mbedtls/issues/9590 |
| 103 | 'Config: PSA_WANT_KEY_TYPE_DH_KEY_PAIR_DERIVE', |
| 104 | 'Config: PSA_WANT_KEY_TYPE_ECC_KEY_PAIR', |
| 105 | 'Config: PSA_WANT_KEY_TYPE_RSA_KEY_PAIR', |
| 106 | 'Config: PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_DERIVE', |
Minos Galanakis | 848333d | 2024-12-02 15:58:32 +0000 | [diff] [blame] | 107 | # https://github.com/Mbed-TLS/mbedtls/issues/9583 |
| 108 | 'Config: !MBEDTLS_ECP_NIST_OPTIM', |
| 109 | # We never test without the PSA client code. Should we? |
| 110 | # https://github.com/Mbed-TLS/TF-PSA-Crypto/issues/112 |
| 111 | 'Config: !MBEDTLS_PSA_CRYPTO_CLIENT', |
| 112 | # We only test multithreading with pthreads. |
| 113 | # https://github.com/Mbed-TLS/mbedtls/issues/9584 |
| 114 | 'Config: !MBEDTLS_THREADING_PTHREAD', |
| 115 | # Built but not tested. |
| 116 | # https://github.com/Mbed-TLS/mbedtls/issues/9587 |
| 117 | 'Config: MBEDTLS_AES_USE_HARDWARE_ONLY', |
| 118 | # Untested platform-specific optimizations. |
| 119 | # https://github.com/Mbed-TLS/mbedtls/issues/9588 |
| 120 | 'Config: MBEDTLS_HAVE_SSE2', |
| 121 | # Obsolete configuration option, to be replaced by |
| 122 | # PSA entropy drivers. |
| 123 | # https://github.com/Mbed-TLS/mbedtls/issues/8150 |
| 124 | 'Config: MBEDTLS_NO_PLATFORM_ENTROPY', |
| 125 | # Untested aspect of the platform interface. |
| 126 | # https://github.com/Mbed-TLS/mbedtls/issues/9589 |
| 127 | 'Config: MBEDTLS_PLATFORM_NO_STD_FUNCTIONS', |
| 128 | # In a client-server build, test_suite_config runs in the |
| 129 | # client configuration, so it will never report |
| 130 | # MBEDTLS_PSA_CRYPTO_SPM as enabled. That's ok. |
| 131 | 'Config: MBEDTLS_PSA_CRYPTO_SPM', |
| 132 | # We don't test on armv8 yet. |
| 133 | 'Config: MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT', |
| 134 | 'Config: MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY', |
| 135 | 'Config: MBEDTLS_SHA256_USE_ARMV8_A_CRYPTO_ONLY', |
| 136 | 'Config: MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY', |
| 137 | # We don't run test_suite_config when we test this. |
| 138 | # https://github.com/Mbed-TLS/mbedtls/issues/9586 |
| 139 | 'Config: MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND', |
Gilles Peskine | 2fd25bb | 2024-09-17 19:46:18 +0200 | [diff] [blame] | 140 | ], |
| 141 | 'test_suite_config.psa_combinations': [ |
| 142 | # We don't test this unusual, but sensible configuration. |
| 143 | # https://github.com/Mbed-TLS/mbedtls/issues/9592 |
| 144 | 'Config: PSA_WANT_ALG_DETERMINSTIC_ECDSA without PSA_WANT_ALG_ECDSA', |
| 145 | ], |
Gilles Peskine | b0ec85d | 2024-09-17 18:33:29 +0200 | [diff] [blame] | 146 | 'test_suite_pkcs12': [ |
Gilles Peskine | 2fd25bb | 2024-09-17 19:46:18 +0200 | [diff] [blame] | 147 | # We never test with CBC/PKCS5/PKCS12 enabled but |
| 148 | # PKCS7 padding disabled. |
Gilles Peskine | b0ec85d | 2024-09-17 18:33:29 +0200 | [diff] [blame] | 149 | # https://github.com/Mbed-TLS/mbedtls/issues/9580 |
| 150 | 'PBE Decrypt, (Invalid padding & PKCS7 padding disabled)', |
| 151 | 'PBE Encrypt, pad = 8 (PKCS7 padding disabled)', |
| 152 | ], |
| 153 | 'test_suite_pkcs5': [ |
Gilles Peskine | 2fd25bb | 2024-09-17 19:46:18 +0200 | [diff] [blame] | 154 | # We never test with CBC/PKCS5/PKCS12 enabled but |
| 155 | # PKCS7 padding disabled. |
Gilles Peskine | b0ec85d | 2024-09-17 18:33:29 +0200 | [diff] [blame] | 156 | # https://github.com/Mbed-TLS/mbedtls/issues/9580 |
| 157 | 'PBES2 Decrypt (Invalid padding & PKCS7 padding disabled)', |
| 158 | 'PBES2 Encrypt, pad=6 (PKCS7 padding disabled)', |
| 159 | 'PBES2 Encrypt, pad=8 (PKCS7 padding disabled)', |
| 160 | ], |
Gilles Peskine | eafc275 | 2024-04-19 19:08:34 +0200 | [diff] [blame] | 161 | 'test_suite_psa_crypto': [ |
| 162 | # We don't test this unusual, but sensible configuration. |
| 163 | # https://github.com/Mbed-TLS/mbedtls/issues/9592 |
| 164 | re.compile(r'.*ECDSA.*only deterministic supported'), |
| 165 | ], |
Gilles Peskine | b0ec85d | 2024-09-17 18:33:29 +0200 | [diff] [blame] | 166 | 'test_suite_psa_crypto_metadata': [ |
| 167 | # Algorithms declared but not supported. |
| 168 | # https://github.com/Mbed-TLS/mbedtls/issues/9579 |
| 169 | 'Asymmetric signature: Ed25519ph', |
| 170 | 'Asymmetric signature: Ed448ph', |
| 171 | 'Asymmetric signature: pure EdDSA', |
| 172 | 'Cipher: XTS', |
| 173 | 'MAC: CBC_MAC-3DES', |
| 174 | 'MAC: CBC_MAC-AES-128', |
| 175 | 'MAC: CBC_MAC-AES-192', |
| 176 | 'MAC: CBC_MAC-AES-256', |
| 177 | ], |
Gilles Peskine | 2a71fac | 2024-09-17 15:07:22 +0200 | [diff] [blame] | 178 | 'test_suite_psa_crypto_not_supported.generated': [ |
Gilles Peskine | 5e3ed3f | 2024-10-11 12:00:44 +0200 | [diff] [blame] | 179 | # We never test with DH key support disabled but support |
Gilles Peskine | ab5cc9b | 2024-09-17 17:57:11 +0200 | [diff] [blame] | 180 | # for a DH group enabled. The dependencies of these test |
| 181 | # cases don't really make sense. |
| 182 | # https://github.com/Mbed-TLS/mbedtls/issues/9574 |
| 183 | re.compile(r'PSA \w+ DH_.*type not supported'), |
| 184 | # We only test partial support for DH with the 2048-bit group |
| 185 | # enabled and the other groups disabled. |
| 186 | # https://github.com/Mbed-TLS/mbedtls/issues/9575 |
| 187 | 'PSA generate DH_KEY_PAIR(RFC7919) 2048-bit group not supported', |
| 188 | 'PSA import DH_KEY_PAIR(RFC7919) 2048-bit group not supported', |
| 189 | 'PSA import DH_PUBLIC_KEY(RFC7919) 2048-bit group not supported', |
Gilles Peskine | 2a71fac | 2024-09-17 15:07:22 +0200 | [diff] [blame] | 190 | ], |
| 191 | 'test_suite_psa_crypto_op_fail.generated': [ |
Gilles Peskine | eafc275 | 2024-04-19 19:08:34 +0200 | [diff] [blame] | 192 | # We don't test this unusual, but sensible configuration. |
| 193 | # https://github.com/Mbed-TLS/mbedtls/issues/9592 |
| 194 | re.compile(r'.*: !ECDSA but DETERMINISTIC_ECDSA with ECC_.*'), |
Gilles Peskine | ab5cc9b | 2024-09-17 17:57:11 +0200 | [diff] [blame] | 195 | # We never test with the HMAC algorithm enabled but the HMAC |
| 196 | # key type disabled. Those dependencies don't really make sense. |
| 197 | # https://github.com/Mbed-TLS/mbedtls/issues/9573 |
| 198 | re.compile(r'.* !HMAC with HMAC'), |
Gilles Peskine | 13c418d | 2025-01-16 19:49:12 +0100 | [diff] [blame] | 199 | # We don't test with ECDH disabled but the key type enabled. |
| 200 | # https://github.com/Mbed-TLS/TF-PSA-Crypto/issues/161 |
| 201 | re.compile(r'PSA key_agreement.* !ECDH with ECC_KEY_PAIR\(.*'), |
| 202 | # We don't test with FFDH disabled but the key type enabled. |
| 203 | # https://github.com/Mbed-TLS/TF-PSA-Crypto/issues/160 |
| 204 | re.compile(r'PSA key_agreement.* !FFDH with DH_KEY_PAIR\(.*'), |
Gilles Peskine | 2a71fac | 2024-09-17 15:07:22 +0200 | [diff] [blame] | 205 | ], |
Gilles Peskine | eafc275 | 2024-04-19 19:08:34 +0200 | [diff] [blame] | 206 | 'test_suite_psa_crypto_op_fail.misc': [ |
| 207 | # We don't test this unusual, but sensible configuration. |
| 208 | # https://github.com/Mbed-TLS/mbedtls/issues/9592 |
| 209 | 'PSA sign DETERMINISTIC_ECDSA(SHA_256): !ECDSA but DETERMINISTIC_ECDSA with ECC_KEY_PAIR(SECP_R1)', #pylint: disable=line-too-long |
| 210 | ], |
Gilles Peskine | de2316b | 2024-09-17 18:32:05 +0200 | [diff] [blame] | 211 | 'tls13-misc': [ |
| 212 | # Disabled due to OpenSSL bug. |
| 213 | # https://github.com/openssl/openssl/issues/10714 |
| 214 | 'TLS 1.3 O->m: resumption', |
| 215 | # Disabled due to OpenSSL command line limitation. |
| 216 | # https://github.com/Mbed-TLS/mbedtls/issues/9582 |
| 217 | 'TLS 1.3 m->O: resumption with early data', |
| 218 | ], |
Gilles Peskine | 2a71fac | 2024-09-17 15:07:22 +0200 | [diff] [blame] | 219 | } |
| 220 | |
Gilles Peskine | 82b1672 | 2024-09-16 19:57:10 +0200 | [diff] [blame] | 221 | |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 222 | # The names that we give to classes derived from DriverVSReference do not |
| 223 | # follow the usual naming convention, because it's more readable to use |
| 224 | # underscores and parts of the configuration names. Also, these classes |
| 225 | # are just there to specify some data, so they don't need repetitive |
| 226 | # documentation. |
| 227 | #pylint: disable=invalid-name,missing-class-docstring |
| 228 | |
Gilles Peskine | 082eade | 2024-10-03 18:42:37 +0200 | [diff] [blame] | 229 | class DriverVSReference_hash(outcome_analysis.DriverVSReference): |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 230 | REFERENCE = 'test_psa_crypto_config_reference_hash_use_psa' |
| 231 | DRIVER = 'test_psa_crypto_config_accel_hash_use_psa' |
| 232 | IGNORED_SUITES = [ |
| 233 | 'shax', 'mdx', # the software implementations that are being excluded |
| 234 | 'md.psa', # purposefully depends on whether drivers are present |
| 235 | 'psa_crypto_low_hash.generated', # testing the builtins |
| 236 | ] |
| 237 | IGNORED_TESTS = { |
| 238 | 'test_suite_config': [ |
| 239 | re.compile(r'.*\bMBEDTLS_(MD5|RIPEMD160|SHA[0-9]+)_.*'), |
| 240 | ], |
| 241 | 'test_suite_platform': [ |
| 242 | # Incompatible with sanitizers (e.g. ASan). If the driver |
| 243 | # component uses a sanitizer but the reference component |
| 244 | # doesn't, we have a PASS vs SKIP mismatch. |
| 245 | 'Check mbedtls_calloc overallocation', |
| 246 | ], |
| 247 | } |
| 248 | |
Gilles Peskine | 082eade | 2024-10-03 18:42:37 +0200 | [diff] [blame] | 249 | class DriverVSReference_hmac(outcome_analysis.DriverVSReference): |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 250 | REFERENCE = 'test_psa_crypto_config_reference_hmac' |
| 251 | DRIVER = 'test_psa_crypto_config_accel_hmac' |
| 252 | IGNORED_SUITES = [ |
| 253 | # These suites require legacy hash support, which is disabled |
| 254 | # in the accelerated component. |
| 255 | 'shax', 'mdx', |
| 256 | # This suite tests builtins directly, but these are missing |
| 257 | # in the accelerated case. |
| 258 | 'psa_crypto_low_hash.generated', |
| 259 | ] |
| 260 | IGNORED_TESTS = { |
| 261 | 'test_suite_config': [ |
| 262 | re.compile(r'.*\bMBEDTLS_(MD5|RIPEMD160|SHA[0-9]+)_.*'), |
| 263 | re.compile(r'.*\bMBEDTLS_MD_C\b') |
| 264 | ], |
| 265 | 'test_suite_md': [ |
| 266 | # Builtin HMAC is not supported in the accelerate component. |
| 267 | re.compile('.*HMAC.*'), |
| 268 | # Following tests make use of functions which are not available |
| 269 | # when MD_C is disabled, as it happens in the accelerated |
| 270 | # test component. |
| 271 | re.compile('generic .* Hash file .*'), |
| 272 | 'MD list', |
| 273 | ], |
| 274 | 'test_suite_md.psa': [ |
| 275 | # "legacy only" tests require hash algorithms to be NOT |
| 276 | # accelerated, but this of course false for the accelerated |
| 277 | # test component. |
| 278 | re.compile('PSA dispatch .* legacy only'), |
| 279 | ], |
| 280 | 'test_suite_platform': [ |
| 281 | # Incompatible with sanitizers (e.g. ASan). If the driver |
| 282 | # component uses a sanitizer but the reference component |
| 283 | # doesn't, we have a PASS vs SKIP mismatch. |
| 284 | 'Check mbedtls_calloc overallocation', |
| 285 | ], |
| 286 | } |
| 287 | |
Gilles Peskine | 082eade | 2024-10-03 18:42:37 +0200 | [diff] [blame] | 288 | class DriverVSReference_cipher_aead_cmac(outcome_analysis.DriverVSReference): |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 289 | REFERENCE = 'test_psa_crypto_config_reference_cipher_aead_cmac' |
| 290 | DRIVER = 'test_psa_crypto_config_accel_cipher_aead_cmac' |
| 291 | # Modules replaced by drivers. |
| 292 | IGNORED_SUITES = [ |
| 293 | # low-level (block/stream) cipher modules |
| 294 | 'aes', 'aria', 'camellia', 'des', 'chacha20', |
| 295 | # AEAD modes and CMAC |
| 296 | 'ccm', 'chachapoly', 'cmac', 'gcm', |
| 297 | # The Cipher abstraction layer |
| 298 | 'cipher', |
| 299 | ] |
| 300 | IGNORED_TESTS = { |
| 301 | 'test_suite_config': [ |
| 302 | re.compile(r'.*\bMBEDTLS_(AES|ARIA|CAMELLIA|CHACHA20|DES)_.*'), |
| 303 | re.compile(r'.*\bMBEDTLS_(CCM|CHACHAPOLY|CMAC|GCM)_.*'), |
| 304 | re.compile(r'.*\bMBEDTLS_AES(\w+)_C\b.*'), |
| 305 | re.compile(r'.*\bMBEDTLS_CIPHER_.*'), |
| 306 | ], |
| 307 | # PEM decryption is not supported so far. |
| 308 | # The rest of PEM (write, unencrypted read) works though. |
| 309 | 'test_suite_pem': [ |
| 310 | re.compile(r'PEM read .*(AES|DES|\bencrypt).*'), |
| 311 | ], |
| 312 | 'test_suite_platform': [ |
| 313 | # Incompatible with sanitizers (e.g. ASan). If the driver |
| 314 | # component uses a sanitizer but the reference component |
| 315 | # doesn't, we have a PASS vs SKIP mismatch. |
| 316 | 'Check mbedtls_calloc overallocation', |
| 317 | ], |
| 318 | # Following tests depend on AES_C/DES_C but are not about |
| 319 | # them really, just need to know some error code is there. |
| 320 | 'test_suite_error': [ |
| 321 | 'Low and high error', |
| 322 | 'Single low error' |
| 323 | ], |
| 324 | # Similar to test_suite_error above. |
| 325 | 'test_suite_version': [ |
| 326 | 'Check for MBEDTLS_AES_C when already present', |
| 327 | ], |
| 328 | # The en/decryption part of PKCS#12 is not supported so far. |
| 329 | # The rest of PKCS#12 (key derivation) works though. |
| 330 | 'test_suite_pkcs12': [ |
| 331 | re.compile(r'PBE Encrypt, .*'), |
| 332 | re.compile(r'PBE Decrypt, .*'), |
| 333 | ], |
| 334 | # The en/decryption part of PKCS#5 is not supported so far. |
| 335 | # The rest of PKCS#5 (PBKDF2) works though. |
| 336 | 'test_suite_pkcs5': [ |
| 337 | re.compile(r'PBES2 Encrypt, .*'), |
| 338 | re.compile(r'PBES2 Decrypt .*'), |
| 339 | ], |
| 340 | # Encrypted keys are not supported so far. |
| 341 | # pylint: disable=line-too-long |
| 342 | 'test_suite_pkparse': [ |
| 343 | 'Key ASN1 (Encrypted key PKCS12, trailing garbage data)', |
| 344 | 'Key ASN1 (Encrypted key PKCS5, trailing garbage data)', |
| 345 | re.compile(r'Parse (RSA|EC) Key .*\(.* ([Ee]ncrypted|password).*\)'), |
| 346 | ], |
| 347 | # Encrypted keys are not supported so far. |
| 348 | 'ssl-opt': [ |
| 349 | 'TLS: password protected server key', |
| 350 | 'TLS: password protected client key', |
| 351 | 'TLS: password protected server key, two certificates', |
| 352 | ], |
| 353 | } |
| 354 | |
Gilles Peskine | 082eade | 2024-10-03 18:42:37 +0200 | [diff] [blame] | 355 | class DriverVSReference_ecp_light_only(outcome_analysis.DriverVSReference): |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 356 | REFERENCE = 'test_psa_crypto_config_reference_ecc_ecp_light_only' |
| 357 | DRIVER = 'test_psa_crypto_config_accel_ecc_ecp_light_only' |
| 358 | IGNORED_SUITES = [ |
| 359 | # Modules replaced by drivers |
| 360 | 'ecdsa', 'ecdh', 'ecjpake', |
Gilles Peskine | 77587ce | 2024-10-29 20:55:11 +0100 | [diff] [blame] | 361 | # Unit tests for the built-in implementation |
| 362 | 'psa_crypto_ecp', |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 363 | ] |
| 364 | IGNORED_TESTS = { |
| 365 | 'test_suite_config': [ |
| 366 | re.compile(r'.*\bMBEDTLS_(ECDH|ECDSA|ECJPAKE|ECP)_.*'), |
| 367 | ], |
| 368 | 'test_suite_platform': [ |
| 369 | # Incompatible with sanitizers (e.g. ASan). If the driver |
| 370 | # component uses a sanitizer but the reference component |
| 371 | # doesn't, we have a PASS vs SKIP mismatch. |
| 372 | 'Check mbedtls_calloc overallocation', |
| 373 | ], |
| 374 | # This test wants a legacy function that takes f_rng, p_rng |
| 375 | # arguments, and uses legacy ECDSA for that. The test is |
| 376 | # really about the wrapper around the PSA RNG, not ECDSA. |
| 377 | 'test_suite_random': [ |
| 378 | 'PSA classic wrapper: ECDSA signature (SECP256R1)', |
| 379 | ], |
| 380 | # In the accelerated test ECP_C is not set (only ECP_LIGHT is) |
| 381 | # so we must ignore disparities in the tests for which ECP_C |
| 382 | # is required. |
| 383 | 'test_suite_ecp': [ |
| 384 | re.compile(r'ECP check public-private .*'), |
| 385 | re.compile(r'ECP calculate public: .*'), |
| 386 | re.compile(r'ECP gen keypair .*'), |
| 387 | re.compile(r'ECP point muladd .*'), |
| 388 | re.compile(r'ECP point multiplication .*'), |
| 389 | re.compile(r'ECP test vectors .*'), |
| 390 | ], |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 391 | } |
| 392 | |
Gilles Peskine | 082eade | 2024-10-03 18:42:37 +0200 | [diff] [blame] | 393 | class DriverVSReference_no_ecp_at_all(outcome_analysis.DriverVSReference): |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 394 | REFERENCE = 'test_psa_crypto_config_reference_ecc_no_ecp_at_all' |
| 395 | DRIVER = 'test_psa_crypto_config_accel_ecc_no_ecp_at_all' |
| 396 | IGNORED_SUITES = [ |
| 397 | # Modules replaced by drivers |
| 398 | 'ecp', 'ecdsa', 'ecdh', 'ecjpake', |
Gilles Peskine | 77587ce | 2024-10-29 20:55:11 +0100 | [diff] [blame] | 399 | # Unit tests for the built-in implementation |
| 400 | 'psa_crypto_ecp', |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 401 | ] |
| 402 | IGNORED_TESTS = { |
| 403 | 'test_suite_config': [ |
| 404 | re.compile(r'.*\bMBEDTLS_(ECDH|ECDSA|ECJPAKE|ECP)_.*'), |
| 405 | re.compile(r'.*\bMBEDTLS_PK_PARSE_EC_COMPRESSED\b.*'), |
| 406 | ], |
| 407 | 'test_suite_platform': [ |
| 408 | # Incompatible with sanitizers (e.g. ASan). If the driver |
| 409 | # component uses a sanitizer but the reference component |
| 410 | # doesn't, we have a PASS vs SKIP mismatch. |
| 411 | 'Check mbedtls_calloc overallocation', |
| 412 | ], |
| 413 | # See ecp_light_only |
| 414 | 'test_suite_random': [ |
| 415 | 'PSA classic wrapper: ECDSA signature (SECP256R1)', |
| 416 | ], |
| 417 | 'test_suite_pkparse': [ |
| 418 | # When PK_PARSE_C and ECP_C are defined then PK_PARSE_EC_COMPRESSED |
| 419 | # is automatically enabled in build_info.h (backward compatibility) |
| 420 | # even if it is disabled in config_psa_crypto_no_ecp_at_all(). As a |
| 421 | # consequence compressed points are supported in the reference |
| 422 | # component but not in the accelerated one, so they should be skipped |
| 423 | # while checking driver's coverage. |
| 424 | re.compile(r'Parse EC Key .*compressed\)'), |
| 425 | re.compile(r'Parse Public EC Key .*compressed\)'), |
| 426 | ], |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 427 | } |
| 428 | |
Gilles Peskine | 082eade | 2024-10-03 18:42:37 +0200 | [diff] [blame] | 429 | class DriverVSReference_ecc_no_bignum(outcome_analysis.DriverVSReference): |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 430 | REFERENCE = 'test_psa_crypto_config_reference_ecc_no_bignum' |
| 431 | DRIVER = 'test_psa_crypto_config_accel_ecc_no_bignum' |
| 432 | IGNORED_SUITES = [ |
| 433 | # Modules replaced by drivers |
| 434 | 'ecp', 'ecdsa', 'ecdh', 'ecjpake', |
| 435 | 'bignum_core', 'bignum_random', 'bignum_mod', 'bignum_mod_raw', |
| 436 | 'bignum.generated', 'bignum.misc', |
Gilles Peskine | 77587ce | 2024-10-29 20:55:11 +0100 | [diff] [blame] | 437 | # Unit tests for the built-in implementation |
| 438 | 'psa_crypto_ecp', |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 439 | ] |
| 440 | IGNORED_TESTS = { |
| 441 | 'test_suite_config': [ |
| 442 | re.compile(r'.*\bMBEDTLS_BIGNUM_C\b.*'), |
| 443 | re.compile(r'.*\bMBEDTLS_(ECDH|ECDSA|ECJPAKE|ECP)_.*'), |
| 444 | re.compile(r'.*\bMBEDTLS_PK_PARSE_EC_COMPRESSED\b.*'), |
| 445 | ], |
| 446 | 'test_suite_platform': [ |
| 447 | # Incompatible with sanitizers (e.g. ASan). If the driver |
| 448 | # component uses a sanitizer but the reference component |
| 449 | # doesn't, we have a PASS vs SKIP mismatch. |
| 450 | 'Check mbedtls_calloc overallocation', |
| 451 | ], |
| 452 | # See ecp_light_only |
| 453 | 'test_suite_random': [ |
| 454 | 'PSA classic wrapper: ECDSA signature (SECP256R1)', |
| 455 | ], |
| 456 | # See no_ecp_at_all |
| 457 | 'test_suite_pkparse': [ |
| 458 | re.compile(r'Parse EC Key .*compressed\)'), |
| 459 | re.compile(r'Parse Public EC Key .*compressed\)'), |
| 460 | ], |
| 461 | 'test_suite_asn1parse': [ |
| 462 | 'INTEGER too large for mpi', |
| 463 | ], |
| 464 | 'test_suite_asn1write': [ |
| 465 | re.compile(r'ASN.1 Write mpi.*'), |
| 466 | ], |
| 467 | 'test_suite_debug': [ |
| 468 | re.compile(r'Debug print mbedtls_mpi.*'), |
| 469 | ], |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 470 | } |
| 471 | |
Gilles Peskine | 082eade | 2024-10-03 18:42:37 +0200 | [diff] [blame] | 472 | class DriverVSReference_ecc_ffdh_no_bignum(outcome_analysis.DriverVSReference): |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 473 | REFERENCE = 'test_psa_crypto_config_reference_ecc_ffdh_no_bignum' |
| 474 | DRIVER = 'test_psa_crypto_config_accel_ecc_ffdh_no_bignum' |
| 475 | IGNORED_SUITES = [ |
| 476 | # Modules replaced by drivers |
Valerio Setti | 461899e | 2025-02-12 13:34:25 +0100 | [diff] [blame] | 477 | 'ecp', 'ecdsa', 'ecdh', 'ecjpake', |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 478 | 'bignum_core', 'bignum_random', 'bignum_mod', 'bignum_mod_raw', |
| 479 | 'bignum.generated', 'bignum.misc', |
Gilles Peskine | 77587ce | 2024-10-29 20:55:11 +0100 | [diff] [blame] | 480 | # Unit tests for the built-in implementation |
| 481 | 'psa_crypto_ecp', |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 482 | ] |
| 483 | IGNORED_TESTS = { |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 484 | 'test_suite_config': [ |
| 485 | re.compile(r'.*\bMBEDTLS_BIGNUM_C\b.*'), |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 486 | re.compile(r'.*\bMBEDTLS_(ECDH|ECDSA|ECJPAKE|ECP)_.*'), |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 487 | re.compile(r'.*\bMBEDTLS_PK_PARSE_EC_COMPRESSED\b.*'), |
| 488 | ], |
| 489 | 'test_suite_platform': [ |
| 490 | # Incompatible with sanitizers (e.g. ASan). If the driver |
| 491 | # component uses a sanitizer but the reference component |
| 492 | # doesn't, we have a PASS vs SKIP mismatch. |
| 493 | 'Check mbedtls_calloc overallocation', |
| 494 | ], |
| 495 | # See ecp_light_only |
| 496 | 'test_suite_random': [ |
| 497 | 'PSA classic wrapper: ECDSA signature (SECP256R1)', |
| 498 | ], |
| 499 | # See no_ecp_at_all |
| 500 | 'test_suite_pkparse': [ |
| 501 | re.compile(r'Parse EC Key .*compressed\)'), |
| 502 | re.compile(r'Parse Public EC Key .*compressed\)'), |
| 503 | ], |
| 504 | 'test_suite_asn1parse': [ |
| 505 | 'INTEGER too large for mpi', |
| 506 | ], |
| 507 | 'test_suite_asn1write': [ |
| 508 | re.compile(r'ASN.1 Write mpi.*'), |
| 509 | ], |
| 510 | 'test_suite_debug': [ |
| 511 | re.compile(r'Debug print mbedtls_mpi.*'), |
| 512 | ], |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 513 | } |
| 514 | |
Gilles Peskine | 082eade | 2024-10-03 18:42:37 +0200 | [diff] [blame] | 515 | class DriverVSReference_ffdh_alg(outcome_analysis.DriverVSReference): |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 516 | REFERENCE = 'test_psa_crypto_config_reference_ffdh' |
| 517 | DRIVER = 'test_psa_crypto_config_accel_ffdh' |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 518 | IGNORED_TESTS = { |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 519 | 'test_suite_platform': [ |
| 520 | # Incompatible with sanitizers (e.g. ASan). If the driver |
| 521 | # component uses a sanitizer but the reference component |
| 522 | # doesn't, we have a PASS vs SKIP mismatch. |
| 523 | 'Check mbedtls_calloc overallocation', |
| 524 | ], |
| 525 | } |
| 526 | |
Gilles Peskine | 082eade | 2024-10-03 18:42:37 +0200 | [diff] [blame] | 527 | class DriverVSReference_tfm_config(outcome_analysis.DriverVSReference): |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 528 | REFERENCE = 'test_tfm_config_no_p256m' |
| 529 | DRIVER = 'test_tfm_config_p256m_driver_accel_ec' |
| 530 | IGNORED_SUITES = [ |
| 531 | # Modules replaced by drivers |
| 532 | 'asn1parse', 'asn1write', |
| 533 | 'ecp', 'ecdsa', 'ecdh', 'ecjpake', |
| 534 | 'bignum_core', 'bignum_random', 'bignum_mod', 'bignum_mod_raw', |
| 535 | 'bignum.generated', 'bignum.misc', |
Gilles Peskine | 77587ce | 2024-10-29 20:55:11 +0100 | [diff] [blame] | 536 | # Unit tests for the built-in implementation |
| 537 | 'psa_crypto_ecp', |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 538 | ] |
| 539 | IGNORED_TESTS = { |
| 540 | 'test_suite_config': [ |
| 541 | re.compile(r'.*\bMBEDTLS_BIGNUM_C\b.*'), |
| 542 | re.compile(r'.*\bMBEDTLS_(ASN1\w+)_C\b.*'), |
| 543 | re.compile(r'.*\bMBEDTLS_(ECDH|ECDSA|ECP)_.*'), |
| 544 | re.compile(r'.*\bMBEDTLS_PSA_P256M_DRIVER_ENABLED\b.*') |
| 545 | ], |
| 546 | 'test_suite_config.crypto_combinations': [ |
| 547 | 'Config: ECC: Weierstrass curves only', |
| 548 | ], |
| 549 | 'test_suite_platform': [ |
| 550 | # Incompatible with sanitizers (e.g. ASan). If the driver |
| 551 | # component uses a sanitizer but the reference component |
| 552 | # doesn't, we have a PASS vs SKIP mismatch. |
| 553 | 'Check mbedtls_calloc overallocation', |
| 554 | ], |
| 555 | # See ecp_light_only |
| 556 | 'test_suite_random': [ |
| 557 | 'PSA classic wrapper: ECDSA signature (SECP256R1)', |
| 558 | ], |
| 559 | } |
| 560 | |
Gilles Peskine | 082eade | 2024-10-03 18:42:37 +0200 | [diff] [blame] | 561 | class DriverVSReference_rsa(outcome_analysis.DriverVSReference): |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 562 | REFERENCE = 'test_psa_crypto_config_reference_rsa_crypto' |
| 563 | DRIVER = 'test_psa_crypto_config_accel_rsa_crypto' |
| 564 | IGNORED_SUITES = [ |
| 565 | # Modules replaced by drivers. |
| 566 | 'rsa', 'pkcs1_v15', 'pkcs1_v21', |
| 567 | # We temporarily don't care about PK stuff. |
| 568 | 'pk', 'pkwrite', 'pkparse' |
| 569 | ] |
| 570 | IGNORED_TESTS = { |
| 571 | 'test_suite_config': [ |
| 572 | re.compile(r'.*\bMBEDTLS_(PKCS1|RSA)_.*'), |
| 573 | re.compile(r'.*\bMBEDTLS_GENPRIME\b.*') |
| 574 | ], |
| 575 | 'test_suite_platform': [ |
| 576 | # Incompatible with sanitizers (e.g. ASan). If the driver |
| 577 | # component uses a sanitizer but the reference component |
| 578 | # doesn't, we have a PASS vs SKIP mismatch. |
| 579 | 'Check mbedtls_calloc overallocation', |
| 580 | ], |
| 581 | # Following tests depend on RSA_C but are not about |
| 582 | # them really, just need to know some error code is there. |
| 583 | 'test_suite_error': [ |
| 584 | 'Low and high error', |
| 585 | 'Single high error' |
| 586 | ], |
| 587 | # Constant time operations only used for PKCS1_V15 |
| 588 | 'test_suite_constant_time': [ |
| 589 | re.compile(r'mbedtls_ct_zeroize_if .*'), |
| 590 | re.compile(r'mbedtls_ct_memmove_left .*') |
| 591 | ], |
| 592 | 'test_suite_psa_crypto': [ |
| 593 | # We don't support generate_key_custom entry points |
| 594 | # in drivers yet. |
| 595 | re.compile(r'PSA generate key custom: RSA, e=.*'), |
| 596 | re.compile(r'PSA generate key ext: RSA, e=.*'), |
| 597 | ], |
| 598 | } |
| 599 | |
Gilles Peskine | 082eade | 2024-10-03 18:42:37 +0200 | [diff] [blame] | 600 | class DriverVSReference_block_cipher_dispatch(outcome_analysis.DriverVSReference): |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 601 | REFERENCE = 'test_full_block_cipher_legacy_dispatch' |
| 602 | DRIVER = 'test_full_block_cipher_psa_dispatch' |
| 603 | IGNORED_SUITES = [ |
| 604 | # Skipped in the accelerated component |
| 605 | 'aes', 'aria', 'camellia', |
| 606 | # These require AES_C, ARIA_C or CAMELLIA_C to be enabled in |
| 607 | # order for the cipher module (actually cipher_wrapper) to work |
| 608 | # properly. However these symbols are disabled in the accelerated |
| 609 | # component so we ignore them. |
| 610 | 'cipher.ccm', 'cipher.gcm', 'cipher.aes', 'cipher.aria', |
| 611 | 'cipher.camellia', |
| 612 | ] |
| 613 | IGNORED_TESTS = { |
| 614 | 'test_suite_config': [ |
| 615 | re.compile(r'.*\bMBEDTLS_(AES|ARIA|CAMELLIA)_.*'), |
| 616 | re.compile(r'.*\bMBEDTLS_AES(\w+)_C\b.*'), |
| 617 | ], |
| 618 | 'test_suite_cmac': [ |
| 619 | # Following tests require AES_C/ARIA_C/CAMELLIA_C to be enabled, |
| 620 | # but these are not available in the accelerated component. |
| 621 | 'CMAC null arguments', |
| 622 | re.compile('CMAC.* (AES|ARIA|Camellia).*'), |
| 623 | ], |
| 624 | 'test_suite_cipher.padding': [ |
| 625 | # Following tests require AES_C/CAMELLIA_C to be enabled, |
| 626 | # but these are not available in the accelerated component. |
| 627 | re.compile('Set( non-existent)? padding with (AES|CAMELLIA).*'), |
| 628 | ], |
| 629 | 'test_suite_pkcs5': [ |
| 630 | # The AES part of PKCS#5 PBES2 is not yet supported. |
| 631 | # The rest of PKCS#5 (PBKDF2) works, though. |
| 632 | re.compile(r'PBES2 .* AES-.*') |
| 633 | ], |
| 634 | 'test_suite_pkparse': [ |
| 635 | # PEM (called by pkparse) requires AES_C in order to decrypt |
| 636 | # the key, but this is not available in the accelerated |
| 637 | # component. |
| 638 | re.compile('Parse RSA Key.*(password|AES-).*'), |
| 639 | ], |
| 640 | 'test_suite_pem': [ |
| 641 | # Following tests require AES_C, but this is diabled in the |
| 642 | # accelerated component. |
| 643 | re.compile('PEM read .*AES.*'), |
| 644 | 'PEM read (unknown encryption algorithm)', |
| 645 | ], |
| 646 | 'test_suite_error': [ |
| 647 | # Following tests depend on AES_C but are not about them |
| 648 | # really, just need to know some error code is there. |
| 649 | 'Single low error', |
| 650 | 'Low and high error', |
| 651 | ], |
| 652 | 'test_suite_version': [ |
| 653 | # Similar to test_suite_error above. |
| 654 | 'Check for MBEDTLS_AES_C when already present', |
| 655 | ], |
| 656 | 'test_suite_platform': [ |
| 657 | # Incompatible with sanitizers (e.g. ASan). If the driver |
| 658 | # component uses a sanitizer but the reference component |
| 659 | # doesn't, we have a PASS vs SKIP mismatch. |
| 660 | 'Check mbedtls_calloc overallocation', |
| 661 | ], |
| 662 | } |
| 663 | |
| 664 | #pylint: enable=invalid-name,missing-class-docstring |
| 665 | |
| 666 | |
Przemek Stekiel | 6856f4c | 2022-11-09 10:50:29 +0100 | [diff] [blame] | 667 | # List of tasks with a function that can handle this task and additional arguments if required |
Valerio Setti | dfd7ca6 | 2023-10-09 16:30:11 +0200 | [diff] [blame] | 668 | KNOWN_TASKS = { |
Gilles Peskine | f646dbf | 2024-09-16 19:15:29 +0200 | [diff] [blame] | 669 | 'analyze_coverage': CoverageTask, |
Gilles Peskine | 9df375b | 2024-09-16 20:14:26 +0200 | [diff] [blame] | 670 | 'analyze_driver_vs_reference_hash': DriverVSReference_hash, |
| 671 | 'analyze_driver_vs_reference_hmac': DriverVSReference_hmac, |
| 672 | 'analyze_driver_vs_reference_cipher_aead_cmac': DriverVSReference_cipher_aead_cmac, |
| 673 | 'analyze_driver_vs_reference_ecp_light_only': DriverVSReference_ecp_light_only, |
| 674 | 'analyze_driver_vs_reference_no_ecp_at_all': DriverVSReference_no_ecp_at_all, |
| 675 | 'analyze_driver_vs_reference_ecc_no_bignum': DriverVSReference_ecc_no_bignum, |
| 676 | 'analyze_driver_vs_reference_ecc_ffdh_no_bignum': DriverVSReference_ecc_ffdh_no_bignum, |
| 677 | 'analyze_driver_vs_reference_ffdh_alg': DriverVSReference_ffdh_alg, |
| 678 | 'analyze_driver_vs_reference_tfm_config': DriverVSReference_tfm_config, |
| 679 | 'analyze_driver_vs_reference_rsa': DriverVSReference_rsa, |
| 680 | 'analyze_block_cipher_dispatch': DriverVSReference_block_cipher_dispatch, |
Przemek Stekiel | 4d13c83 | 2022-10-26 16:11:26 +0200 | [diff] [blame] | 681 | } |
Przemek Stekiel | 4d13c83 | 2022-10-26 16:11:26 +0200 | [diff] [blame] | 682 | |
Gilles Peskine | 15c2cbf | 2020-06-25 18:36:28 +0200 | [diff] [blame] | 683 | if __name__ == '__main__': |
Gilles Peskine | 082eade | 2024-10-03 18:42:37 +0200 | [diff] [blame] | 684 | outcome_analysis.main(KNOWN_TASKS) |