blob: f93ca55115e35c24af305497d59d07200d76eb2a [file] [log] [blame]
Gilles Peskine0156a152021-01-26 21:23:56 +01001"""Knowledge about cryptographic mechanisms implemented in Mbed TLS.
2
3This module is entirely based on the PSA API.
4"""
5
6# Copyright The Mbed TLS Contributors
7# SPDX-License-Identifier: Apache-2.0
8#
9# Licensed under the Apache License, Version 2.0 (the "License"); you may
10# not use this file except in compliance with the License.
11# You may obtain a copy of the License at
12#
13# http://www.apache.org/licenses/LICENSE-2.0
14#
15# Unless required by applicable law or agreed to in writing, software
16# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
17# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18# See the License for the specific language governing permissions and
19# limitations under the License.
20
Gilles Peskine0dacd4d2021-04-29 20:38:01 +020021import enum
Gilles Peskine0156a152021-01-26 21:23:56 +010022import re
gabor-mezei-arm5071a2e2021-06-29 11:17:54 +020023from typing import Dict, Iterable, Optional, Pattern, Tuple
Gilles Peskine0156a152021-01-26 21:23:56 +010024
Gilles Peskine6f6483f2021-01-27 12:43:24 +010025from mbedtls_dev.asymmetric_key_data import ASYMMETRIC_KEY_DATA
26
Gilles Peskine0dacd4d2021-04-29 20:38:01 +020027
Gilles Peskine39054332021-04-29 20:38:47 +020028BLOCK_CIPHERS = frozenset(['AES', 'ARIA', 'CAMELLIA', 'DES'])
Gilles Peskine0dacd4d2021-04-29 20:38:01 +020029BLOCK_MAC_MODES = frozenset(['CBC_MAC', 'CMAC'])
30BLOCK_CIPHER_MODES = frozenset([
31 'CTR', 'CFB', 'OFB', 'XTS', 'CCM_STAR_NO_TAG',
32 'ECB_NO_PADDING', 'CBC_NO_PADDING', 'CBC_PKCS7',
33])
34BLOCK_AEAD_MODES = frozenset(['CCM', 'GCM'])
35
Gilles Peskine39054332021-04-29 20:38:47 +020036class EllipticCurveCategory(enum.Enum):
37 """Categorization of elliptic curve families.
38
39 The category of a curve determines what algorithms are defined over it.
40 """
41
42 SHORT_WEIERSTRASS = 0
43 MONTGOMERY = 1
44 TWISTED_EDWARDS = 2
45
46 @staticmethod
47 def from_family(family: str) -> 'EllipticCurveCategory':
48 if family == 'PSA_ECC_FAMILY_MONTGOMERY':
49 return EllipticCurveCategory.MONTGOMERY
50 if family == 'PSA_ECC_FAMILY_TWISTED_EDWARDS':
51 return EllipticCurveCategory.TWISTED_EDWARDS
52 # Default to SW, which most curves belong to.
53 return EllipticCurveCategory.SHORT_WEIERSTRASS
54
Gilles Peskine0dacd4d2021-04-29 20:38:01 +020055
Gilles Peskine0156a152021-01-26 21:23:56 +010056class KeyType:
57 """Knowledge about a PSA key type."""
58
Gilles Peskine2a71b722021-04-29 20:19:57 +020059 def __init__(self, name: str, params: Optional[Iterable[str]] = None) -> None:
Gilles Peskine0156a152021-01-26 21:23:56 +010060 """Analyze a key type.
61
62 The key type must be specified in PSA syntax. In its simplest form,
Gilles Peskinefa3c69a2021-02-16 14:29:22 +010063 `name` is a string 'PSA_KEY_TYPE_xxx' which is the name of a PSA key
Gilles Peskine0156a152021-01-26 21:23:56 +010064 type macro. For key types that take arguments, the arguments can
65 be passed either through the optional argument `params` or by
Gilles Peskine0ba69a42021-04-12 13:41:52 +020066 passing an expression of the form 'PSA_KEY_TYPE_xxx(param1, ...)'
Gilles Peskinefa3c69a2021-02-16 14:29:22 +010067 in `name` as a string.
Gilles Peskine0156a152021-01-26 21:23:56 +010068 """
Gilles Peskined75adfc2021-02-17 18:04:28 +010069
Gilles Peskine0156a152021-01-26 21:23:56 +010070 self.name = name.strip()
Gilles Peskinefa3c69a2021-02-16 14:29:22 +010071 """The key type macro name (``PSA_KEY_TYPE_xxx``).
72
73 For key types constructed from a macro with arguments, this is the
74 name of the macro, and the arguments are in `self.params`.
75 """
Gilles Peskine0156a152021-01-26 21:23:56 +010076 if params is None:
77 if '(' in self.name:
78 m = re.match(r'(\w+)\s*\((.*)\)\Z', self.name)
79 assert m is not None
80 self.name = m.group(1)
Gilles Peskine0ba69a42021-04-12 13:41:52 +020081 params = m.group(2).split(',')
Gilles Peskinefa3c69a2021-02-16 14:29:22 +010082 self.params = (None if params is None else
83 [param.strip() for param in params])
84 """The parameters of the key type, if there are any.
85
86 None if the key type is a macro without arguments.
87 """
Gilles Peskined75adfc2021-02-17 18:04:28 +010088 assert re.match(r'PSA_KEY_TYPE_\w+\Z', self.name)
89
Gilles Peskine0156a152021-01-26 21:23:56 +010090 self.expression = self.name
Gilles Peskinefa3c69a2021-02-16 14:29:22 +010091 """A C expression whose value is the key type encoding."""
Gilles Peskine0156a152021-01-26 21:23:56 +010092 if self.params is not None:
93 self.expression += '(' + ', '.join(self.params) + ')'
Gilles Peskined75adfc2021-02-17 18:04:28 +010094
Gilles Peskine39054332021-04-29 20:38:47 +020095 m = re.match(r'PSA_KEY_TYPE_(\w+)', self.name)
96 assert m
97 self.head = re.sub(r'_(?:PUBLIC_KEY|KEY_PAIR)\Z', r'', m.group(1))
98 """The key type macro name, with common prefixes and suffixes stripped."""
99
Gilles Peskine0156a152021-01-26 21:23:56 +0100100 self.private_type = re.sub(r'_PUBLIC_KEY\Z', r'_KEY_PAIR', self.name)
Gilles Peskinefa3c69a2021-02-16 14:29:22 +0100101 """The key type macro name for the corresponding key pair type.
102
103 For everything other than a public key type, this is the same as
104 `self.name`.
105 """
Gilles Peskinedf639682021-01-26 21:25:34 +0100106
Gilles Peskinec2fc2412021-04-29 21:56:59 +0200107 def is_public(self) -> bool:
108 """Whether the key type is for public keys."""
109 return self.name.endswith('_PUBLIC_KEY')
110
Gilles Peskinedf639682021-01-26 21:25:34 +0100111 ECC_KEY_SIZES = {
112 'PSA_ECC_FAMILY_SECP_K1': (192, 224, 256),
Gilles Peskine0ac258e2021-01-27 13:11:59 +0100113 'PSA_ECC_FAMILY_SECP_R1': (225, 256, 384, 521),
Gilles Peskinedf639682021-01-26 21:25:34 +0100114 'PSA_ECC_FAMILY_SECP_R2': (160,),
115 'PSA_ECC_FAMILY_SECT_K1': (163, 233, 239, 283, 409, 571),
116 'PSA_ECC_FAMILY_SECT_R1': (163, 233, 283, 409, 571),
117 'PSA_ECC_FAMILY_SECT_R2': (163,),
118 'PSA_ECC_FAMILY_BRAINPOOL_P_R1': (160, 192, 224, 256, 320, 384, 512),
119 'PSA_ECC_FAMILY_MONTGOMERY': (255, 448),
Gilles Peskinea00abc62021-03-16 18:25:14 +0100120 'PSA_ECC_FAMILY_TWISTED_EDWARDS': (255, 448),
Gilles Peskinedf639682021-01-26 21:25:34 +0100121 }
122 KEY_TYPE_SIZES = {
123 'PSA_KEY_TYPE_AES': (128, 192, 256), # exhaustive
124 'PSA_KEY_TYPE_ARC4': (8, 128, 2048), # extremes + sensible
125 'PSA_KEY_TYPE_ARIA': (128, 192, 256), # exhaustive
126 'PSA_KEY_TYPE_CAMELLIA': (128, 192, 256), # exhaustive
127 'PSA_KEY_TYPE_CHACHA20': (256,), # exhaustive
128 'PSA_KEY_TYPE_DERIVE': (120, 128), # sample
129 'PSA_KEY_TYPE_DES': (64, 128, 192), # exhaustive
130 'PSA_KEY_TYPE_HMAC': (128, 160, 224, 256, 384, 512), # standard size for each supported hash
131 'PSA_KEY_TYPE_RAW_DATA': (8, 40, 128), # sample
132 'PSA_KEY_TYPE_RSA_KEY_PAIR': (1024, 1536), # small sample
133 }
134 def sizes_to_test(self) -> Tuple[int, ...]:
135 """Return a tuple of key sizes to test.
136
137 For key types that only allow a single size, or only a small set of
138 sizes, these are all the possible sizes. For key types that allow a
139 wide range of sizes, these are a representative sample of sizes,
140 excluding large sizes for which a typical resource-constrained platform
141 may run out of memory.
142 """
143 if self.private_type == 'PSA_KEY_TYPE_ECC_KEY_PAIR':
144 assert self.params is not None
145 return self.ECC_KEY_SIZES[self.params[0]]
146 return self.KEY_TYPE_SIZES[self.private_type]
Gilles Peskine397b0282021-01-26 21:26:26 +0100147
148 # "48657265006973206b6579a064617461"
149 DATA_BLOCK = b'Here\000is key\240data'
150 def key_material(self, bits: int) -> bytes:
151 """Return a byte string containing suitable key material with the given bit length.
152
153 Use the PSA export representation. The resulting byte string is one that
154 can be obtained with the following code:
155 ```
156 psa_set_key_type(&attributes, `self.expression`);
157 psa_set_key_bits(&attributes, `bits`);
158 psa_set_key_usage_flags(&attributes, PSA_KEY_USAGE_EXPORT);
159 psa_generate_key(&attributes, &id);
160 psa_export_key(id, `material`, ...);
161 ```
162 """
Gilles Peskine6f6483f2021-01-27 12:43:24 +0100163 if self.expression in ASYMMETRIC_KEY_DATA:
164 if bits not in ASYMMETRIC_KEY_DATA[self.expression]:
165 raise ValueError('No key data for {}-bit {}'
166 .format(bits, self.expression))
167 return ASYMMETRIC_KEY_DATA[self.expression][bits]
Gilles Peskine397b0282021-01-26 21:26:26 +0100168 if bits % 8 != 0:
Gilles Peskine6f6483f2021-01-27 12:43:24 +0100169 raise ValueError('Non-integer number of bytes: {} bits for {}'
170 .format(bits, self.expression))
Gilles Peskine397b0282021-01-26 21:26:26 +0100171 length = bits // 8
172 if self.name == 'PSA_KEY_TYPE_DES':
173 # "644573206b457901644573206b457902644573206b457904"
174 des3 = b'dEs kEy\001dEs kEy\002dEs kEy\004'
175 return des3[:length]
Gilles Peskine397b0282021-01-26 21:26:26 +0100176 return b''.join([self.DATA_BLOCK] * (length // len(self.DATA_BLOCK)) +
177 [self.DATA_BLOCK[:length % len(self.DATA_BLOCK)]])
gabor-mezei-arm805c7352021-06-28 20:02:11 +0200178
179 KEY_TYPE_FOR_SIGNATURE = {
gabor-mezei-arm5071a2e2021-06-29 11:17:54 +0200180 'PSA_KEY_USAGE_SIGN_HASH': re.compile('.*KEY_PAIR'),
181 'PSA_KEY_USAGE_VERIFY_HASH': re.compile('.*KEY.*')
182 } #type: Dict[str, Pattern]
gabor-mezei-arm805c7352021-06-28 20:02:11 +0200183 """Use a regexp to determine key types for which signature is possible
184 when using the actual usage flag.
185 """
186 def is_valid_for_signature(self, usage: str) -> bool:
187 """Determine if the key type is compatible with the specified
188 signitute type.
189
190 """
191 # This is just temporaly solution for the implicit usage flags.
192 return re.match(self.KEY_TYPE_FOR_SIGNATURE[usage], self.name) is not None
Gilles Peskine0dacd4d2021-04-29 20:38:01 +0200193
Gilles Peskine39054332021-04-29 20:38:47 +0200194 def can_do(self, alg: 'Algorithm') -> bool:
195 """Whether this key type can be used for operations with the given algorithm.
196
197 This function does not currently handle key derivation or PAKE.
198 """
199 #pylint: disable=too-many-return-statements
200 if alg.is_wildcard:
201 return False
202 if self.head == 'HMAC' and alg.head == 'HMAC':
203 return True
204 if self.head in BLOCK_CIPHERS and \
205 alg.head in frozenset.union(BLOCK_MAC_MODES,
206 BLOCK_CIPHER_MODES,
207 BLOCK_AEAD_MODES):
208 return True
209 if self.head == 'CHACHA20' and alg.head == 'CHACHA20_POLY1305':
210 return True
211 if self.head in {'ARC4', 'CHACHA20'} and \
212 alg.head == 'STREAM_CIPHER':
213 return True
214 if self.head == 'RSA' and alg.head.startswith('RSA_'):
215 return True
216 if self.head == 'ECC':
217 assert self.params is not None
218 eccc = EllipticCurveCategory.from_family(self.params[0])
219 if alg.head == 'ECDH' and \
220 eccc in {EllipticCurveCategory.SHORT_WEIERSTRASS,
221 EllipticCurveCategory.MONTGOMERY}:
222 return True
223 if alg.head == 'ECDSA' and \
224 eccc == EllipticCurveCategory.SHORT_WEIERSTRASS:
225 return True
226 if alg.head in {'PURE_EDDSA', 'EDDSA_PREHASH'} and \
227 eccc == EllipticCurveCategory.TWISTED_EDWARDS:
228 return True
229 return False
230
Gilles Peskine0dacd4d2021-04-29 20:38:01 +0200231
232class AlgorithmCategory(enum.Enum):
233 """PSA algorithm categories."""
234 # The numbers are aligned with the category bits in numerical values of
235 # algorithms.
236 HASH = 2
237 MAC = 3
238 CIPHER = 4
239 AEAD = 5
240 SIGN = 6
241 ASYMMETRIC_ENCRYPTION = 7
242 KEY_DERIVATION = 8
243 KEY_AGREEMENT = 9
244 PAKE = 10
245
246 def requires_key(self) -> bool:
Gilles Peskinec2fc2412021-04-29 21:56:59 +0200247 """Whether operations in this category are set up with a key."""
Gilles Peskine0dacd4d2021-04-29 20:38:01 +0200248 return self not in {self.HASH, self.KEY_DERIVATION}
249
Gilles Peskinec2fc2412021-04-29 21:56:59 +0200250 def is_asymmetric(self) -> bool:
251 """Whether operations in this category involve asymmetric keys."""
252 return self in {
253 self.SIGN,
254 self.ASYMMETRIC_ENCRYPTION,
255 self.KEY_AGREEMENT
256 }
257
Gilles Peskine0dacd4d2021-04-29 20:38:01 +0200258
259class AlgorithmNotRecognized(Exception):
260 def __init__(self, expr: str) -> None:
261 super().__init__('Algorithm not recognized: ' + expr)
262 self.expr = expr
263
264
265class Algorithm:
266 """Knowledge about a PSA algorithm."""
267
268 @staticmethod
269 def determine_base(expr: str) -> str:
270 """Return an expression for the "base" of the algorithm.
271
272 This strips off variants of algorithms such as MAC truncation.
273
274 This function does not attempt to detect invalid inputs.
275 """
276 m = re.match(r'PSA_ALG_(?:'
277 r'(?:TRUNCATED|AT_LEAST_THIS_LENGTH)_MAC|'
278 r'AEAD_WITH_(?:SHORTENED|AT_LEAST_THIS_LENGTH)_TAG'
279 r')\((.*),[^,]+\)\Z', expr)
280 if m:
281 expr = m.group(1)
282 return expr
283
284 @staticmethod
285 def determine_head(expr: str) -> str:
286 """Return the head of an algorithm expression.
287
288 The head is the first (outermost) constructor, without its PSA_ALG_
289 prefix, and with some normalization of similar algorithms.
290 """
291 m = re.match(r'PSA_ALG_(?:DETERMINISTIC_)?(\w+)', expr)
292 if not m:
293 raise AlgorithmNotRecognized(expr)
294 head = m.group(1)
295 if head == 'KEY_AGREEMENT':
296 m = re.match(r'PSA_ALG_KEY_AGREEMENT\s*\(\s*PSA_ALG_(\w+)', expr)
297 if not m:
298 raise AlgorithmNotRecognized(expr)
299 head = m.group(1)
300 head = re.sub(r'_ANY\Z', r'', head)
301 if re.match(r'ED[0-9]+PH\Z', head):
302 head = 'EDDSA_PREHASH'
303 return head
304
305 CATEGORY_FROM_HEAD = {
306 'SHA': AlgorithmCategory.HASH,
307 'SHAKE256_512': AlgorithmCategory.HASH,
308 'MD': AlgorithmCategory.HASH,
309 'RIPEMD': AlgorithmCategory.HASH,
310 'ANY_HASH': AlgorithmCategory.HASH,
311 'HMAC': AlgorithmCategory.MAC,
312 'STREAM_CIPHER': AlgorithmCategory.CIPHER,
313 'CHACHA20_POLY1305': AlgorithmCategory.AEAD,
314 'DSA': AlgorithmCategory.SIGN,
315 'ECDSA': AlgorithmCategory.SIGN,
316 'EDDSA': AlgorithmCategory.SIGN,
317 'PURE_EDDSA': AlgorithmCategory.SIGN,
318 'RSA_PSS': AlgorithmCategory.SIGN,
319 'RSA_PKCS1V15_SIGN': AlgorithmCategory.SIGN,
320 'RSA_PKCS1V15_CRYPT': AlgorithmCategory.ASYMMETRIC_ENCRYPTION,
321 'RSA_OAEP': AlgorithmCategory.ASYMMETRIC_ENCRYPTION,
322 'HKDF': AlgorithmCategory.KEY_DERIVATION,
323 'TLS12_PRF': AlgorithmCategory.KEY_DERIVATION,
324 'TLS12_PSK_TO_MS': AlgorithmCategory.KEY_DERIVATION,
325 'PBKDF': AlgorithmCategory.KEY_DERIVATION,
326 'ECDH': AlgorithmCategory.KEY_AGREEMENT,
327 'FFDH': AlgorithmCategory.KEY_AGREEMENT,
328 # KEY_AGREEMENT(...) is a key derivation with a key agreement component
329 'KEY_AGREEMENT': AlgorithmCategory.KEY_DERIVATION,
330 'JPAKE': AlgorithmCategory.PAKE,
331 }
332 for x in BLOCK_MAC_MODES:
333 CATEGORY_FROM_HEAD[x] = AlgorithmCategory.MAC
334 for x in BLOCK_CIPHER_MODES:
335 CATEGORY_FROM_HEAD[x] = AlgorithmCategory.CIPHER
336 for x in BLOCK_AEAD_MODES:
337 CATEGORY_FROM_HEAD[x] = AlgorithmCategory.AEAD
338
339 def determine_category(self, expr: str, head: str) -> AlgorithmCategory:
340 """Return the category of the given algorithm expression.
341
342 This function does not attempt to detect invalid inputs.
343 """
344 prefix = head
345 while prefix:
346 if prefix in self.CATEGORY_FROM_HEAD:
347 return self.CATEGORY_FROM_HEAD[prefix]
348 if re.match(r'.*[0-9]\Z', prefix):
349 prefix = re.sub(r'_*[0-9]+\Z', r'', prefix)
350 else:
351 prefix = re.sub(r'_*[^_]*\Z', r'', prefix)
352 raise AlgorithmNotRecognized(expr)
353
354 @staticmethod
355 def determine_wildcard(expr) -> bool:
356 """Whether the given algorithm expression is a wildcard.
357
358 This function does not attempt to detect invalid inputs.
359 """
360 if re.search(r'\bPSA_ALG_ANY_HASH\b', expr):
361 return True
362 if re.search(r'_AT_LEAST_', expr):
363 return True
364 return False
365
366 def __init__(self, expr: str) -> None:
367 """Analyze an algorithm value.
368
369 The algorithm must be expressed as a C expression containing only
370 calls to PSA algorithm constructor macros and numeric literals.
371
372 This class is only programmed to handle valid expressions. Invalid
373 expressions may result in exceptions or in nonsensical results.
374 """
375 self.expression = re.sub(r'\s+', r'', expr)
376 self.base_expression = self.determine_base(self.expression)
377 self.head = self.determine_head(self.base_expression)
378 self.category = self.determine_category(self.base_expression, self.head)
379 self.is_wildcard = self.determine_wildcard(self.expression)
Gilles Peskine23cb12e2021-04-29 20:54:40 +0200380
381 def is_key_agreement_with_derivation(self) -> bool:
382 """Whether this is a combined key agreement and key derivation algorithm."""
383 if self.category != AlgorithmCategory.KEY_AGREEMENT:
384 return False
385 m = re.match(r'PSA_ALG_KEY_AGREEMENT\(\w+,\s*(.*)\)\Z', self.expression)
386 if not m:
387 return False
388 kdf_alg = m.group(1)
389 # Assume kdf_alg is either a valid KDF or 0.
390 return not re.match(r'(?:0[Xx])?0+\s*\Z', kdf_alg)
391
392 def can_do(self, category: AlgorithmCategory) -> bool:
393 """Whether this algorithm fits the specified operation category."""
394 if category == self.category:
395 return True
396 if category == AlgorithmCategory.KEY_DERIVATION and \
397 self.is_key_agreement_with_derivation():
398 return True
399 return False