blob: 9f77063e11f1c52c09110a5c5cafddf3aa7d874a [file] [log] [blame]
Gilles Peskineb4063892019-07-27 21:36:44 +02001#!/usr/bin/env python3
2
3"""Mbed TLS configuration file manipulation library and tool
4
5Basic usage, to read the Mbed TLS or Mbed Crypto configuration:
6 config = ConfigFile()
7 if 'MBEDTLS_RSA_C' in config: print('RSA is enabled')
8"""
9
10## Copyright (C) 2019, ARM Limited, All Rights Reserved
11## SPDX-License-Identifier: Apache-2.0
12##
13## Licensed under the Apache License, Version 2.0 (the "License"); you may
14## not use this file except in compliance with the License.
15## You may obtain a copy of the License at
16##
17## http://www.apache.org/licenses/LICENSE-2.0
18##
19## Unless required by applicable law or agreed to in writing, software
20## distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
21## WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22## See the License for the specific language governing permissions and
23## limitations under the License.
24##
25## This file is part of Mbed TLS (https://tls.mbed.org)
26
Gilles Peskine208e4ec2019-07-29 23:43:20 +020027import os
Gilles Peskineb4063892019-07-27 21:36:44 +020028import re
29
30class Setting:
31 """Representation of one Mbed TLS config.h setting.
32
33 Fields:
34 * name: the symbol name ('MBEDTLS_xxx').
35 * value: the value of the macro. The empty string for a plain #define
36 with no value.
37 * active: True if name is defined, False if a #define for name is
38 present in config.h but commented out.
Gilles Peskine53d41ae2019-07-27 23:31:53 +020039 * section: the name of the section that contains this symbol.
Gilles Peskineb4063892019-07-27 21:36:44 +020040 """
41 # pylint: disable=too-few-public-methods
Gilles Peskine53d41ae2019-07-27 23:31:53 +020042 def __init__(self, active, name, value='', section=None):
Gilles Peskineb4063892019-07-27 21:36:44 +020043 self.active = active
44 self.name = name
45 self.value = value
Gilles Peskine53d41ae2019-07-27 23:31:53 +020046 self.section = section
Gilles Peskineb4063892019-07-27 21:36:44 +020047
48class Config:
49 """Representation of the Mbed TLS configuration.
50
51 In the documentation of this class, a symbol is said to be *active*
52 if there is a #define for it that is not commented out, and *known*
53 if there is a #define for it whether commented out or not.
54
55 This class supports the following protocols:
Gilles Peskinec190c902019-08-01 23:31:05 +020056 * `name in config` is `True` if the symbol `name` is active, `False`
57 otherwise (whether `name` is inactive or not known).
58 * `config[name]` is the value of the macro `name`. If `name` is inactive,
59 raise `KeyError` (even if `name` is known).
Gilles Peskineb4063892019-07-27 21:36:44 +020060 * `config[name] = value` sets the value associated to `name`. `name`
61 must be known, but does not need to be set. This does not cause
62 name to become set.
63 """
64
65 def __init__(self):
66 self.settings = {}
67
68 def __contains__(self, name):
69 """True if the given symbol is active (i.e. set).
70
71 False if the given symbol is not set, even if a definition
72 is present but commented out.
73 """
74 return name in self.settings and self.settings[name].active
75
76 def all(self, *names):
77 """True if all the elements of names are active (i.e. set)."""
78 return all(self.__contains__(name) for name in names)
79
80 def any(self, *names):
81 """True if at least one symbol in names are active (i.e. set)."""
82 return any(self.__contains__(name) for name in names)
83
84 def known(self, name):
85 """True if a #define for name is present, whether it's commented out or not."""
86 return name in self.settings
87
88 def __getitem__(self, name):
89 """Get the value of name, i.e. what the preprocessor symbol expands to.
90
91 If name is not known, raise KeyError. name does not need to be active.
92 """
93 return self.settings[name].value
94
95 def get(self, name, default=None):
96 """Get the value of name. If name is inactive (not set), return default.
97
98 If a #define for name is present and not commented out, return
99 its expansion, even if this is the empty string.
100
101 If a #define for name is present but commented out, return default.
102 """
103 if name in self.settings:
104 return self.settings[name].value
105 else:
106 return default
107
108 def __setitem__(self, name, value):
109 """If name is known, set its value.
110
111 If name is not known, raise KeyError.
112 """
113 self.settings[name].value = value
114
115 def set(self, name, value=None):
116 """Set name to the given value and make it active.
117
118 If value is None and name is already known, don't change its value.
119 If value is None and name is not known, set its value to the empty
120 string.
121 """
122 if name in self.settings:
123 if value is not None:
124 self.settings[name].value = value
125 self.settings[name].active = True
126 else:
127 self.settings[name] = Setting(True, name, value=value)
128
129 def unset(self, name):
130 """Make name unset (inactive).
131
Gilles Peskine55cc4db2019-08-01 23:13:23 +0200132 name remains known if it was known before.
Gilles Peskineb4063892019-07-27 21:36:44 +0200133 """
Gilles Peskine55cc4db2019-08-01 23:13:23 +0200134 if name not in self.settings:
135 return
Gilles Peskineb4063892019-07-27 21:36:44 +0200136 self.settings[name].active = False
137
138 def adapt(self, adapter):
139 """Run adapter on each known symbol and (de)activate it accordingly.
140
141 `adapter` must be a function that returns a boolean. It is called as
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200142 `adapter(name, active, section)` for each setting, where `active` is
143 `True` if `name` is set and `False` if `name` is known but unset,
144 and `section` is the name of the section containing `name`. If
Gilles Peskineb4063892019-07-27 21:36:44 +0200145 `adapter` returns `True`, then set `name` (i.e. make it active),
146 otherwise unset `name` (i.e. make it known but inactive).
147 """
148 for setting in self.settings.values():
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200149 setting.active = adapter(setting.name, setting.active,
150 setting.section)
Gilles Peskineb4063892019-07-27 21:36:44 +0200151
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200152def is_full_section(section):
153 """Is this section affected by "config.py full" and friends?"""
154 return section.endswith('support') or section.endswith('modules')
155
156def realfull_adapter(_name, active, section):
Gilles Peskinec190c902019-08-01 23:31:05 +0200157 """Activate all symbols found in the system and feature sections."""
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200158 if not is_full_section(section):
159 return active
Gilles Peskineb4063892019-07-27 21:36:44 +0200160 return True
161
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200162def include_in_full(name):
163 """Rules for symbols in the "full" configuration."""
164 if re.search(r'PLATFORM_[A-Z0-9]+_ALT', name):
165 return True
166 if name in [
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200167 'MBEDTLS_DEPRECATED_REMOVED',
Gilles Peskine2d89ccc2019-07-27 23:37:47 +0200168 'MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED',
169 'MBEDTLS_ECP_RESTARTABLE',
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200170 'MBEDTLS_HAVE_SSE2',
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200171 'MBEDTLS_MEMORY_BACKTRACE',
172 'MBEDTLS_MEMORY_BUFFER_ALLOC_C',
Gilles Peskine2d89ccc2019-07-27 23:37:47 +0200173 'MBEDTLS_MEMORY_DEBUG',
174 'MBEDTLS_NO_64BIT_MULTIPLICATION',
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200175 'MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES',
176 'MBEDTLS_NO_PLATFORM_ENTROPY',
Gilles Peskine2d89ccc2019-07-27 23:37:47 +0200177 'MBEDTLS_NO_UDBL_DIVISION',
178 'MBEDTLS_PKCS11_C',
179 'MBEDTLS_PLATFORM_NO_STD_FUNCTIONS',
180 'MBEDTLS_PSA_CRYPTO_SPM',
181 'MBEDTLS_PSA_INJECT_ENTROPY',
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200182 'MBEDTLS_REMOVE_3DES_CIPHERSUITES',
Gilles Peskine2d89ccc2019-07-27 23:37:47 +0200183 'MBEDTLS_REMOVE_ARC4_CIPHERSUITES',
184 'MBEDTLS_RSA_NO_CRT',
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200185 'MBEDTLS_SSL_HW_RECORD_ACCEL',
Gilles Peskine2d89ccc2019-07-27 23:37:47 +0200186 'MBEDTLS_TEST_NULL_ENTROPY',
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200187 'MBEDTLS_X509_ALLOW_EXTENSIONS_NON_V3',
188 'MBEDTLS_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION',
189 'MBEDTLS_ZLIB_SUPPORT',
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200190 ]:
191 return False
192 if name.endswith('_ALT'):
193 return False
194 return True
195
196def full_adapter(name, active, section):
197 """Config adapter for "full"."""
198 if not is_full_section(section):
199 return active
200 return include_in_full(name)
201
202def keep_in_baremetal(name):
203 """Rules for symbols in the "baremetal" configuration."""
204 if name in [
Gilles Peskine2d89ccc2019-07-27 23:37:47 +0200205 'MBEDTLS_DEPRECATED_WARNING',
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200206 'MBEDTLS_ENTROPY_NV_SEED',
Gilles Peskine2d89ccc2019-07-27 23:37:47 +0200207 'MBEDTLS_FS_IO',
208 'MBEDTLS_HAVEGE_C',
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200209 'MBEDTLS_HAVE_TIME',
210 'MBEDTLS_HAVE_TIME_DATE',
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200211 'MBEDTLS_MEMORY_BACKTRACE',
212 'MBEDTLS_MEMORY_BUFFER_ALLOC_C',
Gilles Peskine2d89ccc2019-07-27 23:37:47 +0200213 'MBEDTLS_NET_C',
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200214 'MBEDTLS_PLATFORM_FPRINTF_ALT',
Gilles Peskine2d89ccc2019-07-27 23:37:47 +0200215 'MBEDTLS_PLATFORM_TIME_ALT',
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200216 'MBEDTLS_PSA_CRYPTO_STORAGE_C',
Gilles Peskine2d89ccc2019-07-27 23:37:47 +0200217 'MBEDTLS_PSA_ITS_FILE_C',
218 'MBEDTLS_THREADING_C',
219 'MBEDTLS_THREADING_PTHREAD',
220 'MBEDTLS_TIMING_C',
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200221 ]:
222 return False
223 return True
224
225def baremetal_adapter(name, active, section):
226 """Config adapter for "baremetal"."""
227 if not is_full_section(section):
228 return active
229 if name == 'MBEDTLS_NO_PLATFORM_ENTROPY':
230 return True
231 return include_in_full(name) and keep_in_baremetal(name)
232
Gilles Peskine31987c62020-01-31 14:23:30 +0100233def include_in_crypto(name):
234 """Rules for symbols in a crypto configuration."""
235 if name.startswith('MBEDTLS_X509_') or \
236 name.startswith('MBEDTLS_SSL_') or \
237 name.startswith('MBEDTLS_KEY_EXCHANGE_'):
238 return False
239 if name in [
240 'MBEDTLS_CERTS_C',
241 'MBEDTLS_DEBUG_C',
242 'MBEDTLS_NET_C',
243 'MBEDTLS_PKCS11_C',
244 ]:
245 return False
246 return True
247
248def crypto_adapter(adapter):
249 """Modify an adapter to disable non-crypto symbols.
250
251 ``crypto_adapter(adapter)(name, active, section)`` is like
252 ``adapter(name, active, section)``, but unsets all X.509 and TLS symbols.
253 """
254 def continuation(name, active, section):
255 if not include_in_crypto(name):
256 return False
257 if adapter is None:
258 return active
259 return adapter(name, active, section)
260 return continuation
261
Gilles Peskineb4063892019-07-27 21:36:44 +0200262class ConfigFile(Config):
263 """Representation of the Mbed TLS configuration read for a file.
264
265 See the documentation of the `Config` class for methods to query
266 and modify the configuration.
267 """
268
Gilles Peskine208e4ec2019-07-29 23:43:20 +0200269 _path_in_tree = 'include/mbedtls/config.h'
270 default_path = [_path_in_tree,
271 os.path.join(os.path.dirname(__file__),
272 os.pardir,
273 _path_in_tree),
274 os.path.join(os.path.dirname(os.path.abspath(os.path.dirname(__file__))),
275 _path_in_tree)]
Gilles Peskineb4063892019-07-27 21:36:44 +0200276
277 def __init__(self, filename=None):
278 """Read the Mbed TLS configuration file."""
279 if filename is None:
Gilles Peskine208e4ec2019-07-29 23:43:20 +0200280 for filename in self.default_path:
281 if os.path.lexists(filename):
282 break
Gilles Peskineb4063892019-07-27 21:36:44 +0200283 super().__init__()
284 self.filename = filename
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200285 self.current_section = 'header'
Gilles Peskine0fa5efb2019-07-28 13:30:06 +0200286 with open(filename, 'r', encoding='utf-8') as file:
Gilles Peskineb4063892019-07-27 21:36:44 +0200287 self.templates = [self._parse_line(line) for line in file]
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200288 self.current_section = None
Gilles Peskineb4063892019-07-27 21:36:44 +0200289
290 def set(self, name, value=None):
291 if name not in self.settings:
292 self.templates.append((name, '', '#define ' + name + ' '))
293 super().set(name, value)
294
295 _define_line_regexp = (r'(?P<indentation>\s*)' +
296 r'(?P<commented_out>(//\s*)?)' +
297 r'(?P<define>#\s*define\s+)' +
298 r'(?P<name>\w+)' +
299 r'(?P<arguments>(?:\((?:\w|\s|,)*\))?)' +
300 r'(?P<separator>\s*)' +
301 r'(?P<value>.*)')
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200302 _section_line_regexp = (r'\s*/?\*+\s*[\\@]name\s+SECTION:\s*' +
303 r'(?P<section>.*)[ */]*')
304 _config_line_regexp = re.compile(r'|'.join([_define_line_regexp,
305 _section_line_regexp]))
Gilles Peskineb4063892019-07-27 21:36:44 +0200306 def _parse_line(self, line):
307 """Parse a line in config.h and return the corresponding template."""
308 line = line.rstrip('\r\n')
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200309 m = re.match(self._config_line_regexp, line)
310 if m is None:
311 return line
312 elif m.group('section'):
313 self.current_section = m.group('section')
314 return line
315 else:
Gilles Peskineb4063892019-07-27 21:36:44 +0200316 active = not m.group('commented_out')
317 name = m.group('name')
318 value = m.group('value')
319 template = (name,
320 m.group('indentation'),
321 m.group('define') + name +
322 m.group('arguments') + m.group('separator'))
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200323 self.settings[name] = Setting(active, name, value,
324 self.current_section)
Gilles Peskineb4063892019-07-27 21:36:44 +0200325 return template
Gilles Peskineb4063892019-07-27 21:36:44 +0200326
327 def _format_template(self, name, indent, middle):
328 """Build a line for config.h for the given setting.
329
Gilles Peskinec190c902019-08-01 23:31:05 +0200330 The line has the form "<indent>#define <name> <value>"
331 where <middle> is "#define <name> ".
Gilles Peskineb4063892019-07-27 21:36:44 +0200332 """
333 setting = self.settings[name]
Gilles Peskinef6860422019-09-04 22:51:47 +0200334 value = setting.value
335 if value is None:
336 value = ''
337 # Normally the whitespace to separte the symbol name from the
338 # value is part of middle, and there's no whitespace for a symbol
339 # with no value. But if a symbol has been changed from having a
340 # value to not having one, the whitespace is wrong, so fix it.
341 if value:
342 if middle[-1] not in '\t ':
343 middle += ' '
344 else:
345 middle = middle.rstrip()
Gilles Peskineb4063892019-07-27 21:36:44 +0200346 return ''.join([indent,
347 '' if setting.active else '//',
348 middle,
Gilles Peskinef6860422019-09-04 22:51:47 +0200349 value]).rstrip()
Gilles Peskineb4063892019-07-27 21:36:44 +0200350
351 def write_to_stream(self, output):
352 """Write the whole configuration to output."""
353 for template in self.templates:
354 if isinstance(template, str):
355 line = template
356 else:
357 line = self._format_template(*template)
358 output.write(line + '\n')
359
360 def write(self, filename=None):
361 """Write the whole configuration to the file it was read from.
362
363 If filename is specified, write to this file instead.
364 """
365 if filename is None:
366 filename = self.filename
Gilles Peskine0fa5efb2019-07-28 13:30:06 +0200367 with open(filename, 'w', encoding='utf-8') as output:
Gilles Peskineb4063892019-07-27 21:36:44 +0200368 self.write_to_stream(output)
369
370if __name__ == '__main__':
371 def main():
372 """Command line config.h manipulation tool."""
373 parser = argparse.ArgumentParser(description="""
374 Mbed TLS and Mbed Crypto configuration file manipulation tool.
375 """)
376 parser.add_argument('--file', '-f',
377 help="""File to read (and modify if requested).
378 Default: {}.
379 """.format(ConfigFile.default_path))
380 parser.add_argument('--force', '-o',
Gilles Peskine435ce222019-08-01 23:13:47 +0200381 action='store_true',
Gilles Peskineb4063892019-07-27 21:36:44 +0200382 help="""For the set command, if SYMBOL is not
383 present, add a definition for it.""")
Gilles Peskinec190c902019-08-01 23:31:05 +0200384 parser.add_argument('--write', '-w', metavar='FILE',
Gilles Peskine40f103c2019-07-27 23:44:01 +0200385 help="""File to write to instead of the input file.""")
Gilles Peskineb4063892019-07-27 21:36:44 +0200386 subparsers = parser.add_subparsers(dest='command',
387 title='Commands')
388 parser_get = subparsers.add_parser('get',
389 help="""Find the value of SYMBOL
390 and print it. Exit with
391 status 0 if a #define for SYMBOL is
392 found, 1 otherwise.
393 """)
394 parser_get.add_argument('symbol', metavar='SYMBOL')
395 parser_set = subparsers.add_parser('set',
396 help="""Set SYMBOL to VALUE.
397 If VALUE is omitted, just uncomment
398 the #define for SYMBOL.
399 Error out of a line defining
400 SYMBOL (commented or not) is not
401 found, unless --force is passed.
402 """)
403 parser_set.add_argument('symbol', metavar='SYMBOL')
Gilles Peskine0c7fcd22019-08-01 23:14:00 +0200404 parser_set.add_argument('value', metavar='VALUE', nargs='?',
405 default='')
Gilles Peskineb4063892019-07-27 21:36:44 +0200406 parser_unset = subparsers.add_parser('unset',
407 help="""Comment out the #define
408 for SYMBOL. Do nothing if none
409 is present.""")
410 parser_unset.add_argument('symbol', metavar='SYMBOL')
411
412 def add_adapter(name, function, description):
413 subparser = subparsers.add_parser(name, help=description)
414 subparser.set_defaults(adapter=function)
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200415 add_adapter('baremetal', baremetal_adapter,
416 """Like full, but exclude features that require platform
417 features such as file input-output.""")
418 add_adapter('full', full_adapter,
419 """Uncomment most features.
420 Exclude alternative implementations and platform support
421 options, as well as some options that are awkward to test.
422 """)
Gilles Peskineb4063892019-07-27 21:36:44 +0200423 add_adapter('realfull', realfull_adapter,
Gilles Peskine53d41ae2019-07-27 23:31:53 +0200424 """Uncomment all boolean #defines.
425 Suitable for generating documentation, but not for building.""")
Gilles Peskine31987c62020-01-31 14:23:30 +0100426 add_adapter('crypto', crypto_adapter(None),
427 """Only include crypto features. Exclude X.509 and TLS.""")
428 add_adapter('crypto_baremetal', crypto_adapter(baremetal_adapter),
429 """Like baremetal, but with only crypto features,
430 excluding X.509 and TLS.""")
431 add_adapter('crypto_full', crypto_adapter(full_adapter),
432 """Like full, but with only crypto features,
433 excluding X.509 and TLS.""")
Gilles Peskineb4063892019-07-27 21:36:44 +0200434
435 args = parser.parse_args()
436 config = ConfigFile(args.file)
Gilles Peskine90b30b62019-07-28 00:36:53 +0200437 if args.command is None:
438 parser.print_help()
439 return 1
440 elif args.command == 'get':
Gilles Peskineb4063892019-07-27 21:36:44 +0200441 if args.symbol in config:
442 value = config[args.symbol]
443 if value:
444 sys.stdout.write(value + '\n')
445 return args.symbol not in config
446 elif args.command == 'set':
Gilles Peskine98eb3652019-07-28 16:39:19 +0200447 if not args.force and args.symbol not in config.settings:
Gilles Peskineb4063892019-07-27 21:36:44 +0200448 sys.stderr.write("A #define for the symbol {} "
Gilles Peskine221df1e2019-08-01 23:14:29 +0200449 "was not found in {}\n"
450 .format(args.symbol, config.filename))
Gilles Peskineb4063892019-07-27 21:36:44 +0200451 return 1
452 config.set(args.symbol, value=args.value)
453 elif args.command == 'unset':
454 config.unset(args.symbol)
455 else:
456 config.adapt(args.adapter)
Gilles Peskine40f103c2019-07-27 23:44:01 +0200457 config.write(args.write)
Gilles Peskineb4063892019-07-27 21:36:44 +0200458
459 # Import modules only used by main only if main is defined and called.
460 # pylint: disable=wrong-import-position
461 import argparse
462 import sys
463 sys.exit(main())