Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Root CA reading application |
| 3 | * |
| 4 | * Copyright The Mbed TLS Contributors |
| 5 | * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later |
| 6 | * |
| 7 | * This file is provided under the Apache License 2.0, or the |
| 8 | * GNU General Public License v2.0 or later. |
| 9 | * |
| 10 | * ********** |
| 11 | * Apache License 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 | * ********** |
| 26 | * |
| 27 | * ********** |
| 28 | * GNU General Public License v2.0 or later: |
| 29 | * |
| 30 | * This program is free software; you can redistribute it and/or modify |
| 31 | * it under the terms of the GNU General Public License as published by |
| 32 | * the Free Software Foundation; either version 2 of the License, or |
| 33 | * (at your option) any later version. |
| 34 | * |
| 35 | * This program is distributed in the hope that it will be useful, |
| 36 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 37 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 38 | * GNU General Public License for more details. |
| 39 | * |
| 40 | * You should have received a copy of the GNU General Public License along |
| 41 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 42 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 43 | * |
| 44 | * ********** |
| 45 | */ |
| 46 | |
| 47 | #if !defined(MBEDTLS_CONFIG_FILE) |
| 48 | #include "mbedtls/config.h" |
| 49 | #else |
| 50 | #include MBEDTLS_CONFIG_FILE |
| 51 | #endif |
| 52 | |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 53 | #include "mbedtls/platform.h" |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 54 | |
| 55 | #if !defined(MBEDTLS_X509_CRT_PARSE_C) || !defined(MBEDTLS_FS_IO) || \ |
| 56 | !defined(MBEDTLS_TIMING_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 57 | int main(void) |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 58 | { |
| 59 | mbedtls_printf("MBEDTLS_X509_CRT_PARSE_C and/or MBEDTLS_FS_IO and/or " |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 60 | "MBEDTLS_TIMING_C not defined.\n"); |
| 61 | mbedtls_exit(0); |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 62 | } |
| 63 | #else |
| 64 | |
| 65 | #include "mbedtls/error.h" |
| 66 | #include "mbedtls/timing.h" |
| 67 | #include "mbedtls/x509_crt.h" |
| 68 | |
| 69 | #include <stdio.h> |
| 70 | #include <stdlib.h> |
| 71 | #include <string.h> |
| 72 | |
| 73 | #define DFL_ITERATIONS 1 |
| 74 | #define DFL_PRIME_CACHE 1 |
| 75 | |
| 76 | #define USAGE \ |
Gilles Peskine | db92884 | 2021-07-30 13:00:10 +0200 | [diff] [blame] | 77 | "\n usage: load_roots param=<>... [--] FILE...\n" \ |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 78 | "\n acceptable parameters:\n" \ |
| 79 | " iterations=%%d Iteration count (not including cache priming); default: 1\n" \ |
| 80 | " prime=%%d Prime the disk read cache? Default: 1 (yes)\n" \ |
| 81 | "\n" |
| 82 | |
| 83 | |
| 84 | /* |
| 85 | * global options |
| 86 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 87 | struct options { |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 88 | const char **filenames; /* NULL-terminated list of file names */ |
| 89 | unsigned iterations; /* Number of iterations to time */ |
| 90 | int prime_cache; /* Prime the disk read cache? */ |
| 91 | } opt; |
| 92 | |
| 93 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 94 | int read_certificates(const char *const *filenames) |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 95 | { |
| 96 | mbedtls_x509_crt cas; |
| 97 | int ret = 0; |
| 98 | const char *const *cur; |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 99 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 100 | mbedtls_x509_crt_init(&cas); |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 101 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 102 | for (cur = filenames; *cur != NULL; cur++) { |
| 103 | ret = mbedtls_x509_crt_parse_file(&cas, *cur); |
| 104 | if (ret != 0) { |
Gilles Peskine | 3f0722c | 2021-08-06 14:37:01 +0200 | [diff] [blame] | 105 | #if defined(MBEDTLS_ERROR_C) || defined(MBEDTLS_ERROR_STRERROR_DUMMY) |
| 106 | char error_message[200]; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 107 | mbedtls_strerror(ret, error_message, sizeof(error_message)); |
| 108 | printf("\n%s: -0x%04x (%s)\n", |
| 109 | *cur, (unsigned) -ret, error_message); |
Gilles Peskine | 3f0722c | 2021-08-06 14:37:01 +0200 | [diff] [blame] | 110 | #else |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 111 | printf("\n%s: -0x%04x\n", |
| 112 | *cur, (unsigned) -ret); |
Gilles Peskine | 3f0722c | 2021-08-06 14:37:01 +0200 | [diff] [blame] | 113 | #endif |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 114 | goto exit; |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | exit: |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 119 | mbedtls_x509_crt_free(&cas); |
| 120 | return ret == 0; |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 121 | } |
| 122 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 123 | int main(int argc, char *argv[]) |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 124 | { |
| 125 | int exit_code = MBEDTLS_EXIT_FAILURE; |
| 126 | unsigned i, j; |
| 127 | struct mbedtls_timing_hr_time timer; |
| 128 | unsigned long ms; |
| 129 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 130 | if (argc <= 1) { |
| 131 | mbedtls_printf(USAGE); |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 132 | goto exit; |
| 133 | } |
| 134 | |
| 135 | opt.filenames = NULL; |
| 136 | opt.iterations = DFL_ITERATIONS; |
| 137 | opt.prime_cache = DFL_PRIME_CACHE; |
| 138 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 139 | for (i = 1; i < (unsigned) argc; i++) { |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 140 | char *p = argv[i]; |
| 141 | char *q = NULL; |
| 142 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 143 | if (strcmp(p, "--") == 0) { |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 144 | break; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 145 | } |
| 146 | if ((q = strchr(p, '=')) == NULL) { |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 147 | break; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 148 | } |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 149 | *q++ = '\0'; |
| 150 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 151 | for (j = 0; p + j < q; j++) { |
| 152 | if (argv[i][j] >= 'A' && argv[i][j] <= 'Z') { |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 153 | argv[i][j] |= 0x20; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 154 | } |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 155 | } |
| 156 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 157 | if (strcmp(p, "iterations") == 0) { |
| 158 | opt.iterations = atoi(q); |
| 159 | } else if (strcmp(p, "prime") == 0) { |
| 160 | opt.iterations = atoi(q) != 0; |
| 161 | } else { |
| 162 | mbedtls_printf("Unknown option: %s\n", p); |
| 163 | mbedtls_printf(USAGE); |
Gilles Peskine | 38d41b9 | 2021-07-30 13:01:52 +0200 | [diff] [blame] | 164 | goto exit; |
| 165 | } |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 166 | } |
| 167 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 168 | opt.filenames = (const char **) argv + i; |
| 169 | if (*opt.filenames == 0) { |
| 170 | mbedtls_printf("Missing list of certificate files to parse\n"); |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 171 | goto exit; |
| 172 | } |
| 173 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 174 | mbedtls_printf("Parsing %u certificates", argc - i); |
| 175 | if (opt.prime_cache) { |
| 176 | if (!read_certificates(opt.filenames)) { |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 177 | goto exit; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 178 | } |
| 179 | mbedtls_printf(" "); |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 180 | } |
| 181 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 182 | (void) mbedtls_timing_get_timer(&timer, 1); |
| 183 | for (i = 1; i <= opt.iterations; i++) { |
| 184 | if (!read_certificates(opt.filenames)) { |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 185 | goto exit; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 186 | } |
| 187 | mbedtls_printf("."); |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 188 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 189 | ms = mbedtls_timing_get_timer(&timer, 0); |
| 190 | mbedtls_printf("\n%u iterations -> %lu ms\n", opt.iterations, ms); |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 191 | exit_code = MBEDTLS_EXIT_SUCCESS; |
| 192 | |
| 193 | exit: |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 194 | mbedtls_exit(exit_code); |
Gilles Peskine | 82c0432 | 2021-07-26 20:20:54 +0200 | [diff] [blame] | 195 | } |
| 196 | #endif /* necessary configuration */ |