blob: 551acbd23fdd3883916229142c30e10b7fc95f65 [file] [log] [blame]
Gilles Peskine5294bb32024-01-04 16:38:17 +01001#!/usr/bin/env python3
2"""Generate wrapper functions for PSA function calls.
3"""
4
5# Copyright The Mbed TLS Contributors
6# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
7
Gilles Peskinea1871f32024-01-04 17:28:59 +01008### WARNING: the code in this file has not been extensively reviewed yet.
9### We do not think it is harmful, but it may be below our normal standards
10### for robustness and maintainability.
11
Gilles Peskine5294bb32024-01-04 16:38:17 +010012import argparse
Gilles Peskine4adacac2023-12-06 19:32:52 +010013import itertools
Gilles Peskine5294bb32024-01-04 16:38:17 +010014import os
Gilles Peskine4adacac2023-12-06 19:32:52 +010015from typing import Iterator, List, Optional, Tuple
Gilles Peskine5294bb32024-01-04 16:38:17 +010016
17import scripts_path #pylint: disable=unused-import
18from mbedtls_dev import build_tree
19from mbedtls_dev import c_parsing_helper
20from mbedtls_dev import c_wrapper_generator
21from mbedtls_dev import typing_util
22
23
Gilles Peskine4adacac2023-12-06 19:32:52 +010024class BufferParameter:
25 """Description of an input or output buffer parameter sequence to a PSA function."""
26 #pylint: disable=too-few-public-methods
27
28 def __init__(self, i: int, is_output: bool,
29 buffer_name: str, size_name: str) -> None:
30 """Initialize the parameter information.
31
32 i is the index of the function argument that is the pointer to the buffer.
33 The size is argument i+1. For a variable-size output, the actual length
34 goes in argument i+2.
35
36 buffer_name and size_names are the names of arguments i and i+1.
37 This class does not yet help with the output length.
38 """
39 self.index = i
40 self.buffer_name = buffer_name
41 self.size_name = size_name
42 self.is_output = is_output
43
44
Gilles Peskine5294bb32024-01-04 16:38:17 +010045class PSAWrapperGenerator(c_wrapper_generator.Base):
46 """Generate a C source file containing wrapper functions for PSA Crypto API calls."""
47
48 _CPP_GUARDS = 'defined(MBEDTLS_PSA_CRYPTO_C) && defined(MBEDTLS_TEST_HOOKS)'
49 _WRAPPER_NAME_PREFIX = 'mbedtls_test_wrap_'
50 _WRAPPER_NAME_SUFFIX = ''
51
52 def gather_data(self) -> None:
53 root_dir = build_tree.guess_mbedtls_root()
54 for header_name in ['crypto.h', 'crypto_extra.h']:
55 header_path = os.path.join(root_dir, 'include', 'psa', header_name)
56 c_parsing_helper.read_function_declarations(self.functions, header_path)
57
58 _SKIP_FUNCTIONS = frozenset([
59 'mbedtls_psa_external_get_random', # not a library function
60 'psa_get_key_domain_parameters', # client-side function
61 'psa_get_key_slot_number', # client-side function
62 'psa_key_derivation_verify_bytes', # not implemented yet
63 'psa_key_derivation_verify_key', # not implemented yet
64 'psa_set_key_domain_parameters', # client-side function
65 ])
66
67 def _skip_function(self, function: c_wrapper_generator.FunctionInfo) -> bool:
68 if function.return_type != 'psa_status_t':
69 return True
70 if function.name in self._SKIP_FUNCTIONS:
71 return True
72 return False
73
74 # PAKE stuff: not implemented yet
75 _PAKE_STUFF = frozenset([
76 'psa_crypto_driver_pake_inputs_t *',
77 'psa_pake_cipher_suite_t *',
78 ])
79
80 def _return_variable_name(self,
81 function: c_wrapper_generator.FunctionInfo) -> str:
82 """The name of the variable that will contain the return value."""
83 if function.return_type == 'psa_status_t':
84 return 'status'
85 return super()._return_variable_name(function)
86
87 _FUNCTION_GUARDS = c_wrapper_generator.Base._FUNCTION_GUARDS.copy() \
88 #pylint: disable=protected-access
89 _FUNCTION_GUARDS.update({
90 'mbedtls_psa_register_se_key': 'defined(MBEDTLS_PSA_CRYPTO_SE_C)',
91 'mbedtls_psa_inject_entropy': 'defined(MBEDTLS_PSA_INJECT_ENTROPY)',
92 'mbedtls_psa_external_get_random': 'defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG)',
93 'mbedtls_psa_platform_get_builtin_key': 'defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS)',
94 })
95
Gilles Peskine4adacac2023-12-06 19:32:52 +010096 @staticmethod
97 def _detect_buffer_parameters(arguments: List[c_parsing_helper.ArgumentInfo],
98 argument_names: List[str]) -> Iterator[BufferParameter]:
99 """Detect function arguments that are buffers (pointer, size [,length])."""
100 types = ['' if arg.suffix else arg.type for arg in arguments]
101 # pairs = list of (type_of_arg_N, type_of_arg_N+1)
102 # where each type_of_arg_X is the empty string if the type is an array
103 # or there is no argument X.
104 pairs = enumerate(itertools.zip_longest(types, types[1:], fillvalue=''))
105 for i, t01 in pairs:
106 if (t01[0] == 'const uint8_t *' or t01[0] == 'uint8_t *') and \
107 t01[1] == 'size_t':
108 yield BufferParameter(i, not t01[0].startswith('const '),
109 argument_names[i], argument_names[i+1])
110
111 @staticmethod
112 def _write_poison_buffer_parameter(out: typing_util.Writable,
113 param: BufferParameter,
114 poison: bool) -> None:
115 """Write poisoning or unpoisoning code for a buffer parameter.
116
117 Write poisoning code if poison is true, unpoisoning code otherwise.
118 """
119 out.write(' MBEDTLS_TEST_MEMORY_{}({}, {});\n'.format(
120 'POISON' if poison else 'UNPOISON',
121 param.buffer_name, param.size_name
122 ))
123
124 @staticmethod
125 def _parameter_should_be_copied(function_name: str,
126 _buffer_name: Optional[str]) -> bool:
127 """Whether the specified buffer argument to a PSA function should be copied.
128 """
129 # Proof-of-concept: just instrument one function for now
130 if function_name == 'psa_cipher_encrypt':
131 return True
132 return False
133
134 def _write_function_call(self, out: typing_util.Writable,
135 function: c_wrapper_generator.FunctionInfo,
136 argument_names: List[str]) -> None:
137 buffer_parameters = list(
138 param
139 for param in self._detect_buffer_parameters(function.arguments,
140 argument_names)
141 if self._parameter_should_be_copied(function.name,
142 function.arguments[param.index].name))
143 for param in buffer_parameters:
144 self._write_poison_buffer_parameter(out, param, True)
145 super()._write_function_call(out, function, argument_names)
146 for param in buffer_parameters:
147 self._write_poison_buffer_parameter(out, param, False)
148
Gilles Peskine5294bb32024-01-04 16:38:17 +0100149 def _write_prologue(self, out: typing_util.Writable, header: bool) -> None:
150 super()._write_prologue(out, header)
151 out.write("""
152#if {}
153
154#include <psa/crypto.h>
155
Gilles Peskine4adacac2023-12-06 19:32:52 +0100156#include <test/memory.h>
Gilles Peskine5294bb32024-01-04 16:38:17 +0100157#include <test/psa_crypto_helpers.h>
158#include <test/psa_test_wrappers.h>
159"""
160 .format(self._CPP_GUARDS))
161
162 def _write_epilogue(self, out: typing_util.Writable, header: bool) -> None:
163 out.write("""
164#endif /* {} */
165"""
166 .format(self._CPP_GUARDS))
167 super()._write_epilogue(out, header)
168
169
170class PSALoggingWrapperGenerator(PSAWrapperGenerator, c_wrapper_generator.Logging):
171 """Generate a C source file containing wrapper functions that log PSA Crypto API calls."""
172
173 def __init__(self, stream: str) -> None:
174 super().__init__()
175 self.set_stream(stream)
176
177 _PRINTF_TYPE_CAST = c_wrapper_generator.Logging._PRINTF_TYPE_CAST.copy()
178 _PRINTF_TYPE_CAST.update({
179 'mbedtls_svc_key_id_t': 'unsigned',
180 'psa_algorithm_t': 'unsigned',
181 'psa_drv_slot_number_t': 'unsigned long long',
182 'psa_key_derivation_step_t': 'int',
183 'psa_key_id_t': 'unsigned',
184 'psa_key_slot_number_t': 'unsigned long long',
185 'psa_key_lifetime_t': 'unsigned',
186 'psa_key_type_t': 'unsigned',
187 'psa_key_usage_flags_t': 'unsigned',
188 'psa_pake_role_t': 'int',
189 'psa_pake_step_t': 'int',
190 'psa_status_t': 'int',
191 })
192
193 def _printf_parameters(self, typ: str, var: str) -> Tuple[str, List[str]]:
194 if typ.startswith('const '):
195 typ = typ[6:]
196 if typ == 'uint8_t *':
197 # Skip buffers
198 return '', []
199 if typ.endswith('operation_t *'):
200 return '', []
201 if typ in self._PAKE_STUFF:
202 return '', []
203 if typ == 'psa_key_attributes_t *':
204 return (var + '={id=%u, lifetime=0x%08x, type=0x%08x, bits=%u, alg=%08x, usage=%08x}',
205 ['(unsigned) psa_get_key_{}({})'.format(field, var)
206 for field in ['id', 'lifetime', 'type', 'bits', 'algorithm', 'usage_flags']])
207 return super()._printf_parameters(typ, var)
208
209
210DEFAULT_C_OUTPUT_FILE_NAME = 'tests/src/psa_test_wrappers.c'
211DEFAULT_H_OUTPUT_FILE_NAME = 'tests/include/test/psa_test_wrappers.h'
212
213def main() -> None:
214 parser = argparse.ArgumentParser(description=globals()['__doc__'])
215 parser.add_argument('--log',
216 help='Stream to log to (default: no logging code)')
217 parser.add_argument('--output-c',
218 metavar='FILENAME',
219 default=DEFAULT_C_OUTPUT_FILE_NAME,
220 help=('Output .c file path (default: {}; skip .c output if empty)'
221 .format(DEFAULT_C_OUTPUT_FILE_NAME)))
222 parser.add_argument('--output-h',
223 metavar='FILENAME',
224 default=DEFAULT_H_OUTPUT_FILE_NAME,
225 help=('Output .h file path (default: {}; skip .h output if empty)'
226 .format(DEFAULT_H_OUTPUT_FILE_NAME)))
227 options = parser.parse_args()
228 if options.log:
229 generator = PSALoggingWrapperGenerator(options.log) #type: PSAWrapperGenerator
230 else:
231 generator = PSAWrapperGenerator()
232 generator.gather_data()
233 if options.output_h:
234 generator.write_h_file(options.output_h)
235 if options.output_c:
236 generator.write_c_file(options.output_c)
237
238if __name__ == '__main__':
239 main()