Gilles Peskine | 0156a15 | 2021-01-26 21:23:56 +0100 | [diff] [blame] | 1 | """Knowledge about cryptographic mechanisms implemented in Mbed TLS. |
| 2 | |
| 3 | This 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 Peskine | ee7554e | 2021-04-29 20:38:01 +0200 | [diff] [blame] | 21 | import enum |
Gilles Peskine | 0156a15 | 2021-01-26 21:23:56 +0100 | [diff] [blame] | 22 | import re |
gabor-mezei-arm | f73f896 | 2021-06-29 11:17:54 +0200 | [diff] [blame] | 23 | from typing import Dict, Iterable, Optional, Pattern, Tuple |
Gilles Peskine | 0156a15 | 2021-01-26 21:23:56 +0100 | [diff] [blame] | 24 | |
Gilles Peskine | 6f6483f | 2021-01-27 12:43:24 +0100 | [diff] [blame] | 25 | from mbedtls_dev.asymmetric_key_data import ASYMMETRIC_KEY_DATA |
| 26 | |
Gilles Peskine | ee7554e | 2021-04-29 20:38:01 +0200 | [diff] [blame] | 27 | |
Gilles Peskine | 8345d63 | 2021-04-29 20:38:47 +0200 | [diff] [blame] | 28 | BLOCK_CIPHERS = frozenset(['AES', 'ARIA', 'CAMELLIA', 'DES']) |
Gilles Peskine | ee7554e | 2021-04-29 20:38:01 +0200 | [diff] [blame] | 29 | BLOCK_MAC_MODES = frozenset(['CBC_MAC', 'CMAC']) |
| 30 | BLOCK_CIPHER_MODES = frozenset([ |
| 31 | 'CTR', 'CFB', 'OFB', 'XTS', 'CCM_STAR_NO_TAG', |
| 32 | 'ECB_NO_PADDING', 'CBC_NO_PADDING', 'CBC_PKCS7', |
| 33 | ]) |
| 34 | BLOCK_AEAD_MODES = frozenset(['CCM', 'GCM']) |
| 35 | |
Gilles Peskine | 8345d63 | 2021-04-29 20:38:47 +0200 | [diff] [blame] | 36 | class 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 Peskine | ee7554e | 2021-04-29 20:38:01 +0200 | [diff] [blame] | 55 | |
Gilles Peskine | 0156a15 | 2021-01-26 21:23:56 +0100 | [diff] [blame] | 56 | class KeyType: |
| 57 | """Knowledge about a PSA key type.""" |
| 58 | |
Gilles Peskine | b9dbb7f | 2021-04-29 20:19:57 +0200 | [diff] [blame] | 59 | def __init__(self, name: str, params: Optional[Iterable[str]] = None) -> None: |
Gilles Peskine | 0156a15 | 2021-01-26 21:23:56 +0100 | [diff] [blame] | 60 | """Analyze a key type. |
| 61 | |
| 62 | The key type must be specified in PSA syntax. In its simplest form, |
Gilles Peskine | fa3c69a | 2021-02-16 14:29:22 +0100 | [diff] [blame] | 63 | `name` is a string 'PSA_KEY_TYPE_xxx' which is the name of a PSA key |
Gilles Peskine | 0156a15 | 2021-01-26 21:23:56 +0100 | [diff] [blame] | 64 | type macro. For key types that take arguments, the arguments can |
| 65 | be passed either through the optional argument `params` or by |
Gilles Peskine | 4d0b089 | 2021-04-12 13:41:52 +0200 | [diff] [blame] | 66 | passing an expression of the form 'PSA_KEY_TYPE_xxx(param1, ...)' |
Gilles Peskine | fa3c69a | 2021-02-16 14:29:22 +0100 | [diff] [blame] | 67 | in `name` as a string. |
Gilles Peskine | 0156a15 | 2021-01-26 21:23:56 +0100 | [diff] [blame] | 68 | """ |
Gilles Peskine | d75adfc | 2021-02-17 18:04:28 +0100 | [diff] [blame] | 69 | |
Gilles Peskine | 0156a15 | 2021-01-26 21:23:56 +0100 | [diff] [blame] | 70 | self.name = name.strip() |
Gilles Peskine | fa3c69a | 2021-02-16 14:29:22 +0100 | [diff] [blame] | 71 | """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 Peskine | 0156a15 | 2021-01-26 21:23:56 +0100 | [diff] [blame] | 76 | 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 Peskine | 4d0b089 | 2021-04-12 13:41:52 +0200 | [diff] [blame] | 81 | params = m.group(2).split(',') |
Gilles Peskine | fa3c69a | 2021-02-16 14:29:22 +0100 | [diff] [blame] | 82 | 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 Peskine | d75adfc | 2021-02-17 18:04:28 +0100 | [diff] [blame] | 88 | assert re.match(r'PSA_KEY_TYPE_\w+\Z', self.name) |
| 89 | |
Gilles Peskine | 0156a15 | 2021-01-26 21:23:56 +0100 | [diff] [blame] | 90 | self.expression = self.name |
Gilles Peskine | fa3c69a | 2021-02-16 14:29:22 +0100 | [diff] [blame] | 91 | """A C expression whose value is the key type encoding.""" |
Gilles Peskine | 0156a15 | 2021-01-26 21:23:56 +0100 | [diff] [blame] | 92 | if self.params is not None: |
| 93 | self.expression += '(' + ', '.join(self.params) + ')' |
Gilles Peskine | d75adfc | 2021-02-17 18:04:28 +0100 | [diff] [blame] | 94 | |
Gilles Peskine | 8345d63 | 2021-04-29 20:38:47 +0200 | [diff] [blame] | 95 | 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 Peskine | 0156a15 | 2021-01-26 21:23:56 +0100 | [diff] [blame] | 100 | self.private_type = re.sub(r'_PUBLIC_KEY\Z', r'_KEY_PAIR', self.name) |
Gilles Peskine | fa3c69a | 2021-02-16 14:29:22 +0100 | [diff] [blame] | 101 | """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 Peskine | df63968 | 2021-01-26 21:25:34 +0100 | [diff] [blame] | 106 | |
| 107 | ECC_KEY_SIZES = { |
| 108 | 'PSA_ECC_FAMILY_SECP_K1': (192, 224, 256), |
Gilles Peskine | 0ac258e | 2021-01-27 13:11:59 +0100 | [diff] [blame] | 109 | 'PSA_ECC_FAMILY_SECP_R1': (225, 256, 384, 521), |
Gilles Peskine | df63968 | 2021-01-26 21:25:34 +0100 | [diff] [blame] | 110 | 'PSA_ECC_FAMILY_SECP_R2': (160,), |
| 111 | 'PSA_ECC_FAMILY_SECT_K1': (163, 233, 239, 283, 409, 571), |
| 112 | 'PSA_ECC_FAMILY_SECT_R1': (163, 233, 283, 409, 571), |
| 113 | 'PSA_ECC_FAMILY_SECT_R2': (163,), |
| 114 | 'PSA_ECC_FAMILY_BRAINPOOL_P_R1': (160, 192, 224, 256, 320, 384, 512), |
| 115 | 'PSA_ECC_FAMILY_MONTGOMERY': (255, 448), |
Gilles Peskine | a00abc6 | 2021-03-16 18:25:14 +0100 | [diff] [blame] | 116 | 'PSA_ECC_FAMILY_TWISTED_EDWARDS': (255, 448), |
Gilles Peskine | df63968 | 2021-01-26 21:25:34 +0100 | [diff] [blame] | 117 | } |
| 118 | KEY_TYPE_SIZES = { |
| 119 | 'PSA_KEY_TYPE_AES': (128, 192, 256), # exhaustive |
Gilles Peskine | df63968 | 2021-01-26 21:25:34 +0100 | [diff] [blame] | 120 | 'PSA_KEY_TYPE_ARIA': (128, 192, 256), # exhaustive |
| 121 | 'PSA_KEY_TYPE_CAMELLIA': (128, 192, 256), # exhaustive |
| 122 | 'PSA_KEY_TYPE_CHACHA20': (256,), # exhaustive |
| 123 | 'PSA_KEY_TYPE_DERIVE': (120, 128), # sample |
| 124 | 'PSA_KEY_TYPE_DES': (64, 128, 192), # exhaustive |
| 125 | 'PSA_KEY_TYPE_HMAC': (128, 160, 224, 256, 384, 512), # standard size for each supported hash |
Manuel Pégourié-Gonnard | b12de9f | 2021-05-03 11:02:56 +0200 | [diff] [blame] | 126 | 'PSA_KEY_TYPE_PASSWORD': (48, 168, 336), # sample |
| 127 | 'PSA_KEY_TYPE_PASSWORD_HASH': (128, 256), # sample |
| 128 | 'PSA_KEY_TYPE_PEPPER': (128, 256), # sample |
Gilles Peskine | df63968 | 2021-01-26 21:25:34 +0100 | [diff] [blame] | 129 | 'PSA_KEY_TYPE_RAW_DATA': (8, 40, 128), # sample |
| 130 | 'PSA_KEY_TYPE_RSA_KEY_PAIR': (1024, 1536), # small sample |
| 131 | } |
| 132 | def sizes_to_test(self) -> Tuple[int, ...]: |
| 133 | """Return a tuple of key sizes to test. |
| 134 | |
| 135 | For key types that only allow a single size, or only a small set of |
| 136 | sizes, these are all the possible sizes. For key types that allow a |
| 137 | wide range of sizes, these are a representative sample of sizes, |
| 138 | excluding large sizes for which a typical resource-constrained platform |
| 139 | may run out of memory. |
| 140 | """ |
| 141 | if self.private_type == 'PSA_KEY_TYPE_ECC_KEY_PAIR': |
| 142 | assert self.params is not None |
| 143 | return self.ECC_KEY_SIZES[self.params[0]] |
| 144 | return self.KEY_TYPE_SIZES[self.private_type] |
Gilles Peskine | 397b028 | 2021-01-26 21:26:26 +0100 | [diff] [blame] | 145 | |
| 146 | # "48657265006973206b6579a064617461" |
| 147 | DATA_BLOCK = b'Here\000is key\240data' |
| 148 | def key_material(self, bits: int) -> bytes: |
| 149 | """Return a byte string containing suitable key material with the given bit length. |
| 150 | |
| 151 | Use the PSA export representation. The resulting byte string is one that |
| 152 | can be obtained with the following code: |
| 153 | ``` |
| 154 | psa_set_key_type(&attributes, `self.expression`); |
| 155 | psa_set_key_bits(&attributes, `bits`); |
| 156 | psa_set_key_usage_flags(&attributes, PSA_KEY_USAGE_EXPORT); |
| 157 | psa_generate_key(&attributes, &id); |
| 158 | psa_export_key(id, `material`, ...); |
| 159 | ``` |
| 160 | """ |
Gilles Peskine | 6f6483f | 2021-01-27 12:43:24 +0100 | [diff] [blame] | 161 | if self.expression in ASYMMETRIC_KEY_DATA: |
| 162 | if bits not in ASYMMETRIC_KEY_DATA[self.expression]: |
| 163 | raise ValueError('No key data for {}-bit {}' |
| 164 | .format(bits, self.expression)) |
| 165 | return ASYMMETRIC_KEY_DATA[self.expression][bits] |
Gilles Peskine | 397b028 | 2021-01-26 21:26:26 +0100 | [diff] [blame] | 166 | if bits % 8 != 0: |
Gilles Peskine | 6f6483f | 2021-01-27 12:43:24 +0100 | [diff] [blame] | 167 | raise ValueError('Non-integer number of bytes: {} bits for {}' |
| 168 | .format(bits, self.expression)) |
Gilles Peskine | 397b028 | 2021-01-26 21:26:26 +0100 | [diff] [blame] | 169 | length = bits // 8 |
| 170 | if self.name == 'PSA_KEY_TYPE_DES': |
| 171 | # "644573206b457901644573206b457902644573206b457904" |
| 172 | des3 = b'dEs kEy\001dEs kEy\002dEs kEy\004' |
| 173 | return des3[:length] |
Gilles Peskine | 397b028 | 2021-01-26 21:26:26 +0100 | [diff] [blame] | 174 | return b''.join([self.DATA_BLOCK] * (length // len(self.DATA_BLOCK)) + |
| 175 | [self.DATA_BLOCK[:length % len(self.DATA_BLOCK)]]) |
gabor-mezei-arm | 2784bfe | 2021-06-28 20:02:11 +0200 | [diff] [blame] | 176 | |
| 177 | KEY_TYPE_FOR_SIGNATURE = { |
gabor-mezei-arm | f73f896 | 2021-06-29 11:17:54 +0200 | [diff] [blame] | 178 | 'PSA_KEY_USAGE_SIGN_HASH': re.compile('.*KEY_PAIR'), |
| 179 | 'PSA_KEY_USAGE_VERIFY_HASH': re.compile('.*KEY.*') |
| 180 | } #type: Dict[str, Pattern] |
gabor-mezei-arm | 2784bfe | 2021-06-28 20:02:11 +0200 | [diff] [blame] | 181 | """Use a regexp to determine key types for which signature is possible |
| 182 | when using the actual usage flag. |
| 183 | """ |
| 184 | def is_valid_for_signature(self, usage: str) -> bool: |
| 185 | """Determine if the key type is compatible with the specified |
| 186 | signitute type. |
| 187 | |
| 188 | """ |
| 189 | # This is just temporaly solution for the implicit usage flags. |
| 190 | return re.match(self.KEY_TYPE_FOR_SIGNATURE[usage], self.name) is not None |
Gilles Peskine | ee7554e | 2021-04-29 20:38:01 +0200 | [diff] [blame] | 191 | |
Gilles Peskine | 8345d63 | 2021-04-29 20:38:47 +0200 | [diff] [blame] | 192 | def can_do(self, alg: 'Algorithm') -> bool: |
| 193 | """Whether this key type can be used for operations with the given algorithm. |
| 194 | |
| 195 | This function does not currently handle key derivation or PAKE. |
| 196 | """ |
| 197 | #pylint: disable=too-many-return-statements |
| 198 | if alg.is_wildcard: |
| 199 | return False |
| 200 | if self.head == 'HMAC' and alg.head == 'HMAC': |
| 201 | return True |
| 202 | if self.head in BLOCK_CIPHERS and \ |
| 203 | alg.head in frozenset.union(BLOCK_MAC_MODES, |
| 204 | BLOCK_CIPHER_MODES, |
| 205 | BLOCK_AEAD_MODES): |
| 206 | return True |
| 207 | if self.head == 'CHACHA20' and alg.head == 'CHACHA20_POLY1305': |
| 208 | return True |
| 209 | if self.head in {'ARC4', 'CHACHA20'} and \ |
| 210 | alg.head == 'STREAM_CIPHER': |
| 211 | return True |
| 212 | if self.head == 'RSA' and alg.head.startswith('RSA_'): |
| 213 | return True |
| 214 | if self.head == 'ECC': |
| 215 | assert self.params is not None |
| 216 | eccc = EllipticCurveCategory.from_family(self.params[0]) |
| 217 | if alg.head == 'ECDH' and \ |
| 218 | eccc in {EllipticCurveCategory.SHORT_WEIERSTRASS, |
| 219 | EllipticCurveCategory.MONTGOMERY}: |
| 220 | return True |
| 221 | if alg.head == 'ECDSA' and \ |
| 222 | eccc == EllipticCurveCategory.SHORT_WEIERSTRASS: |
| 223 | return True |
| 224 | if alg.head in {'PURE_EDDSA', 'EDDSA_PREHASH'} and \ |
| 225 | eccc == EllipticCurveCategory.TWISTED_EDWARDS: |
| 226 | return True |
| 227 | return False |
| 228 | |
Gilles Peskine | ee7554e | 2021-04-29 20:38:01 +0200 | [diff] [blame] | 229 | |
| 230 | class AlgorithmCategory(enum.Enum): |
| 231 | """PSA algorithm categories.""" |
| 232 | # The numbers are aligned with the category bits in numerical values of |
| 233 | # algorithms. |
| 234 | HASH = 2 |
| 235 | MAC = 3 |
| 236 | CIPHER = 4 |
| 237 | AEAD = 5 |
| 238 | SIGN = 6 |
| 239 | ASYMMETRIC_ENCRYPTION = 7 |
| 240 | KEY_DERIVATION = 8 |
| 241 | KEY_AGREEMENT = 9 |
| 242 | PAKE = 10 |
| 243 | |
| 244 | def requires_key(self) -> bool: |
| 245 | return self not in {self.HASH, self.KEY_DERIVATION} |
| 246 | |
| 247 | |
| 248 | class AlgorithmNotRecognized(Exception): |
| 249 | def __init__(self, expr: str) -> None: |
| 250 | super().__init__('Algorithm not recognized: ' + expr) |
| 251 | self.expr = expr |
| 252 | |
| 253 | |
| 254 | class Algorithm: |
| 255 | """Knowledge about a PSA algorithm.""" |
| 256 | |
| 257 | @staticmethod |
| 258 | def determine_base(expr: str) -> str: |
| 259 | """Return an expression for the "base" of the algorithm. |
| 260 | |
| 261 | This strips off variants of algorithms such as MAC truncation. |
| 262 | |
| 263 | This function does not attempt to detect invalid inputs. |
| 264 | """ |
| 265 | m = re.match(r'PSA_ALG_(?:' |
| 266 | r'(?:TRUNCATED|AT_LEAST_THIS_LENGTH)_MAC|' |
| 267 | r'AEAD_WITH_(?:SHORTENED|AT_LEAST_THIS_LENGTH)_TAG' |
| 268 | r')\((.*),[^,]+\)\Z', expr) |
| 269 | if m: |
| 270 | expr = m.group(1) |
| 271 | return expr |
| 272 | |
| 273 | @staticmethod |
| 274 | def determine_head(expr: str) -> str: |
| 275 | """Return the head of an algorithm expression. |
| 276 | |
| 277 | The head is the first (outermost) constructor, without its PSA_ALG_ |
| 278 | prefix, and with some normalization of similar algorithms. |
| 279 | """ |
| 280 | m = re.match(r'PSA_ALG_(?:DETERMINISTIC_)?(\w+)', expr) |
| 281 | if not m: |
| 282 | raise AlgorithmNotRecognized(expr) |
| 283 | head = m.group(1) |
| 284 | if head == 'KEY_AGREEMENT': |
| 285 | m = re.match(r'PSA_ALG_KEY_AGREEMENT\s*\(\s*PSA_ALG_(\w+)', expr) |
| 286 | if not m: |
| 287 | raise AlgorithmNotRecognized(expr) |
| 288 | head = m.group(1) |
| 289 | head = re.sub(r'_ANY\Z', r'', head) |
| 290 | if re.match(r'ED[0-9]+PH\Z', head): |
| 291 | head = 'EDDSA_PREHASH' |
| 292 | return head |
| 293 | |
| 294 | CATEGORY_FROM_HEAD = { |
| 295 | 'SHA': AlgorithmCategory.HASH, |
| 296 | 'SHAKE256_512': AlgorithmCategory.HASH, |
| 297 | 'MD': AlgorithmCategory.HASH, |
| 298 | 'RIPEMD': AlgorithmCategory.HASH, |
| 299 | 'ANY_HASH': AlgorithmCategory.HASH, |
| 300 | 'HMAC': AlgorithmCategory.MAC, |
| 301 | 'STREAM_CIPHER': AlgorithmCategory.CIPHER, |
| 302 | 'CHACHA20_POLY1305': AlgorithmCategory.AEAD, |
| 303 | 'DSA': AlgorithmCategory.SIGN, |
| 304 | 'ECDSA': AlgorithmCategory.SIGN, |
| 305 | 'EDDSA': AlgorithmCategory.SIGN, |
| 306 | 'PURE_EDDSA': AlgorithmCategory.SIGN, |
| 307 | 'RSA_PSS': AlgorithmCategory.SIGN, |
| 308 | 'RSA_PKCS1V15_SIGN': AlgorithmCategory.SIGN, |
| 309 | 'RSA_PKCS1V15_CRYPT': AlgorithmCategory.ASYMMETRIC_ENCRYPTION, |
| 310 | 'RSA_OAEP': AlgorithmCategory.ASYMMETRIC_ENCRYPTION, |
| 311 | 'HKDF': AlgorithmCategory.KEY_DERIVATION, |
| 312 | 'TLS12_PRF': AlgorithmCategory.KEY_DERIVATION, |
| 313 | 'TLS12_PSK_TO_MS': AlgorithmCategory.KEY_DERIVATION, |
| 314 | 'PBKDF': AlgorithmCategory.KEY_DERIVATION, |
| 315 | 'ECDH': AlgorithmCategory.KEY_AGREEMENT, |
| 316 | 'FFDH': AlgorithmCategory.KEY_AGREEMENT, |
| 317 | # KEY_AGREEMENT(...) is a key derivation with a key agreement component |
| 318 | 'KEY_AGREEMENT': AlgorithmCategory.KEY_DERIVATION, |
| 319 | 'JPAKE': AlgorithmCategory.PAKE, |
| 320 | } |
| 321 | for x in BLOCK_MAC_MODES: |
| 322 | CATEGORY_FROM_HEAD[x] = AlgorithmCategory.MAC |
| 323 | for x in BLOCK_CIPHER_MODES: |
| 324 | CATEGORY_FROM_HEAD[x] = AlgorithmCategory.CIPHER |
| 325 | for x in BLOCK_AEAD_MODES: |
| 326 | CATEGORY_FROM_HEAD[x] = AlgorithmCategory.AEAD |
| 327 | |
| 328 | def determine_category(self, expr: str, head: str) -> AlgorithmCategory: |
| 329 | """Return the category of the given algorithm expression. |
| 330 | |
| 331 | This function does not attempt to detect invalid inputs. |
| 332 | """ |
| 333 | prefix = head |
| 334 | while prefix: |
| 335 | if prefix in self.CATEGORY_FROM_HEAD: |
| 336 | return self.CATEGORY_FROM_HEAD[prefix] |
| 337 | if re.match(r'.*[0-9]\Z', prefix): |
| 338 | prefix = re.sub(r'_*[0-9]+\Z', r'', prefix) |
| 339 | else: |
| 340 | prefix = re.sub(r'_*[^_]*\Z', r'', prefix) |
| 341 | raise AlgorithmNotRecognized(expr) |
| 342 | |
| 343 | @staticmethod |
| 344 | def determine_wildcard(expr) -> bool: |
| 345 | """Whether the given algorithm expression is a wildcard. |
| 346 | |
| 347 | This function does not attempt to detect invalid inputs. |
| 348 | """ |
| 349 | if re.search(r'\bPSA_ALG_ANY_HASH\b', expr): |
| 350 | return True |
| 351 | if re.search(r'_AT_LEAST_', expr): |
| 352 | return True |
| 353 | return False |
| 354 | |
| 355 | def __init__(self, expr: str) -> None: |
| 356 | """Analyze an algorithm value. |
| 357 | |
| 358 | The algorithm must be expressed as a C expression containing only |
| 359 | calls to PSA algorithm constructor macros and numeric literals. |
| 360 | |
| 361 | This class is only programmed to handle valid expressions. Invalid |
| 362 | expressions may result in exceptions or in nonsensical results. |
| 363 | """ |
| 364 | self.expression = re.sub(r'\s+', r'', expr) |
| 365 | self.base_expression = self.determine_base(self.expression) |
| 366 | self.head = self.determine_head(self.base_expression) |
| 367 | self.category = self.determine_category(self.base_expression, self.head) |
| 368 | self.is_wildcard = self.determine_wildcard(self.expression) |
Gilles Peskine | a401386 | 2021-04-29 20:54:40 +0200 | [diff] [blame^] | 369 | |
| 370 | def is_key_agreement_with_derivation(self) -> bool: |
| 371 | """Whether this is a combined key agreement and key derivation algorithm.""" |
| 372 | if self.category != AlgorithmCategory.KEY_AGREEMENT: |
| 373 | return False |
| 374 | m = re.match(r'PSA_ALG_KEY_AGREEMENT\(\w+,\s*(.*)\)\Z', self.expression) |
| 375 | if not m: |
| 376 | return False |
| 377 | kdf_alg = m.group(1) |
| 378 | # Assume kdf_alg is either a valid KDF or 0. |
| 379 | return not re.match(r'(?:0[Xx])?0+\s*\Z', kdf_alg) |
| 380 | |
| 381 | def can_do(self, category: AlgorithmCategory) -> bool: |
| 382 | """Whether this algorithm fits the specified operation category.""" |
| 383 | if category == self.category: |
| 384 | return True |
| 385 | if category == AlgorithmCategory.KEY_DERIVATION and \ |
| 386 | self.is_key_agreement_with_derivation(): |
| 387 | return True |
| 388 | return False |