blob: fb7055898f09ff573f1cba6f548857fd187d4ec0 [file] [log] [blame]
Gilles Peskineb4063892019-07-27 21:36:44 +02001#!/usr/bin/env python3
2
Gabor Mezei9f2b8172024-08-06 12:02:18 +02003"""Mbed TLS and PSA configuration file manipulation library and tool
Gilles Peskineb4063892019-07-27 21:36:44 +02004
Fredrik Hessecc207bc2021-09-28 21:06:08 +02005Basic usage, to read the Mbed TLS configuration:
Gabor Mezei9f2b8172024-08-06 12:02:18 +02006 config = CombinedConfigFile()
Gilles Peskineb4063892019-07-27 21:36:44 +02007 if 'MBEDTLS_RSA_C' in config: print('RSA is enabled')
8"""
9
Bence Szépkúti1e148272020-08-07 13:07:28 +020010## Copyright The Mbed TLS Contributors
Dave Rodgman16799db2023-11-02 19:47:20 +000011## SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Gilles Peskineb4063892019-07-27 21:36:44 +020012##
Gilles Peskineb4063892019-07-27 21:36:44 +020013
Gilles Peskine208e4ec2019-07-29 23:43:20 +020014import os
Gilles Peskineb4063892019-07-27 21:36:44 +020015import re
Gabor Mezei24d7cc72024-08-06 15:11:24 +020016import sys
Gilles Peskineb4063892019-07-27 21:36:44 +020017
Gabor Mezei0e9e4cb2024-09-10 16:16:35 +020018import framework_scripts_path # pylint: disable=unused-import
19from mbedtls_framework import config_common
Gabor Mezeid53080d2024-08-27 14:06:54 +020020
Gabor Mezeia12ed6b2024-09-09 17:20:49 +020021
Gilles Peskine53d41ae2019-07-27 23:31:53 +020022def is_full_section(section):
Gabor Mezeide6e1922024-06-28 17:10:50 +020023 """Is this section affected by "config.py full" and friends?
24
25 In a config file where the sections are not used the whole config file
26 is an empty section (with value None) and the whole file is affected.
27 """
Gabor Mezei3678dee2024-06-04 19:58:43 +020028 return section is None or section.endswith('support') or section.endswith('modules')
Gilles Peskine53d41ae2019-07-27 23:31:53 +020029
30def realfull_adapter(_name, active, section):
Gilles Peskineba4162a2022-04-11 17:04:38 +020031 """Activate all symbols found in the global and boolean feature sections.
32
33 This is intended for building the documentation, including the
34 documentation of settings that are activated by defining an optional
35 preprocessor macro.
36
37 Do not activate definitions in the section containing symbols that are
38 supposed to be defined and documented in their own module.
39 """
40 if section == 'Module configuration options':
Gilles Peskine53d41ae2019-07-27 23:31:53 +020041 return active
Gilles Peskineb4063892019-07-27 21:36:44 +020042 return True
43
Gabor Mezei542fd382024-06-10 14:07:42 +020044PSA_UNSUPPORTED_FEATURE = frozenset([
Gabor Mezei3678dee2024-06-04 19:58:43 +020045 'PSA_WANT_ALG_CBC_MAC',
46 'PSA_WANT_ALG_XTS',
47 'PSA_WANT_KEY_TYPE_RSA_KEY_PAIR_DERIVE',
48 'PSA_WANT_KEY_TYPE_DH_KEY_PAIR_DERIVE'
49])
50
Gabor Mezei542fd382024-06-10 14:07:42 +020051PSA_DEPRECATED_FEATURE = frozenset([
Gabor Mezei3678dee2024-06-04 19:58:43 +020052 'PSA_WANT_KEY_TYPE_ECC_KEY_PAIR',
53 'PSA_WANT_KEY_TYPE_RSA_KEY_PAIR'
54])
55
Gabor Mezei542fd382024-06-10 14:07:42 +020056PSA_UNSTABLE_FEATURE = frozenset([
Gabor Mezei3678dee2024-06-04 19:58:43 +020057 'PSA_WANT_ECC_SECP_K1_224'
58])
59
Gabor Mezei9b0f9e72024-06-26 18:08:17 +020060EXCLUDE_FROM_CRYPTO = PSA_UNSUPPORTED_FEATURE | \
61 PSA_DEPRECATED_FEATURE | \
62 PSA_UNSTABLE_FEATURE
Gabor Mezei542fd382024-06-10 14:07:42 +020063
Gilles Peskinecfffc282020-04-12 13:55:45 +020064# The goal of the full configuration is to have everything that can be tested
65# together. This includes deprecated or insecure options. It excludes:
66# * Options that require additional build dependencies or unusual hardware.
67# * Options that make testing less effective.
Gilles Peskinec9d04332020-04-16 20:50:17 +020068# * Options that are incompatible with other options, or more generally that
69# interact with other parts of the code in such a way that a bulk enabling
70# is not a good way to test them.
Gilles Peskinecfffc282020-04-12 13:55:45 +020071# * Options that remove features.
Gilles Peskinebbaa2b72020-04-12 13:33:57 +020072EXCLUDE_FROM_FULL = frozenset([
Gilles Peskinecfffc282020-04-12 13:55:45 +020073 #pylint: disable=line-too-long
Yanray Wanga8704672023-04-20 17:16:48 +080074 'MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH', # interacts with CTR_DRBG_128_BIT_KEY
Gilles Peskinea8861e02023-09-05 20:20:51 +020075 'MBEDTLS_AES_USE_HARDWARE_ONLY', # hardware dependency
Yanray Wang42be1ba2023-11-23 14:28:47 +080076 'MBEDTLS_BLOCK_CIPHER_NO_DECRYPT', # incompatible with ECB in PSA, CBC/XTS/NIST_KW/DES
Gilles Peskinec9d04332020-04-16 20:50:17 +020077 'MBEDTLS_CTR_DRBG_USE_128_BIT_KEY', # interacts with ENTROPY_FORCE_SHA256
Gilles Peskinecfffc282020-04-12 13:55:45 +020078 'MBEDTLS_DEPRECATED_REMOVED', # conflicts with deprecated options
Gilles Peskine90581ee2020-04-12 14:02:47 +020079 'MBEDTLS_DEPRECATED_WARNING', # conflicts with deprecated options
Gilles Peskinec9d04332020-04-16 20:50:17 +020080 'MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED', # influences the use of ECDH in TLS
Janos Follath5b7c38f2023-08-01 08:51:12 +010081 'MBEDTLS_ECP_WITH_MPI_UINT', # disables the default ECP and is experimental
Gilles Peskinec9d04332020-04-16 20:50:17 +020082 'MBEDTLS_ENTROPY_FORCE_SHA256', # interacts with CTR_DRBG_128_BIT_KEY
Gilles Peskinecfffc282020-04-12 13:55:45 +020083 'MBEDTLS_HAVE_SSE2', # hardware dependency
84 'MBEDTLS_MEMORY_BACKTRACE', # depends on MEMORY_BUFFER_ALLOC_C
85 'MBEDTLS_MEMORY_BUFFER_ALLOC_C', # makes sanitizers (e.g. ASan) less effective
86 'MBEDTLS_MEMORY_DEBUG', # depends on MEMORY_BUFFER_ALLOC_C
Gilles Peskinec9d04332020-04-16 20:50:17 +020087 'MBEDTLS_NO_64BIT_MULTIPLICATION', # influences anything that uses bignum
Gilles Peskinecfffc282020-04-12 13:55:45 +020088 'MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES', # removes a feature
89 'MBEDTLS_NO_PLATFORM_ENTROPY', # removes a feature
Gilles Peskinec9d04332020-04-16 20:50:17 +020090 'MBEDTLS_NO_UDBL_DIVISION', # influences anything that uses bignum
Gilles Peskineefaee9a2023-09-20 20:49:47 +020091 'MBEDTLS_PSA_P256M_DRIVER_ENABLED', # influences SECP256R1 KeyGen/ECDH/ECDSA
Gilles Peskinecfffc282020-04-12 13:55:45 +020092 'MBEDTLS_PLATFORM_NO_STD_FUNCTIONS', # removes a feature
David Horstmann6f8c95b2024-03-14 14:52:45 +000093 'MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS', # removes a feature
Gilles Peskinef08b3f82020-11-13 17:36:48 +010094 'MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG', # behavior change + build dependency
Ronald Cronc3623db2020-10-29 10:51:32 +010095 'MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER', # incompatible with USE_PSA_CRYPTO
Gilles Peskinecfffc282020-04-12 13:55:45 +020096 'MBEDTLS_PSA_CRYPTO_SPM', # platform dependency (PSA SPM)
Gilles Peskinea08def92023-04-28 21:01:49 +020097 'MBEDTLS_PSA_INJECT_ENTROPY', # conflicts with platform entropy sources
Gilles Peskinec9d04332020-04-16 20:50:17 +020098 'MBEDTLS_RSA_NO_CRT', # influences the use of RSA in X.509 and TLS
Tom Cosgrove87fbfb52022-03-15 10:51:52 +000099 'MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY', # interacts with *_USE_A64_CRYPTO_IF_PRESENT
Dave Rodgman9be3cf02023-10-11 14:47:55 +0100100 'MBEDTLS_SHA256_USE_ARMV8_A_CRYPTO_ONLY', # interacts with *_USE_ARMV8_A_CRYPTO_IF_PRESENT
Tom Cosgrove87fbfb52022-03-15 10:51:52 +0000101 'MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY', # interacts with *_USE_A64_CRYPTO_IF_PRESENT
Dave Rodgman7cb635a2023-10-12 16:14:51 +0100102 'MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT', # setting *_USE_ARMV8_A_CRYPTO is sufficient
Manuel Pégourié-Gonnard6240def2020-07-10 09:35:54 +0200103 'MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN', # build dependency (clang+memsan)
Manuel Pégourié-Gonnard73afa372020-08-19 10:27:38 +0200104 'MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND', # build dependency (valgrind headers)
Hanno Beckere1113562019-06-12 13:59:14 +0100105 'MBEDTLS_X509_REMOVE_INFO', # removes a feature
Gabor Mezei542fd382024-06-10 14:07:42 +0200106 *PSA_UNSUPPORTED_FEATURE,
107 *PSA_DEPRECATED_FEATURE,
108 *PSA_UNSTABLE_FEATURE
Gilles Peskinebbaa2b72020-04-12 13:33:57 +0200109])
110
Gilles Peskine32e889d2020-04-12 23:43:28 +0200111def is_seamless_alt(name):
Gilles Peskinec34faba2020-04-20 15:44:14 +0200112 """Whether the xxx_ALT symbol should be included in the full configuration.
Gilles Peskine32e889d2020-04-12 23:43:28 +0200113
Gilles Peskinec34faba2020-04-20 15:44:14 +0200114 Include alternative implementations of platform functions, which are
Gilles Peskine32e889d2020-04-12 23:43:28 +0200115 configurable function pointers that default to the built-in function.
116 This way we test that the function pointers exist and build correctly
117 without changing the behavior, and tests can verify that the function
118 pointers are used by modifying those pointers.
119
120 Exclude alternative implementations of library functions since they require
121 an implementation of the relevant functions and an xxx_alt.h header.
122 """
Gilles Peskinea8861e02023-09-05 20:20:51 +0200123 if name in (
124 'MBEDTLS_PLATFORM_GMTIME_R_ALT',
125 'MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT',
126 'MBEDTLS_PLATFORM_MS_TIME_ALT',
127 'MBEDTLS_PLATFORM_ZEROIZE_ALT',
128 ):
Gilles Peskinec34faba2020-04-20 15:44:14 +0200129 # Similar to non-platform xxx_ALT, requires platform_alt.h
130 return False
Gilles Peskine32e889d2020-04-12 23:43:28 +0200131 return name.startswith('MBEDTLS_PLATFORM_')
132
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200133def include_in_full(name):
134 """Rules for symbols in the "full" configuration."""
Gabor Mezei542fd382024-06-10 14:07:42 +0200135 if name in EXCLUDE_FROM_FULL:
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200136 return False
137 if name.endswith('_ALT'):
Gilles Peskine32e889d2020-04-12 23:43:28 +0200138 return is_seamless_alt(name)
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200139 return True
140
141def full_adapter(name, active, section):
142 """Config adapter for "full"."""
143 if not is_full_section(section):
144 return active
145 return include_in_full(name)
146
Gilles Peskinecfffc282020-04-12 13:55:45 +0200147# The baremetal configuration excludes options that require a library or
148# operating system feature that is typically not present on bare metal
149# systems. Features that are excluded from "full" won't be in "baremetal"
150# either (unless explicitly turned on in baremetal_adapter) so they don't
151# need to be repeated here.
Gilles Peskinebbaa2b72020-04-12 13:33:57 +0200152EXCLUDE_FROM_BAREMETAL = frozenset([
Gilles Peskinecfffc282020-04-12 13:55:45 +0200153 #pylint: disable=line-too-long
Gilles Peskine98f8f952020-04-20 15:38:39 +0200154 'MBEDTLS_ENTROPY_NV_SEED', # requires a filesystem and FS_IO or alternate NV seed hooks
Gilles Peskinecfffc282020-04-12 13:55:45 +0200155 'MBEDTLS_FS_IO', # requires a filesystem
Gilles Peskinecfffc282020-04-12 13:55:45 +0200156 'MBEDTLS_HAVE_TIME', # requires a clock
157 'MBEDTLS_HAVE_TIME_DATE', # requires a clock
158 'MBEDTLS_NET_C', # requires POSIX-like networking
159 'MBEDTLS_PLATFORM_FPRINTF_ALT', # requires FILE* from stdio.h
Gilles Peskine98f8f952020-04-20 15:38:39 +0200160 'MBEDTLS_PLATFORM_NV_SEED_ALT', # requires a filesystem and ENTROPY_NV_SEED
161 'MBEDTLS_PLATFORM_TIME_ALT', # requires a clock and HAVE_TIME
162 'MBEDTLS_PSA_CRYPTO_SE_C', # requires a filesystem and PSA_CRYPTO_STORAGE_C
Gilles Peskinecfffc282020-04-12 13:55:45 +0200163 'MBEDTLS_PSA_CRYPTO_STORAGE_C', # requires a filesystem
164 'MBEDTLS_PSA_ITS_FILE_C', # requires a filesystem
165 'MBEDTLS_THREADING_C', # requires a threading interface
166 'MBEDTLS_THREADING_PTHREAD', # requires pthread
167 'MBEDTLS_TIMING_C', # requires a clock
Dave Rodgman9be3cf02023-10-11 14:47:55 +0100168 'MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT', # requires an OS for runtime-detection
Dave Rodgman5b89c552023-10-10 14:59:02 +0100169 'MBEDTLS_SHA256_USE_ARMV8_A_CRYPTO_IF_PRESENT', # requires an OS for runtime-detection
Dave Rodgmanbe7915a2023-10-11 10:46:38 +0100170 'MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT', # requires an OS for runtime-detection
Gilles Peskinebbaa2b72020-04-12 13:33:57 +0200171])
172
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200173def keep_in_baremetal(name):
174 """Rules for symbols in the "baremetal" configuration."""
Gilles Peskinebbaa2b72020-04-12 13:33:57 +0200175 if name in EXCLUDE_FROM_BAREMETAL:
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200176 return False
177 return True
178
179def baremetal_adapter(name, active, section):
180 """Config adapter for "baremetal"."""
181 if not is_full_section(section):
182 return active
183 if name == 'MBEDTLS_NO_PLATFORM_ENTROPY':
Gilles Peskinecfffc282020-04-12 13:55:45 +0200184 # No OS-provided entropy source
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200185 return True
186 return include_in_full(name) and keep_in_baremetal(name)
187
Gilles Peskine120f29d2021-09-01 19:51:19 +0200188# This set contains options that are mostly for debugging or test purposes,
189# and therefore should be excluded when doing code size measurements.
190# Options that are their own module (such as MBEDTLS_ERROR_C) are not listed
191# and therefore will be included when doing code size measurements.
192EXCLUDE_FOR_SIZE = frozenset([
193 'MBEDTLS_DEBUG_C', # large code size increase in TLS
194 'MBEDTLS_SELF_TEST', # increases the size of many modules
195 'MBEDTLS_TEST_HOOKS', # only useful with the hosted test framework, increases code size
196])
197
198def baremetal_size_adapter(name, active, section):
199 if name in EXCLUDE_FOR_SIZE:
200 return False
201 return baremetal_adapter(name, active, section)
202
Gilles Peskine31987c62020-01-31 14:23:30 +0100203def include_in_crypto(name):
204 """Rules for symbols in a crypto configuration."""
205 if name.startswith('MBEDTLS_X509_') or \
206 name.startswith('MBEDTLS_SSL_') or \
207 name.startswith('MBEDTLS_KEY_EXCHANGE_'):
208 return False
209 if name in [
Gilles Peskinecfffc282020-04-12 13:55:45 +0200210 'MBEDTLS_DEBUG_C', # part of libmbedtls
211 'MBEDTLS_NET_C', # part of libmbedtls
Nayna Jainc9deb182020-11-16 19:03:12 +0000212 'MBEDTLS_PKCS7_C', # part of libmbedx509
Gilles Peskine31987c62020-01-31 14:23:30 +0100213 ]:
214 return False
Gabor Mezei542fd382024-06-10 14:07:42 +0200215 if name in EXCLUDE_FROM_CRYPTO:
216 return False
Gilles Peskine31987c62020-01-31 14:23:30 +0100217 return True
218
219def crypto_adapter(adapter):
220 """Modify an adapter to disable non-crypto symbols.
221
222 ``crypto_adapter(adapter)(name, active, section)`` is like
223 ``adapter(name, active, section)``, but unsets all X.509 and TLS symbols.
224 """
225 def continuation(name, active, section):
226 if not include_in_crypto(name):
227 return False
228 if adapter is None:
229 return active
230 return adapter(name, active, section)
231 return continuation
232
Gilles Peskineed5c21d2022-06-27 23:02:09 +0200233DEPRECATED = frozenset([
234 'MBEDTLS_PSA_CRYPTO_SE_C',
Gabor Mezei542fd382024-06-10 14:07:42 +0200235 *PSA_DEPRECATED_FEATURE
Gilles Peskineed5c21d2022-06-27 23:02:09 +0200236])
Gilles Peskine30de2e82020-04-20 21:39:22 +0200237def no_deprecated_adapter(adapter):
Gilles Peskinebe1d6092020-04-12 14:17:16 +0200238 """Modify an adapter to disable deprecated symbols.
239
Gilles Peskine30de2e82020-04-20 21:39:22 +0200240 ``no_deprecated_adapter(adapter)(name, active, section)`` is like
Gilles Peskinebe1d6092020-04-12 14:17:16 +0200241 ``adapter(name, active, section)``, but unsets all deprecated symbols
242 and sets ``MBEDTLS_DEPRECATED_REMOVED``.
243 """
244 def continuation(name, active, section):
245 if name == 'MBEDTLS_DEPRECATED_REMOVED':
246 return True
Gilles Peskineed5c21d2022-06-27 23:02:09 +0200247 if name in DEPRECATED:
248 return False
Gilles Peskinebe1d6092020-04-12 14:17:16 +0200249 if adapter is None:
250 return active
251 return adapter(name, active, section)
252 return continuation
253
Paul Elliottfb81f772023-10-18 17:44:59 +0100254def no_platform_adapter(adapter):
255 """Modify an adapter to disable platform symbols.
256
257 ``no_platform_adapter(adapter)(name, active, section)`` is like
258 ``adapter(name, active, section)``, but unsets all platform symbols other
259 ``than MBEDTLS_PLATFORM_C.
260 """
261 def continuation(name, active, section):
262 # Allow MBEDTLS_PLATFORM_C but remove all other platform symbols.
263 if name.startswith('MBEDTLS_PLATFORM_') and name != 'MBEDTLS_PLATFORM_C':
264 return False
265 if adapter is None:
266 return active
267 return adapter(name, active, section)
268 return continuation
269
Gabor Mezeia12ed6b2024-09-09 17:20:49 +0200270
Gabor Mezei0e9e4cb2024-09-10 16:16:35 +0200271class MbedTLSConfigFile(config_common.ConfigFile):
Gabor Mezei62a9bd02024-06-07 13:44:40 +0200272 """Representation of an MbedTLS configuration file."""
273
Gabor Mezei3678dee2024-06-04 19:58:43 +0200274 _path_in_tree = 'include/mbedtls/mbedtls_config.h'
275 default_path = [_path_in_tree,
276 os.path.join(os.path.dirname(__file__),
277 os.pardir,
278 _path_in_tree),
279 os.path.join(os.path.dirname(os.path.abspath(os.path.dirname(__file__))),
280 _path_in_tree)]
281
282 def __init__(self, filename=None):
Gabor Mezei93a6d1f2024-06-26 18:01:09 +0200283 super().__init__(self.default_path, 'Mbed TLS', filename)
Gabor Mezei3678dee2024-06-04 19:58:43 +0200284 self.current_section = 'header'
285
Gabor Mezeia12ed6b2024-09-09 17:20:49 +0200286
Gabor Mezei0e9e4cb2024-09-10 16:16:35 +0200287class CryptoConfigFile(config_common.ConfigFile):
Gabor Mezei4706fe72024-07-08 17:00:55 +0200288 """Representation of a Crypto configuration file."""
Gabor Mezei62a9bd02024-06-07 13:44:40 +0200289
Gabor Mezei3de65862024-07-08 16:14:10 +0200290 # Temporary, while Mbed TLS does not just rely on the TF-PSA-Crypto
291 # build system to build its crypto library. When it does, the
292 # condition can just be removed.
Gabor Mezei776ee902024-09-09 17:00:50 +0200293 _path_in_tree = ('include/psa/crypto_config.h'
294 if not os.path.isdir(os.path.join(os.path.dirname(__file__),
295 os.pardir,
296 'tf-psa-crypto')) else
297 'tf-psa-crypto/include/psa/crypto_config.h')
Gabor Mezei3678dee2024-06-04 19:58:43 +0200298 default_path = [_path_in_tree,
299 os.path.join(os.path.dirname(__file__),
300 os.pardir,
301 _path_in_tree),
302 os.path.join(os.path.dirname(os.path.abspath(os.path.dirname(__file__))),
303 _path_in_tree)]
304
305 def __init__(self, filename=None):
Gabor Mezei93a6d1f2024-06-26 18:01:09 +0200306 super().__init__(self.default_path, 'Crypto', filename)
Gabor Mezei3678dee2024-06-04 19:58:43 +0200307
Gabor Mezeia12ed6b2024-09-09 17:20:49 +0200308
Gabor Mezei0e9e4cb2024-09-10 16:16:35 +0200309class MbedTLSConfig(config_common.Config):
Gabor Mezei62a9bd02024-06-07 13:44:40 +0200310 """Representation of the Mbed TLS configuration.
Gabor Mezei3678dee2024-06-04 19:58:43 +0200311
312 See the documentation of the `Config` class for methods to query
313 and modify the configuration.
314 """
Gabor Mezei4706fe72024-07-08 17:00:55 +0200315
Gabor Mezeiee521b62024-06-07 13:50:41 +0200316 def __init__(self, filename=None):
Gabor Mezei3678dee2024-06-04 19:58:43 +0200317 """Read the Mbed TLS configuration file."""
Gabor Mezei4706fe72024-07-08 17:00:55 +0200318
Gabor Mezei3678dee2024-06-04 19:58:43 +0200319 super().__init__()
Gabor Mezeid53080d2024-08-27 14:06:54 +0200320 configfile = MbedTLSConfigFile(filename)
321 self.configfiles.append(configfile)
Gabor Mezei0e9e4cb2024-09-10 16:16:35 +0200322 self.settings.update({name: config_common.Setting(configfile, active, name, value, section)
Gabor Mezei92065ed2024-06-07 13:47:59 +0200323 for (active, name, value, section)
Gabor Mezeid53080d2024-08-27 14:06:54 +0200324 in configfile.parse_file()})
Gabor Mezei3678dee2024-06-04 19:58:43 +0200325
326 def set(self, name, value=None):
Gabor Mezei4706fe72024-07-08 17:00:55 +0200327 """Set name to the given value and make it active."""
328
Gabor Mezei3678dee2024-06-04 19:58:43 +0200329 if name not in self.settings:
Gabor Mezeid53080d2024-08-27 14:06:54 +0200330 self._get_configfile().templates.append((name, '', '#define ' + name + ' '))
Gabor Mezeiee521b62024-06-07 13:50:41 +0200331
Gabor Mezei3678dee2024-06-04 19:58:43 +0200332 super().set(name, value)
Gilles Peskineb4063892019-07-27 21:36:44 +0200333
Gabor Mezeia12ed6b2024-09-09 17:20:49 +0200334
Gabor Mezei0e9e4cb2024-09-10 16:16:35 +0200335class CryptoConfig(config_common.Config):
Gabor Mezei62a9bd02024-06-07 13:44:40 +0200336 """Representation of the PSA crypto configuration.
Gabor Mezei3678dee2024-06-04 19:58:43 +0200337
338 See the documentation of the `Config` class for methods to query
339 and modify the configuration.
340 """
Gabor Mezei4706fe72024-07-08 17:00:55 +0200341
Gabor Mezeiee521b62024-06-07 13:50:41 +0200342 def __init__(self, filename=None):
Gabor Mezei3678dee2024-06-04 19:58:43 +0200343 """Read the PSA crypto configuration file."""
Gabor Mezei4706fe72024-07-08 17:00:55 +0200344
Gabor Mezei3678dee2024-06-04 19:58:43 +0200345 super().__init__()
Gabor Mezeid53080d2024-08-27 14:06:54 +0200346 configfile = CryptoConfigFile(filename)
347 self.configfiles.append(configfile)
Gabor Mezei0e9e4cb2024-09-10 16:16:35 +0200348 self.settings.update({name: config_common.Setting(configfile, active, name, value, section)
Gabor Mezei92065ed2024-06-07 13:47:59 +0200349 for (active, name, value, section)
Gabor Mezeid53080d2024-08-27 14:06:54 +0200350 in configfile.parse_file()})
Gabor Mezei3678dee2024-06-04 19:58:43 +0200351
Gabor Mezeid723b512024-06-07 15:31:52 +0200352 def set(self, name, value='1'):
Gabor Mezei4706fe72024-07-08 17:00:55 +0200353 """Set name to the given value and make it active."""
354
Gabor Mezei542fd382024-06-10 14:07:42 +0200355 if name in PSA_UNSUPPORTED_FEATURE:
Gabor Mezei92065ed2024-06-07 13:47:59 +0200356 raise ValueError(f'Feature is unsupported: \'{name}\'')
Gabor Mezei542fd382024-06-10 14:07:42 +0200357 if name in PSA_UNSTABLE_FEATURE:
Gabor Mezei92065ed2024-06-07 13:47:59 +0200358 raise ValueError(f'Feature is unstable: \'{name}\'')
Gabor Mezei3678dee2024-06-04 19:58:43 +0200359
360 if name not in self.settings:
Gabor Mezeid53080d2024-08-27 14:06:54 +0200361 self._get_configfile().templates.append((name, '', '#define ' + name + ' '))
Gabor Mezeiee521b62024-06-07 13:50:41 +0200362
Gabor Mezei3678dee2024-06-04 19:58:43 +0200363 super().set(name, value)
364
Gabor Mezeia12ed6b2024-09-09 17:20:49 +0200365
Gabor Mezei0e9e4cb2024-09-10 16:16:35 +0200366class CombinedConfig(config_common.Config):
Gabor Mezei62a9bd02024-06-07 13:44:40 +0200367 """Representation of MbedTLS and PSA crypto configuration
368
369 See the documentation of the `Config` class for methods to query
370 and modify the configuration.
371 """
Gabor Mezei3678dee2024-06-04 19:58:43 +0200372
Gabor Mezei3e2a5502024-06-28 17:27:19 +0200373 def __init__(self, *configs):
Gabor Mezeiee521b62024-06-07 13:50:41 +0200374 super().__init__()
Gabor Mezei3e2a5502024-06-28 17:27:19 +0200375 for config in configs:
376 if isinstance(config, MbedTLSConfigFile):
377 self.mbedtls_configfile = config
378 elif isinstance(config, CryptoConfigFile):
379 self.crypto_configfile = config
380 else:
381 raise ValueError(f'Invalid configfile: {config}')
Gabor Mezeid53080d2024-08-27 14:06:54 +0200382 self.configfiles.append(config)
Gabor Mezei3e2a5502024-06-28 17:27:19 +0200383
Gabor Mezei0e9e4cb2024-09-10 16:16:35 +0200384 self.settings.update({name: config_common.Setting(configfile, active, name, value, section)
Gabor Mezeiee521b62024-06-07 13:50:41 +0200385 for configfile in [self.mbedtls_configfile, self.crypto_configfile]
386 for (active, name, value, section) in configfile.parse_file()})
Gabor Mezei3678dee2024-06-04 19:58:43 +0200387
388 _crypto_regexp = re.compile(r'$PSA_.*')
Gabor Mezeid53080d2024-08-27 14:06:54 +0200389 def _get_configfile(self, name=None):
Gabor Mezei4706fe72024-07-08 17:00:55 +0200390 """Find a config type for a setting name"""
391
Gabor Mezeiee521b62024-06-07 13:50:41 +0200392 if name in self.settings:
393 return self.settings[name].configfile
394 elif re.match(self._crypto_regexp, name):
395 return self.crypto_configfile
Gabor Mezei3678dee2024-06-04 19:58:43 +0200396 else:
Gabor Mezeiee521b62024-06-07 13:50:41 +0200397 return self.mbedtls_configfile
Gabor Mezei3678dee2024-06-04 19:58:43 +0200398
399 def set(self, name, value=None):
Gabor Mezei4706fe72024-07-08 17:00:55 +0200400 """Set name to the given value and make it active."""
401
Gabor Mezeiee521b62024-06-07 13:50:41 +0200402 configfile = self._get_configfile(name)
Gabor Mezei3678dee2024-06-04 19:58:43 +0200403
Gabor Mezeiee521b62024-06-07 13:50:41 +0200404 if configfile == self.crypto_configfile:
Gabor Mezei542fd382024-06-10 14:07:42 +0200405 if name in PSA_UNSUPPORTED_FEATURE:
Gabor Mezeiee521b62024-06-07 13:50:41 +0200406 raise ValueError(f'Feature is unsupported: \'{name}\'')
Gabor Mezei542fd382024-06-10 14:07:42 +0200407 if name in PSA_UNSTABLE_FEATURE:
Gabor Mezeiee521b62024-06-07 13:50:41 +0200408 raise ValueError(f'Feature is unstable: \'{name}\'')
409
Gabor Mezeid723b512024-06-07 15:31:52 +0200410 # The default value in the crypto config is '1'
411 if not value:
412 value = '1'
413
Gabor Mezeic659c1b2024-08-06 17:37:55 +0200414 if name not in self.settings:
Gabor Mezeiee521b62024-06-07 13:50:41 +0200415 configfile.templates.append((name, '', '#define ' + name + ' '))
416
Gabor Mezeid53080d2024-08-27 14:06:54 +0200417 super().set(name, value)
Gabor Mezeiee521b62024-06-07 13:50:41 +0200418
Gabor Mezeidaf807f2024-08-14 11:33:46 +0200419 #pylint: disable=arguments-differ
Gabor Mezei3678dee2024-06-04 19:58:43 +0200420 def write(self, mbedtls_file=None, crypto_file=None):
Gabor Mezei62a9bd02024-06-07 13:44:40 +0200421 """Write the whole configuration to the file it was read from.
422
423 If mbedtls_file or crypto_file is specified, write the specific configuration
424 to the corresponding file instead.
Gabor Mezeif5f13082024-09-18 13:02:16 +0200425
Gabor Mezei317a2a32024-09-18 16:51:27 +0200426 Two file name parameters and not only one as in the super class as we handle
427 two configuration files in this class.
Gabor Mezei62a9bd02024-06-07 13:44:40 +0200428 """
Gabor Mezei4706fe72024-07-08 17:00:55 +0200429
Gabor Mezeiee521b62024-06-07 13:50:41 +0200430 self.mbedtls_configfile.write(self.settings, mbedtls_file)
431 self.crypto_configfile.write(self.settings, crypto_file)
Gabor Mezei3678dee2024-06-04 19:58:43 +0200432
Gabor Mezeiee521b62024-06-07 13:50:41 +0200433 def filename(self, name=None):
Gabor Mezeif5f13082024-09-18 13:02:16 +0200434 """Get the name of the config files.
Gabor Mezei4706fe72024-07-08 17:00:55 +0200435
436 If 'name' is specified return the name of the config file where it is defined.
437 """
438
Gabor Mezeiee521b62024-06-07 13:50:41 +0200439 if not name:
440 return [config.filename for config in [self.mbedtls_configfile, self.crypto_configfile]]
441
442 return self._get_configfile(name).filename
Gilles Peskineb4063892019-07-27 21:36:44 +0200443
Gabor Mezei24d7cc72024-08-06 15:11:24 +0200444
Gabor Mezei0e9e4cb2024-09-10 16:16:35 +0200445class MbedTLSConfigTool(config_common.ConfigTool):
Gabor Mezei24d7cc72024-08-06 15:11:24 +0200446 """Command line mbedtls_config.h and crypto_config.h manipulation tool."""
447
448 def __init__(self):
449 super().__init__(MbedTLSConfigFile)
Gabor Mezei568808a2024-09-18 13:02:42 +0200450 self.config = CombinedConfig(MbedTLSConfigFile(self.args.file),
451 CryptoConfigFile(self.args.cryptofile))
Gabor Mezei24d7cc72024-08-06 15:11:24 +0200452
453 def custom_parser_options(self):
454 """Adds MbedTLS specific options for the parser."""
455
Gabor Mezeia12ed6b2024-09-09 17:20:49 +0200456 self.parser.add_argument(
457 '--cryptofile', '-c',
458 help="""Crypto file to read (and modify if requested). Default: {}."""
459 .format(CryptoConfigFile.default_path))
Gabor Mezei24d7cc72024-08-06 15:11:24 +0200460
Gabor Mezeia12ed6b2024-09-09 17:20:49 +0200461 self.add_adapter(
462 'baremetal', baremetal_adapter,
463 """Like full, but exclude features that require platform features
464 such as file input-output.
465 """)
466 self.add_adapter(
467 'baremetal_size', baremetal_size_adapter,
468 """Like baremetal, but exclude debugging features. Useful for code size measurements.
469 """)
470 self.add_adapter(
471 'full', full_adapter,
472 """Uncomment most features.
473 Exclude alternative implementations and platform support options, as well as
474 some options that are awkward to test.
475 """)
476 self.add_adapter(
477 'full_no_deprecated', no_deprecated_adapter(full_adapter),
478 """Uncomment most non-deprecated features.
479 Like "full", but without deprecated features.
480 """)
481 self.add_adapter(
482 'full_no_platform', no_platform_adapter(full_adapter),
483 """Uncomment most non-platform features. Like "full", but without platform features.
484 """)
485 self.add_adapter(
486 'realfull', realfull_adapter,
487 """Uncomment all boolean #defines.
488 Suitable for generating documentation, but not for building.
489 """)
490 self.add_adapter(
491 'crypto', crypto_adapter(None),
492 """Only include crypto features. Exclude X.509 and TLS.""")
493 self.add_adapter(
494 'crypto_baremetal', crypto_adapter(baremetal_adapter),
495 """Like baremetal, but with only crypto features, excluding X.509 and TLS.""")
496 self.add_adapter(
497 'crypto_full', crypto_adapter(full_adapter),
498 """Like full, but with only crypto features, excluding X.509 and TLS.""")
Gilles Peskineb4063892019-07-27 21:36:44 +0200499
Gilles Peskineb4063892019-07-27 21:36:44 +0200500
Gabor Mezei24d7cc72024-08-06 15:11:24 +0200501if __name__ == '__main__':
502 sys.exit(MbedTLSConfigTool().main())