Steffen Jaeckel | 26dd993 | 2021-07-08 15:57:33 +0200 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* Copyright (C) 2020 Steffen Jaeckel <jaeckel-floss@eyet-services.de> */ |
| 3 | |
| 4 | #include <common.h> |
| 5 | #include <crypt.h> |
| 6 | #include "crypt-port.h" |
| 7 | |
| 8 | typedef void (*crypt_fn)(const char *, size_t, const char *, size_t, uint8_t *, |
| 9 | size_t, void *, size_t); |
| 10 | |
| 11 | const unsigned char ascii64[65] = |
| 12 | "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; |
| 13 | |
| 14 | static void equals_constant_time(const void *a_, const void *b_, size_t len, |
| 15 | int *equal) |
| 16 | { |
| 17 | u8 ret = 0; |
| 18 | const u8 *a = a_, *b = b_; |
| 19 | int i; |
| 20 | |
| 21 | for (i = 0; i < len; i++) |
| 22 | ret |= a[i] ^ b[i]; |
| 23 | |
| 24 | ret |= ret >> 4; |
| 25 | ret |= ret >> 2; |
| 26 | ret |= ret >> 1; |
| 27 | ret &= 1; |
| 28 | |
| 29 | *equal = ret ^ 1; |
| 30 | } |
| 31 | |
| 32 | void crypt_compare(const char *should, const char *passphrase, int *equal) |
| 33 | { |
| 34 | u8 output[CRYPT_OUTPUT_SIZE], scratch[ALG_SPECIFIC_SIZE]; |
| 35 | size_t n; |
| 36 | struct { |
| 37 | const char *prefix; |
| 38 | crypt_fn crypt; |
| 39 | } crypt_algos[] = { |
| 40 | #if defined(CONFIG_CRYPT_PW_SHA256) |
| 41 | { "$5$", crypt_sha256crypt_rn }, |
| 42 | #endif |
| 43 | #if defined(CONFIG_CRYPT_PW_SHA512) |
| 44 | { "$6$", crypt_sha512crypt_rn }, |
| 45 | #endif |
| 46 | { NULL, NULL } |
| 47 | }; |
| 48 | |
| 49 | *equal = 0; |
| 50 | |
| 51 | for (n = 0; n < ARRAY_SIZE(crypt_algos); ++n) { |
| 52 | if (!crypt_algos[n].prefix) |
| 53 | continue; |
| 54 | if (strncmp(should, crypt_algos[n].prefix, 3) == 0) |
| 55 | break; |
| 56 | } |
| 57 | |
| 58 | if (n >= ARRAY_SIZE(crypt_algos)) |
| 59 | return; |
| 60 | |
| 61 | crypt_algos[n].crypt(passphrase, strlen(passphrase), should, 0, output, |
| 62 | sizeof(output), scratch, sizeof(scratch)); |
| 63 | |
| 64 | /* early return on error, nothing really happened inside the crypt() function */ |
| 65 | if (errno == ERANGE || errno == EINVAL) |
| 66 | return; |
| 67 | |
| 68 | equals_constant_time(should, output, strlen((const char *)output), |
| 69 | equal); |
| 70 | |
| 71 | memset(scratch, 0, sizeof(scratch)); |
| 72 | memset(output, 0, sizeof(output)); |
| 73 | } |