blob: d024e9822a6fcd16420b850113b710e18733a18f [file] [log] [blame]
Gilles Peskine2c1442e2021-07-26 20:20:54 +02001/*
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#include "mbedtls/build_info.h"
48
Gilles Peskine2c1442e2021-07-26 20:20:54 +020049#include "mbedtls/platform.h"
Gilles Peskine2c1442e2021-07-26 20:20:54 +020050
51#if !defined(MBEDTLS_X509_CRT_PARSE_C) || !defined(MBEDTLS_FS_IO) || \
52 !defined(MBEDTLS_TIMING_C)
Gilles Peskine449bd832023-01-11 14:50:10 +010053int main(void)
Gilles Peskine2c1442e2021-07-26 20:20:54 +020054{
55 mbedtls_printf("MBEDTLS_X509_CRT_PARSE_C and/or MBEDTLS_FS_IO and/or "
Gilles Peskine449bd832023-01-11 14:50:10 +010056 "MBEDTLS_TIMING_C not defined.\n");
57 mbedtls_exit(0);
Gilles Peskine2c1442e2021-07-26 20:20:54 +020058}
59#else
60
61#include "mbedtls/error.h"
62#include "mbedtls/timing.h"
63#include "mbedtls/x509_crt.h"
64
65#include <stdio.h>
66#include <stdlib.h>
67#include <string.h>
68
69#define DFL_ITERATIONS 1
70#define DFL_PRIME_CACHE 1
71
72#define USAGE \
Gilles Peskine618a70e2021-07-30 13:00:10 +020073 "\n usage: load_roots param=<>... [--] FILE...\n" \
Gilles Peskine2c1442e2021-07-26 20:20:54 +020074 "\n acceptable parameters:\n" \
75 " iterations=%%d Iteration count (not including cache priming); default: 1\n" \
76 " prime=%%d Prime the disk read cache? Default: 1 (yes)\n" \
77 "\n"
78
79
80/*
81 * global options
82 */
Gilles Peskine449bd832023-01-11 14:50:10 +010083struct options {
Gilles Peskine2c1442e2021-07-26 20:20:54 +020084 const char **filenames; /* NULL-terminated list of file names */
85 unsigned iterations; /* Number of iterations to time */
86 int prime_cache; /* Prime the disk read cache? */
87} opt;
88
89
Gilles Peskine449bd832023-01-11 14:50:10 +010090int read_certificates(const char *const *filenames)
Gilles Peskine2c1442e2021-07-26 20:20:54 +020091{
92 mbedtls_x509_crt cas;
93 int ret = 0;
94 const char *const *cur;
Gilles Peskine2c1442e2021-07-26 20:20:54 +020095
Gilles Peskine449bd832023-01-11 14:50:10 +010096 mbedtls_x509_crt_init(&cas);
Gilles Peskine2c1442e2021-07-26 20:20:54 +020097
Gilles Peskine449bd832023-01-11 14:50:10 +010098 for (cur = filenames; *cur != NULL; cur++) {
99 ret = mbedtls_x509_crt_parse_file(&cas, *cur);
100 if (ret != 0) {
Gilles Peskine680747b2021-08-06 14:37:01 +0200101#if defined(MBEDTLS_ERROR_C) || defined(MBEDTLS_ERROR_STRERROR_DUMMY)
102 char error_message[200];
Gilles Peskine449bd832023-01-11 14:50:10 +0100103 mbedtls_strerror(ret, error_message, sizeof(error_message));
104 printf("\n%s: -0x%04x (%s)\n",
105 *cur, (unsigned) -ret, error_message);
Gilles Peskine680747b2021-08-06 14:37:01 +0200106#else
Gilles Peskine449bd832023-01-11 14:50:10 +0100107 printf("\n%s: -0x%04x\n",
108 *cur, (unsigned) -ret);
Gilles Peskine680747b2021-08-06 14:37:01 +0200109#endif
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200110 goto exit;
111 }
112 }
113
114exit:
Gilles Peskine449bd832023-01-11 14:50:10 +0100115 mbedtls_x509_crt_free(&cas);
116 return ret == 0;
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200117}
118
Gilles Peskine449bd832023-01-11 14:50:10 +0100119int main(int argc, char *argv[])
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200120{
121 int exit_code = MBEDTLS_EXIT_FAILURE;
122 unsigned i, j;
123 struct mbedtls_timing_hr_time timer;
124 unsigned long ms;
125
Przemek Stekiel89c636e2023-04-14 09:26:39 +0200126#if defined(MBEDTLS_USE_PSA_CRYPTO)
127 psa_status_t status = psa_crypto_init();
128 if (status != PSA_SUCCESS) {
129 mbedtls_fprintf(stderr, "Failed to initialize PSA Crypto implementation: %d\n",
130 (int) status);
131 goto exit;
132 }
133#endif /* MBEDTLS_USE_PSA_CRYPTO */
134
Przemek Stekiela8c560a2023-04-19 10:15:26 +0200135 if (argc <= 1) {
136 mbedtls_printf(USAGE);
137 goto exit;
138 }
139
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200140 opt.filenames = NULL;
141 opt.iterations = DFL_ITERATIONS;
142 opt.prime_cache = DFL_PRIME_CACHE;
143
Gilles Peskine449bd832023-01-11 14:50:10 +0100144 for (i = 1; i < (unsigned) argc; i++) {
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200145 char *p = argv[i];
146 char *q = NULL;
147
Gilles Peskine449bd832023-01-11 14:50:10 +0100148 if (strcmp(p, "--") == 0) {
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200149 break;
Gilles Peskine449bd832023-01-11 14:50:10 +0100150 }
151 if ((q = strchr(p, '=')) == NULL) {
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200152 break;
Gilles Peskine449bd832023-01-11 14:50:10 +0100153 }
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200154 *q++ = '\0';
155
Gilles Peskine449bd832023-01-11 14:50:10 +0100156 for (j = 0; p + j < q; j++) {
157 if (argv[i][j] >= 'A' && argv[i][j] <= 'Z') {
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200158 argv[i][j] |= 0x20;
Gilles Peskine449bd832023-01-11 14:50:10 +0100159 }
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200160 }
161
Gilles Peskine449bd832023-01-11 14:50:10 +0100162 if (strcmp(p, "iterations") == 0) {
163 opt.iterations = atoi(q);
164 } else if (strcmp(p, "prime") == 0) {
165 opt.iterations = atoi(q) != 0;
166 } else {
167 mbedtls_printf("Unknown option: %s\n", p);
168 mbedtls_printf(USAGE);
Gilles Peskine9a2114c2021-07-30 13:01:52 +0200169 goto exit;
170 }
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200171 }
172
Gilles Peskine449bd832023-01-11 14:50:10 +0100173 opt.filenames = (const char **) argv + i;
174 if (*opt.filenames == 0) {
175 mbedtls_printf("Missing list of certificate files to parse\n");
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200176 goto exit;
177 }
178
Gilles Peskine449bd832023-01-11 14:50:10 +0100179 mbedtls_printf("Parsing %u certificates", argc - i);
180 if (opt.prime_cache) {
181 if (!read_certificates(opt.filenames)) {
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200182 goto exit;
Gilles Peskine449bd832023-01-11 14:50:10 +0100183 }
184 mbedtls_printf(" ");
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200185 }
186
Gilles Peskine449bd832023-01-11 14:50:10 +0100187 (void) mbedtls_timing_get_timer(&timer, 1);
188 for (i = 1; i <= opt.iterations; i++) {
189 if (!read_certificates(opt.filenames)) {
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200190 goto exit;
Gilles Peskine449bd832023-01-11 14:50:10 +0100191 }
192 mbedtls_printf(".");
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200193 }
Gilles Peskine449bd832023-01-11 14:50:10 +0100194 ms = mbedtls_timing_get_timer(&timer, 0);
195 mbedtls_printf("\n%u iterations -> %lu ms\n", opt.iterations, ms);
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200196 exit_code = MBEDTLS_EXIT_SUCCESS;
197
198exit:
Przemek Stekiel758aef62023-04-19 13:47:43 +0200199#if defined(MBEDTLS_USE_PSA_CRYPTO)
Przemek Stekiela8c560a2023-04-19 10:15:26 +0200200 mbedtls_psa_crypto_free();
Przemek Stekiel758aef62023-04-19 13:47:43 +0200201#endif /* MBEDTLS_USE_PSA_CRYPTO */
Gilles Peskine449bd832023-01-11 14:50:10 +0100202 mbedtls_exit(exit_code);
Gilles Peskine2c1442e2021-07-26 20:20:54 +0200203}
204#endif /* necessary configuration */