Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Certificate generation and signing |
| 3 | * |
Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 4 | * Copyright The Mbed TLS Contributors |
Dave Rodgman | 16799db | 2023-11-02 19:47:20 +0000 | [diff] [blame] | 5 | * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
Felix Conway | 998760a | 2025-03-24 11:37:33 +0000 | [diff] [blame^] | 8 | #define MBEDTLS_DECLARE_PRIVATE_IDENTIFIERS |
| 9 | |
Bence Szépkúti | c662b36 | 2021-05-27 11:25:03 +0200 | [diff] [blame] | 10 | #include "mbedtls/build_info.h" |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 11 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 12 | #include "mbedtls/platform.h" |
Andrzej Kurek | 0af3248 | 2023-04-07 03:10:28 -0400 | [diff] [blame] | 13 | /* md.h is included this early since MD_CAN_XXX macros are defined there. */ |
Andrzej Kurek | 1b75e5f | 2023-04-04 09:55:06 -0400 | [diff] [blame] | 14 | #include "mbedtls/md.h" |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 15 | |
Simon Butcher | 203a693 | 2016-10-07 15:00:17 +0100 | [diff] [blame] | 16 | #if !defined(MBEDTLS_X509_CRT_WRITE_C) || \ |
| 17 | !defined(MBEDTLS_X509_CRT_PARSE_C) || !defined(MBEDTLS_FS_IO) || \ |
| 18 | !defined(MBEDTLS_ENTROPY_C) || !defined(MBEDTLS_CTR_DRBG_C) || \ |
Elena Uziunaite | 0916cd7 | 2024-05-23 17:01:07 +0100 | [diff] [blame] | 19 | !defined(MBEDTLS_ERROR_C) || !defined(PSA_WANT_ALG_SHA_256) || \ |
Valerio Setti | e351176 | 2024-01-22 16:28:23 +0100 | [diff] [blame] | 20 | !defined(MBEDTLS_PEM_WRITE_C) || !defined(MBEDTLS_MD_C) |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 21 | int main(void) |
Manuel Pégourié-Gonnard | 8d649c6 | 2015-03-31 15:10:03 +0200 | [diff] [blame] | 22 | { |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 23 | mbedtls_printf("MBEDTLS_X509_CRT_WRITE_C and/or MBEDTLS_X509_CRT_PARSE_C and/or " |
Elena Uziunaite | 0916cd7 | 2024-05-23 17:01:07 +0100 | [diff] [blame] | 24 | "MBEDTLS_FS_IO and/or PSA_WANT_ALG_SHA_256 and/or " |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 25 | "MBEDTLS_ENTROPY_C and/or MBEDTLS_CTR_DRBG_C and/or " |
| 26 | "MBEDTLS_ERROR_C not defined.\n"); |
| 27 | mbedtls_exit(0); |
Manuel Pégourié-Gonnard | 8d649c6 | 2015-03-31 15:10:03 +0200 | [diff] [blame] | 28 | } |
| 29 | #else |
| 30 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 31 | #include "mbedtls/x509_crt.h" |
| 32 | #include "mbedtls/x509_csr.h" |
Nicholas Wilson | 8e5bdfb | 2015-09-09 19:03:34 +0100 | [diff] [blame] | 33 | #include "mbedtls/oid.h" |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 34 | #include "mbedtls/entropy.h" |
| 35 | #include "mbedtls/ctr_drbg.h" |
| 36 | #include "mbedtls/error.h" |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 37 | #include "test/helpers.h" |
Manuel Pégourié-Gonnard | 7831b0c | 2013-09-20 12:29:56 +0200 | [diff] [blame] | 38 | |
Rich Evans | 18b78c7 | 2015-02-11 14:06:19 +0000 | [diff] [blame] | 39 | #include <stdio.h> |
| 40 | #include <stdlib.h> |
| 41 | #include <string.h> |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 42 | #include <errno.h> |
Rich Evans | 18b78c7 | 2015-02-11 14:06:19 +0000 | [diff] [blame] | 43 | |
Nicholas Wilson | 8e5bdfb | 2015-09-09 19:03:34 +0100 | [diff] [blame] | 44 | #define SET_OID(x, oid) \ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 45 | do { x.len = MBEDTLS_OID_SIZE(oid); x.p = (unsigned char *) oid; } while (0) |
Nicholas Wilson | 8e5bdfb | 2015-09-09 19:03:34 +0100 | [diff] [blame] | 46 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 47 | #if defined(MBEDTLS_X509_CSR_PARSE_C) |
Rich Evans | 18b78c7 | 2015-02-11 14:06:19 +0000 | [diff] [blame] | 48 | #define USAGE_CSR \ |
Hanno Becker | 81535d0 | 2017-09-13 15:39:59 +0100 | [diff] [blame] | 49 | " request_file=%%s default: (empty)\n" \ |
| 50 | " If request_file is specified, subject_key,\n" \ |
| 51 | " subject_pwd and subject_name are ignored!\n" |
Rich Evans | 18b78c7 | 2015-02-11 14:06:19 +0000 | [diff] [blame] | 52 | #else |
| 53 | #define USAGE_CSR "" |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 54 | #endif /* MBEDTLS_X509_CSR_PARSE_C */ |
Rich Evans | 18b78c7 | 2015-02-11 14:06:19 +0000 | [diff] [blame] | 55 | |
Dave Rodgman | 66e0550 | 2022-10-27 16:29:38 +0100 | [diff] [blame] | 56 | #define FORMAT_PEM 0 |
| 57 | #define FORMAT_DER 1 |
| 58 | |
Paul Bakker | 1014e95 | 2013-09-09 13:59:42 +0200 | [diff] [blame] | 59 | #define DFL_ISSUER_CRT "" |
Paul Bakker | e2673fb | 2013-09-09 15:52:07 +0200 | [diff] [blame] | 60 | #define DFL_REQUEST_FILE "" |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 61 | #define DFL_SUBJECT_KEY "subject.key" |
| 62 | #define DFL_ISSUER_KEY "ca.key" |
| 63 | #define DFL_SUBJECT_PWD "" |
| 64 | #define DFL_ISSUER_PWD "" |
| 65 | #define DFL_OUTPUT_FILENAME "cert.crt" |
Manuel Pégourié-Gonnard | 9169921 | 2015-01-22 16:26:39 +0000 | [diff] [blame] | 66 | #define DFL_SUBJECT_NAME "CN=Cert,O=mbed TLS,C=UK" |
| 67 | #define DFL_ISSUER_NAME "CN=CA,O=mbed TLS,C=UK" |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 68 | #define DFL_NOT_BEFORE "20010101000000" |
| 69 | #define DFL_NOT_AFTER "20301231235959" |
| 70 | #define DFL_SERIAL "1" |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 71 | #define DFL_SERIAL_HEX "1" |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 72 | #define DFL_EXT_SUBJECTALTNAME "" |
Paul Bakker | b2d7f23 | 2013-09-09 16:24:18 +0200 | [diff] [blame] | 73 | #define DFL_SELFSIGN 0 |
Paul Bakker | 15162a0 | 2013-09-06 19:27:21 +0200 | [diff] [blame] | 74 | #define DFL_IS_CA 0 |
| 75 | #define DFL_MAX_PATHLEN -1 |
Nicholas Wilson | 99a96b1 | 2015-09-10 18:28:01 +0100 | [diff] [blame] | 76 | #define DFL_SIG_ALG MBEDTLS_MD_SHA256 |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 77 | #define DFL_KEY_USAGE 0 |
Dave Rodgman | 1577c54 | 2022-09-09 10:22:15 +0100 | [diff] [blame] | 78 | #define DFL_EXT_KEY_USAGE NULL |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 79 | #define DFL_NS_CERT_TYPE 0 |
Hanno Becker | 6c13d37 | 2017-09-13 12:49:22 +0100 | [diff] [blame] | 80 | #define DFL_VERSION 3 |
| 81 | #define DFL_AUTH_IDENT 1 |
| 82 | #define DFL_SUBJ_IDENT 1 |
| 83 | #define DFL_CONSTRAINTS 1 |
| 84 | #define DFL_DIGEST MBEDTLS_MD_SHA256 |
Dave Rodgman | 66e0550 | 2022-10-27 16:29:38 +0100 | [diff] [blame] | 85 | #define DFL_FORMAT FORMAT_PEM |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 86 | |
Rich Evans | 18b78c7 | 2015-02-11 14:06:19 +0000 | [diff] [blame] | 87 | #define USAGE \ |
| 88 | "\n usage: cert_write param=<>...\n" \ |
| 89 | "\n acceptable parameters:\n" \ |
| 90 | USAGE_CSR \ |
Hanno Becker | 81535d0 | 2017-09-13 15:39:59 +0100 | [diff] [blame] | 91 | " subject_key=%%s default: subject.key\n" \ |
| 92 | " subject_pwd=%%s default: (empty)\n" \ |
| 93 | " subject_name=%%s default: CN=Cert,O=mbed TLS,C=UK\n" \ |
Rich Evans | 18b78c7 | 2015-02-11 14:06:19 +0000 | [diff] [blame] | 94 | "\n" \ |
Hanno Becker | 81535d0 | 2017-09-13 15:39:59 +0100 | [diff] [blame] | 95 | " issuer_crt=%%s default: (empty)\n" \ |
| 96 | " If issuer_crt is specified, issuer_name is\n" \ |
| 97 | " ignored!\n" \ |
| 98 | " issuer_name=%%s default: CN=CA,O=mbed TLS,C=UK\n" \ |
Rich Evans | 18b78c7 | 2015-02-11 14:06:19 +0000 | [diff] [blame] | 99 | "\n" \ |
Hanno Becker | 81535d0 | 2017-09-13 15:39:59 +0100 | [diff] [blame] | 100 | " selfsign=%%d default: 0 (false)\n" \ |
| 101 | " If selfsign is enabled, issuer_name and\n" \ |
| 102 | " issuer_key are required (issuer_crt and\n" \ |
| 103 | " subject_* are ignored\n" \ |
| 104 | " issuer_key=%%s default: ca.key\n" \ |
| 105 | " issuer_pwd=%%s default: (empty)\n" \ |
| 106 | " output_file=%%s default: cert.crt\n" \ |
| 107 | " serial=%%s default: 1\n" \ |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 108 | " In decimal format; it can be used as\n" \ |
| 109 | " alternative to serial_hex, but it's\n" \ |
| 110 | " limited in max length to\n" \ |
| 111 | " unsigned long long int\n" \ |
| 112 | " serial_hex=%%s default: 1\n" \ |
| 113 | " In hex format; it can be used as\n" \ |
| 114 | " alternative to serial\n" \ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 115 | " not_before=%%s default: 20010101000000\n" \ |
| 116 | " not_after=%%s default: 20301231235959\n" \ |
Hanno Becker | 81535d0 | 2017-09-13 15:39:59 +0100 | [diff] [blame] | 117 | " is_ca=%%d default: 0 (disabled)\n" \ |
| 118 | " max_pathlen=%%d default: -1 (none)\n" \ |
| 119 | " md=%%s default: SHA256\n" \ |
Gilles Peskine | 18292fe | 2020-08-21 20:42:32 +0200 | [diff] [blame] | 120 | " Supported values (if enabled):\n" \ |
TRodziewicz | 10e8cf5 | 2021-05-31 17:58:57 +0200 | [diff] [blame] | 121 | " MD5, RIPEMD160, SHA1,\n" \ |
Gilles Peskine | 18292fe | 2020-08-21 20:42:32 +0200 | [diff] [blame] | 122 | " SHA224, SHA256, SHA384, SHA512\n" \ |
Hanno Becker | 81535d0 | 2017-09-13 15:39:59 +0100 | [diff] [blame] | 123 | " version=%%d default: 3\n" \ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 124 | " Possible values: 1, 2, 3\n" \ |
Hanno Becker | 81535d0 | 2017-09-13 15:39:59 +0100 | [diff] [blame] | 125 | " subject_identifier=%%s default: 1\n" \ |
| 126 | " Possible values: 0, 1\n" \ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 127 | " (Considered for v3 only)\n" \ |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 128 | " san=%%s default: (none)\n" \ |
Andrzej Kurek | f70f460 | 2023-04-24 18:39:53 -0400 | [diff] [blame] | 129 | " Semicolon-separated-list of values:\n" \ |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 130 | " DNS:value\n" \ |
| 131 | " URI:value\n" \ |
| 132 | " RFC822:value\n" \ |
| 133 | " IP:value (Only IPv4 is supported)\n" \ |
Andrzej Kurek | 446e53d | 2023-04-25 02:21:07 -0400 | [diff] [blame] | 134 | " DN:list of comma separated key=value pairs\n" \ |
Hanno Becker | 81535d0 | 2017-09-13 15:39:59 +0100 | [diff] [blame] | 135 | " authority_identifier=%%s default: 1\n" \ |
| 136 | " Possible values: 0, 1\n" \ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 137 | " (Considered for v3 only)\n" \ |
Hanno Becker | 81535d0 | 2017-09-13 15:39:59 +0100 | [diff] [blame] | 138 | " basic_constraints=%%d default: 1\n" \ |
| 139 | " Possible values: 0, 1\n" \ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 140 | " (Considered for v3 only)\n" \ |
Hanno Becker | 81535d0 | 2017-09-13 15:39:59 +0100 | [diff] [blame] | 141 | " key_usage=%%s default: (empty)\n" \ |
| 142 | " Comma-separated-list of values:\n" \ |
| 143 | " digital_signature\n" \ |
| 144 | " non_repudiation\n" \ |
| 145 | " key_encipherment\n" \ |
| 146 | " data_encipherment\n" \ |
| 147 | " key_agreement\n" \ |
| 148 | " key_cert_sign\n" \ |
| 149 | " crl_sign\n" \ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 150 | " (Considered for v3 only)\n" \ |
Nicholas Wilson | 8e5bdfb | 2015-09-09 19:03:34 +0100 | [diff] [blame] | 151 | " ext_key_usage=%%s default: (empty)\n" \ |
| 152 | " Comma-separated-list of values:\n" \ |
| 153 | " serverAuth\n" \ |
| 154 | " clientAuth\n" \ |
| 155 | " codeSigning\n" \ |
| 156 | " emailProtection\n" \ |
| 157 | " timeStamping\n" \ |
| 158 | " OCSPSigning\n" \ |
Hanno Becker | 81535d0 | 2017-09-13 15:39:59 +0100 | [diff] [blame] | 159 | " ns_cert_type=%%s default: (empty)\n" \ |
| 160 | " Comma-separated-list of values:\n" \ |
| 161 | " ssl_client\n" \ |
| 162 | " ssl_server\n" \ |
| 163 | " email\n" \ |
| 164 | " object_signing\n" \ |
| 165 | " ssl_ca\n" \ |
| 166 | " email_ca\n" \ |
| 167 | " object_signing_ca\n" \ |
Dave Rodgman | 66e0550 | 2022-10-27 16:29:38 +0100 | [diff] [blame] | 168 | " format=pem|der default: pem\n" \ |
Rich Evans | 18b78c7 | 2015-02-11 14:06:19 +0000 | [diff] [blame] | 169 | "\n" |
Manuel Pégourié-Gonnard | 6c5abfa | 2015-02-13 14:12:07 +0000 | [diff] [blame] | 170 | |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 171 | typedef enum { |
| 172 | SERIAL_FRMT_UNSPEC, |
| 173 | SERIAL_FRMT_DEC, |
| 174 | SERIAL_FRMT_HEX |
| 175 | } serial_format_t; |
Simon Butcher | 63cb97e | 2018-12-06 17:43:31 +0000 | [diff] [blame] | 176 | |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 177 | /* |
| 178 | * global options |
| 179 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 180 | struct options { |
Paul Bakker | 8fc30b1 | 2013-11-25 13:29:43 +0100 | [diff] [blame] | 181 | const char *issuer_crt; /* filename of the issuer certificate */ |
| 182 | const char *request_file; /* filename of the certificate request */ |
| 183 | const char *subject_key; /* filename of the subject key file */ |
| 184 | const char *issuer_key; /* filename of the issuer key file */ |
| 185 | const char *subject_pwd; /* password for the subject key file */ |
| 186 | const char *issuer_pwd; /* password for the issuer key file */ |
Hanno Becker | 25d882b | 2018-08-23 15:26:06 +0100 | [diff] [blame] | 187 | const char *output_file; /* where to store the constructed CRT */ |
Paul Bakker | 8fc30b1 | 2013-11-25 13:29:43 +0100 | [diff] [blame] | 188 | const char *subject_name; /* subject name for certificate */ |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 189 | mbedtls_x509_san_list *san_list; /* subjectAltName for certificate */ |
Paul Bakker | 8fc30b1 | 2013-11-25 13:29:43 +0100 | [diff] [blame] | 190 | const char *issuer_name; /* issuer name for certificate */ |
| 191 | const char *not_before; /* validity period not before */ |
| 192 | const char *not_after; /* validity period not after */ |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 193 | const char *serial; /* serial number string (decimal) */ |
| 194 | const char *serial_hex; /* serial number string (hex) */ |
Paul Bakker | b2d7f23 | 2013-09-09 16:24:18 +0200 | [diff] [blame] | 195 | int selfsign; /* selfsign the certificate */ |
Paul Bakker | 15162a0 | 2013-09-06 19:27:21 +0200 | [diff] [blame] | 196 | int is_ca; /* is a CA certificate */ |
| 197 | int max_pathlen; /* maximum CA path length */ |
Hanno Becker | e1b1d0a | 2017-09-22 15:35:16 +0100 | [diff] [blame] | 198 | int authority_identifier; /* add authority identifier to CRT */ |
| 199 | int subject_identifier; /* add subject identifier to CRT */ |
Hanno Becker | 6c13d37 | 2017-09-13 12:49:22 +0100 | [diff] [blame] | 200 | int basic_constraints; /* add basic constraints ext to CRT */ |
| 201 | int version; /* CRT version */ |
| 202 | mbedtls_md_type_t md; /* Hash used for signing */ |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 203 | unsigned char key_usage; /* key usage flags */ |
Nicholas Wilson | 8e5bdfb | 2015-09-09 19:03:34 +0100 | [diff] [blame] | 204 | mbedtls_asn1_sequence *ext_key_usage; /* extended key usages */ |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 205 | unsigned char ns_cert_type; /* NS cert type */ |
Dave Rodgman | 66e0550 | 2022-10-27 16:29:38 +0100 | [diff] [blame] | 206 | int format; /* format */ |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 207 | } opt; |
| 208 | |
Michael Schuster | 8db8d61 | 2024-06-01 21:15:02 +0200 | [diff] [blame] | 209 | static int write_certificate(mbedtls_x509write_cert *crt, const char *output_file, |
Michael Schuster | 0420093 | 2024-06-12 00:05:25 +0200 | [diff] [blame] | 210 | int (*f_rng)(void *, unsigned char *, size_t), |
| 211 | void *p_rng) |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 212 | { |
| 213 | int ret; |
| 214 | FILE *f; |
| 215 | unsigned char output_buf[4096]; |
Dave Rodgman | 66e0550 | 2022-10-27 16:29:38 +0100 | [diff] [blame] | 216 | unsigned char *output_start; |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 217 | size_t len = 0; |
| 218 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 219 | memset(output_buf, 0, 4096); |
| 220 | if (opt.format == FORMAT_DER) { |
| 221 | ret = mbedtls_x509write_crt_der(crt, output_buf, 4096, |
| 222 | f_rng, p_rng); |
| 223 | if (ret < 0) { |
| 224 | return ret; |
| 225 | } |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 226 | |
Dave Rodgman | 66e0550 | 2022-10-27 16:29:38 +0100 | [diff] [blame] | 227 | len = ret; |
| 228 | output_start = output_buf + 4096 - len; |
| 229 | } else { |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 230 | ret = mbedtls_x509write_crt_pem(crt, output_buf, 4096, |
| 231 | f_rng, p_rng); |
| 232 | if (ret < 0) { |
| 233 | return ret; |
| 234 | } |
Dave Rodgman | 66e0550 | 2022-10-27 16:29:38 +0100 | [diff] [blame] | 235 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 236 | len = strlen((char *) output_buf); |
Dave Rodgman | 66e0550 | 2022-10-27 16:29:38 +0100 | [diff] [blame] | 237 | output_start = output_buf; |
| 238 | } |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 239 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 240 | if ((f = fopen(output_file, "w")) == NULL) { |
| 241 | return -1; |
Paul Bakker | 0c22610 | 2014-04-17 16:02:36 +0200 | [diff] [blame] | 242 | } |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 243 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 244 | if (fwrite(output_start, 1, len, f) != len) { |
| 245 | fclose(f); |
| 246 | return -1; |
| 247 | } |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 248 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 249 | fclose(f); |
| 250 | |
| 251 | return 0; |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 252 | } |
| 253 | |
Michael Schuster | 8db8d61 | 2024-06-01 21:15:02 +0200 | [diff] [blame] | 254 | static int parse_serial_decimal_format(unsigned char *obuf, size_t obufmax, |
Michael Schuster | 0420093 | 2024-06-12 00:05:25 +0200 | [diff] [blame] | 255 | const char *ibuf, size_t *len) |
Valerio Setti | acf12fb | 2023-01-09 17:19:26 +0100 | [diff] [blame] | 256 | { |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 257 | unsigned long long int dec; |
| 258 | unsigned int remaining_bytes = sizeof(dec); |
| 259 | unsigned char *p = obuf; |
Valerio Setti | acf12fb | 2023-01-09 17:19:26 +0100 | [diff] [blame] | 260 | unsigned char val; |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 261 | char *end_ptr = NULL; |
Valerio Setti | acf12fb | 2023-01-09 17:19:26 +0100 | [diff] [blame] | 262 | |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 263 | errno = 0; |
| 264 | dec = strtoull(ibuf, &end_ptr, 10); |
| 265 | |
| 266 | if ((errno != 0) || (end_ptr == ibuf)) { |
Valerio Setti | acf12fb | 2023-01-09 17:19:26 +0100 | [diff] [blame] | 267 | return -1; |
| 268 | } |
| 269 | |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 270 | *len = 0; |
Valerio Setti | acf12fb | 2023-01-09 17:19:26 +0100 | [diff] [blame] | 271 | |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 272 | while (remaining_bytes > 0) { |
| 273 | if (obufmax < (*len + 1)) { |
Valerio Setti | acf12fb | 2023-01-09 17:19:26 +0100 | [diff] [blame] | 274 | return -1; |
| 275 | } |
| 276 | |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 277 | val = (dec >> ((remaining_bytes - 1) * 8)) & 0xFF; |
| 278 | |
| 279 | /* Skip leading zeros */ |
Valerio Setti | 48fdbb3 | 2023-01-12 15:31:35 +0100 | [diff] [blame] | 280 | if ((val != 0) || (*len != 0)) { |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 281 | *p = val; |
| 282 | (*len)++; |
| 283 | p++; |
| 284 | } |
| 285 | |
| 286 | remaining_bytes--; |
Valerio Setti | acf12fb | 2023-01-09 17:19:26 +0100 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | return 0; |
| 290 | } |
| 291 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 292 | int main(int argc, char *argv[]) |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 293 | { |
Andres Amaya Garcia | f9a54d3 | 2018-04-29 21:42:45 +0100 | [diff] [blame] | 294 | int ret = 1; |
| 295 | int exit_code = MBEDTLS_EXIT_FAILURE; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 296 | mbedtls_x509_crt issuer_crt; |
| 297 | mbedtls_pk_context loaded_issuer_key, loaded_subject_key; |
| 298 | mbedtls_pk_context *issuer_key = &loaded_issuer_key, |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 299 | *subject_key = &loaded_subject_key; |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 300 | char buf[1024]; |
Jonathan Leroy | bbc75d9 | 2015-10-10 21:58:07 +0200 | [diff] [blame] | 301 | char issuer_name[256]; |
Paul Bakker | c97f9f6 | 2013-11-30 15:13:02 +0100 | [diff] [blame] | 302 | int i; |
Andrzej Kurek | 5eebfb8 | 2023-04-27 07:50:56 -0400 | [diff] [blame] | 303 | char *p, *q, *r; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 304 | #if defined(MBEDTLS_X509_CSR_PARSE_C) |
Jonathan Leroy | bbc75d9 | 2015-10-10 21:58:07 +0200 | [diff] [blame] | 305 | char subject_name[256]; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 306 | mbedtls_x509_csr csr; |
Paul Bakker | 7fc7fa6 | 2013-09-17 14:44:00 +0200 | [diff] [blame] | 307 | #endif |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 308 | mbedtls_x509write_cert crt; |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 309 | serial_format_t serial_frmt = SERIAL_FRMT_UNSPEC; |
Valerio Setti | acf12fb | 2023-01-09 17:19:26 +0100 | [diff] [blame] | 310 | unsigned char serial[MBEDTLS_X509_RFC5280_MAX_SERIAL_LEN]; |
| 311 | size_t serial_len; |
Nicholas Wilson | 8e5bdfb | 2015-09-09 19:03:34 +0100 | [diff] [blame] | 312 | mbedtls_asn1_sequence *ext_key_usage; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 313 | mbedtls_entropy_context entropy; |
| 314 | mbedtls_ctr_drbg_context ctr_drbg; |
Manuel Pégourié-Gonnard | 31e5940 | 2013-09-12 05:59:05 +0200 | [diff] [blame] | 315 | const char *pers = "crt example app"; |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 316 | mbedtls_x509_san_list *cur, *prev; |
Andrzej Kurek | 5da1d75 | 2023-04-05 08:30:59 -0400 | [diff] [blame] | 317 | mbedtls_asn1_named_data *ext_san_dirname = NULL; |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 318 | uint8_t ip[4] = { 0 }; |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 319 | /* |
| 320 | * Set to sane values |
| 321 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 322 | mbedtls_x509write_crt_init(&crt); |
| 323 | mbedtls_pk_init(&loaded_issuer_key); |
| 324 | mbedtls_pk_init(&loaded_subject_key); |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 325 | mbedtls_ctr_drbg_init(&ctr_drbg); |
| 326 | mbedtls_entropy_init(&entropy); |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 327 | #if defined(MBEDTLS_X509_CSR_PARSE_C) |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 328 | mbedtls_x509_csr_init(&csr); |
Paul Bakker | 7fc7fa6 | 2013-09-17 14:44:00 +0200 | [diff] [blame] | 329 | #endif |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 330 | mbedtls_x509_crt_init(&issuer_crt); |
| 331 | memset(buf, 0, sizeof(buf)); |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 332 | memset(serial, 0, sizeof(serial)); |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 333 | |
Przemek Stekiel | a0a1c1e | 2023-04-17 11:10:05 +0200 | [diff] [blame] | 334 | #if defined(MBEDTLS_USE_PSA_CRYPTO) |
| 335 | psa_status_t status = psa_crypto_init(); |
| 336 | if (status != PSA_SUCCESS) { |
| 337 | mbedtls_fprintf(stderr, "Failed to initialize PSA Crypto implementation: %d\n", |
| 338 | (int) status); |
| 339 | goto exit; |
| 340 | } |
| 341 | #endif /* MBEDTLS_USE_PSA_CRYPTO */ |
| 342 | |
Aditya Deshpande | 644a5c0 | 2023-01-30 15:58:50 +0000 | [diff] [blame] | 343 | if (argc < 2) { |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 344 | usage: |
| 345 | mbedtls_printf(USAGE); |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 346 | goto exit; |
| 347 | } |
| 348 | |
Paul Bakker | 1014e95 | 2013-09-09 13:59:42 +0200 | [diff] [blame] | 349 | opt.issuer_crt = DFL_ISSUER_CRT; |
Paul Bakker | e2673fb | 2013-09-09 15:52:07 +0200 | [diff] [blame] | 350 | opt.request_file = DFL_REQUEST_FILE; |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 351 | opt.subject_key = DFL_SUBJECT_KEY; |
| 352 | opt.issuer_key = DFL_ISSUER_KEY; |
| 353 | opt.subject_pwd = DFL_SUBJECT_PWD; |
| 354 | opt.issuer_pwd = DFL_ISSUER_PWD; |
| 355 | opt.output_file = DFL_OUTPUT_FILENAME; |
| 356 | opt.subject_name = DFL_SUBJECT_NAME; |
| 357 | opt.issuer_name = DFL_ISSUER_NAME; |
| 358 | opt.not_before = DFL_NOT_BEFORE; |
| 359 | opt.not_after = DFL_NOT_AFTER; |
| 360 | opt.serial = DFL_SERIAL; |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 361 | opt.serial_hex = DFL_SERIAL_HEX; |
Paul Bakker | b2d7f23 | 2013-09-09 16:24:18 +0200 | [diff] [blame] | 362 | opt.selfsign = DFL_SELFSIGN; |
Paul Bakker | 15162a0 | 2013-09-06 19:27:21 +0200 | [diff] [blame] | 363 | opt.is_ca = DFL_IS_CA; |
| 364 | opt.max_pathlen = DFL_MAX_PATHLEN; |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 365 | opt.key_usage = DFL_KEY_USAGE; |
Nicholas Wilson | 8e5bdfb | 2015-09-09 19:03:34 +0100 | [diff] [blame] | 366 | opt.ext_key_usage = DFL_EXT_KEY_USAGE; |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 367 | opt.ns_cert_type = DFL_NS_CERT_TYPE; |
Hanno Becker | 38eff43 | 2017-09-22 15:38:20 +0100 | [diff] [blame] | 368 | opt.version = DFL_VERSION - 1; |
Hanno Becker | 6c13d37 | 2017-09-13 12:49:22 +0100 | [diff] [blame] | 369 | opt.md = DFL_DIGEST; |
| 370 | opt.subject_identifier = DFL_SUBJ_IDENT; |
| 371 | opt.authority_identifier = DFL_AUTH_IDENT; |
| 372 | opt.basic_constraints = DFL_CONSTRAINTS; |
Dave Rodgman | 66e0550 | 2022-10-27 16:29:38 +0100 | [diff] [blame] | 373 | opt.format = DFL_FORMAT; |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 374 | opt.san_list = NULL; |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 375 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 376 | for (i = 1; i < argc; i++) { |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 377 | |
| 378 | p = argv[i]; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 379 | if ((q = strchr(p, '=')) == NULL) { |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 380 | goto usage; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 381 | } |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 382 | *q++ = '\0'; |
| 383 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 384 | if (strcmp(p, "request_file") == 0) { |
Paul Bakker | e2673fb | 2013-09-09 15:52:07 +0200 | [diff] [blame] | 385 | opt.request_file = q; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 386 | } else if (strcmp(p, "subject_key") == 0) { |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 387 | opt.subject_key = q; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 388 | } else if (strcmp(p, "issuer_key") == 0) { |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 389 | opt.issuer_key = q; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 390 | } else if (strcmp(p, "subject_pwd") == 0) { |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 391 | opt.subject_pwd = q; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 392 | } else if (strcmp(p, "issuer_pwd") == 0) { |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 393 | opt.issuer_pwd = q; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 394 | } else if (strcmp(p, "issuer_crt") == 0) { |
Paul Bakker | 1014e95 | 2013-09-09 13:59:42 +0200 | [diff] [blame] | 395 | opt.issuer_crt = q; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 396 | } else if (strcmp(p, "output_file") == 0) { |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 397 | opt.output_file = q; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 398 | } else if (strcmp(p, "subject_name") == 0) { |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 399 | opt.subject_name = q; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 400 | } else if (strcmp(p, "issuer_name") == 0) { |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 401 | opt.issuer_name = q; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 402 | } else if (strcmp(p, "not_before") == 0) { |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 403 | opt.not_before = q; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 404 | } else if (strcmp(p, "not_after") == 0) { |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 405 | opt.not_after = q; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 406 | } else if (strcmp(p, "serial") == 0) { |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 407 | if (serial_frmt != SERIAL_FRMT_UNSPEC) { |
| 408 | mbedtls_printf("Invalid attempt to set the serial more than once\n"); |
| 409 | goto usage; |
| 410 | } |
| 411 | serial_frmt = SERIAL_FRMT_DEC; |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 412 | opt.serial = q; |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 413 | } else if (strcmp(p, "serial_hex") == 0) { |
| 414 | if (serial_frmt != SERIAL_FRMT_UNSPEC) { |
| 415 | mbedtls_printf("Invalid attempt to set the serial more than once\n"); |
| 416 | goto usage; |
| 417 | } |
| 418 | serial_frmt = SERIAL_FRMT_HEX; |
| 419 | opt.serial_hex = q; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 420 | } else if (strcmp(p, "authority_identifier") == 0) { |
| 421 | opt.authority_identifier = atoi(q); |
| 422 | if (opt.authority_identifier != 0 && |
| 423 | opt.authority_identifier != 1) { |
| 424 | mbedtls_printf("Invalid argument for option %s\n", p); |
Hanno Becker | 6c13d37 | 2017-09-13 12:49:22 +0100 | [diff] [blame] | 425 | goto usage; |
| 426 | } |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 427 | } else if (strcmp(p, "subject_identifier") == 0) { |
| 428 | opt.subject_identifier = atoi(q); |
| 429 | if (opt.subject_identifier != 0 && |
| 430 | opt.subject_identifier != 1) { |
| 431 | mbedtls_printf("Invalid argument for option %s\n", p); |
Hanno Becker | 6c13d37 | 2017-09-13 12:49:22 +0100 | [diff] [blame] | 432 | goto usage; |
| 433 | } |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 434 | } else if (strcmp(p, "basic_constraints") == 0) { |
| 435 | opt.basic_constraints = atoi(q); |
| 436 | if (opt.basic_constraints != 0 && |
| 437 | opt.basic_constraints != 1) { |
| 438 | mbedtls_printf("Invalid argument for option %s\n", p); |
Hanno Becker | 6c13d37 | 2017-09-13 12:49:22 +0100 | [diff] [blame] | 439 | goto usage; |
| 440 | } |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 441 | } else if (strcmp(p, "md") == 0) { |
Gilles Peskine | 18292fe | 2020-08-21 20:42:32 +0200 | [diff] [blame] | 442 | const mbedtls_md_info_t *md_info = |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 443 | mbedtls_md_info_from_string(q); |
| 444 | if (md_info == NULL) { |
| 445 | mbedtls_printf("Invalid argument for option %s\n", p); |
Hanno Becker | 6c13d37 | 2017-09-13 12:49:22 +0100 | [diff] [blame] | 446 | goto usage; |
Hanno Becker | 17c3276 | 2017-10-03 14:56:04 +0100 | [diff] [blame] | 447 | } |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 448 | opt.md = mbedtls_md_get_type(md_info); |
| 449 | } else if (strcmp(p, "version") == 0) { |
| 450 | opt.version = atoi(q); |
| 451 | if (opt.version < 1 || opt.version > 3) { |
| 452 | mbedtls_printf("Invalid argument for option %s\n", p); |
Hanno Becker | 6c13d37 | 2017-09-13 12:49:22 +0100 | [diff] [blame] | 453 | goto usage; |
Hanno Becker | 17c3276 | 2017-10-03 14:56:04 +0100 | [diff] [blame] | 454 | } |
Hanno Becker | 38eff43 | 2017-09-22 15:38:20 +0100 | [diff] [blame] | 455 | opt.version--; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 456 | } else if (strcmp(p, "selfsign") == 0) { |
| 457 | opt.selfsign = atoi(q); |
| 458 | if (opt.selfsign < 0 || opt.selfsign > 1) { |
| 459 | mbedtls_printf("Invalid argument for option %s\n", p); |
Paul Bakker | b2d7f23 | 2013-09-09 16:24:18 +0200 | [diff] [blame] | 460 | goto usage; |
Hanno Becker | 17c3276 | 2017-10-03 14:56:04 +0100 | [diff] [blame] | 461 | } |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 462 | } else if (strcmp(p, "is_ca") == 0) { |
| 463 | opt.is_ca = atoi(q); |
| 464 | if (opt.is_ca < 0 || opt.is_ca > 1) { |
| 465 | mbedtls_printf("Invalid argument for option %s\n", p); |
Paul Bakker | 15162a0 | 2013-09-06 19:27:21 +0200 | [diff] [blame] | 466 | goto usage; |
Hanno Becker | 17c3276 | 2017-10-03 14:56:04 +0100 | [diff] [blame] | 467 | } |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 468 | } else if (strcmp(p, "max_pathlen") == 0) { |
| 469 | opt.max_pathlen = atoi(q); |
| 470 | if (opt.max_pathlen < -1 || opt.max_pathlen > 127) { |
| 471 | mbedtls_printf("Invalid argument for option %s\n", p); |
Paul Bakker | 15162a0 | 2013-09-06 19:27:21 +0200 | [diff] [blame] | 472 | goto usage; |
Hanno Becker | 17c3276 | 2017-10-03 14:56:04 +0100 | [diff] [blame] | 473 | } |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 474 | } else if (strcmp(p, "key_usage") == 0) { |
| 475 | while (q != NULL) { |
| 476 | if ((r = strchr(q, ',')) != NULL) { |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 477 | *r++ = '\0'; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 478 | } |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 479 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 480 | if (strcmp(q, "digital_signature") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 481 | opt.key_usage |= MBEDTLS_X509_KU_DIGITAL_SIGNATURE; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 482 | } else if (strcmp(q, "non_repudiation") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 483 | opt.key_usage |= MBEDTLS_X509_KU_NON_REPUDIATION; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 484 | } else if (strcmp(q, "key_encipherment") == 0) { |
Manuel Pégourié-Gonnard | e6028c9 | 2015-04-20 12:19:02 +0100 | [diff] [blame] | 485 | opt.key_usage |= MBEDTLS_X509_KU_KEY_ENCIPHERMENT; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 486 | } else if (strcmp(q, "data_encipherment") == 0) { |
Manuel Pégourié-Gonnard | e6028c9 | 2015-04-20 12:19:02 +0100 | [diff] [blame] | 487 | opt.key_usage |= MBEDTLS_X509_KU_DATA_ENCIPHERMENT; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 488 | } else if (strcmp(q, "key_agreement") == 0) { |
Manuel Pégourié-Gonnard | e6028c9 | 2015-04-20 12:19:02 +0100 | [diff] [blame] | 489 | opt.key_usage |= MBEDTLS_X509_KU_KEY_AGREEMENT; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 490 | } else if (strcmp(q, "key_cert_sign") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 491 | opt.key_usage |= MBEDTLS_X509_KU_KEY_CERT_SIGN; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 492 | } else if (strcmp(q, "crl_sign") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 493 | opt.key_usage |= MBEDTLS_X509_KU_CRL_SIGN; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 494 | } else { |
| 495 | mbedtls_printf("Invalid argument for option %s\n", p); |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 496 | goto usage; |
Hanno Becker | 17c3276 | 2017-10-03 14:56:04 +0100 | [diff] [blame] | 497 | } |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 498 | |
| 499 | q = r; |
| 500 | } |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 501 | } else if (strcmp(p, "ext_key_usage") == 0) { |
Dave Rodgman | 6493785 | 2022-08-15 14:12:25 +0100 | [diff] [blame] | 502 | mbedtls_asn1_sequence **tail = &opt.ext_key_usage; |
| 503 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 504 | while (q != NULL) { |
| 505 | if ((r = strchr(q, ',')) != NULL) { |
Nicholas Wilson | 8e5bdfb | 2015-09-09 19:03:34 +0100 | [diff] [blame] | 506 | *r++ = '\0'; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 507 | } |
Nicholas Wilson | 8e5bdfb | 2015-09-09 19:03:34 +0100 | [diff] [blame] | 508 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 509 | ext_key_usage = mbedtls_calloc(1, sizeof(mbedtls_asn1_sequence)); |
Nicholas Wilson | 8e5bdfb | 2015-09-09 19:03:34 +0100 | [diff] [blame] | 510 | ext_key_usage->buf.tag = MBEDTLS_ASN1_OID; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 511 | if (strcmp(q, "serverAuth") == 0) { |
| 512 | SET_OID(ext_key_usage->buf, MBEDTLS_OID_SERVER_AUTH); |
| 513 | } else if (strcmp(q, "clientAuth") == 0) { |
| 514 | SET_OID(ext_key_usage->buf, MBEDTLS_OID_CLIENT_AUTH); |
| 515 | } else if (strcmp(q, "codeSigning") == 0) { |
| 516 | SET_OID(ext_key_usage->buf, MBEDTLS_OID_CODE_SIGNING); |
| 517 | } else if (strcmp(q, "emailProtection") == 0) { |
| 518 | SET_OID(ext_key_usage->buf, MBEDTLS_OID_EMAIL_PROTECTION); |
| 519 | } else if (strcmp(q, "timeStamping") == 0) { |
| 520 | SET_OID(ext_key_usage->buf, MBEDTLS_OID_TIME_STAMPING); |
| 521 | } else if (strcmp(q, "OCSPSigning") == 0) { |
| 522 | SET_OID(ext_key_usage->buf, MBEDTLS_OID_OCSP_SIGNING); |
Pengyu Lv | b078607 | 2023-05-18 17:18:36 +0800 | [diff] [blame] | 523 | } else if (strcmp(q, "any") == 0) { |
| 524 | SET_OID(ext_key_usage->buf, MBEDTLS_OID_ANY_EXTENDED_KEY_USAGE); |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 525 | } else { |
| 526 | mbedtls_printf("Invalid argument for option %s\n", p); |
Nicholas Wilson | 8e5bdfb | 2015-09-09 19:03:34 +0100 | [diff] [blame] | 527 | goto usage; |
Dave Rodgman | c5e0a8a | 2022-08-15 14:24:22 +0100 | [diff] [blame] | 528 | } |
Dave Rodgman | 6493785 | 2022-08-15 14:12:25 +0100 | [diff] [blame] | 529 | |
| 530 | *tail = ext_key_usage; |
| 531 | tail = &ext_key_usage->next; |
Nicholas Wilson | 8e5bdfb | 2015-09-09 19:03:34 +0100 | [diff] [blame] | 532 | |
| 533 | q = r; |
| 534 | } |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 535 | } else if (strcmp(p, "san") == 0) { |
Andrzej Kurek | 5eebfb8 | 2023-04-27 07:50:56 -0400 | [diff] [blame] | 536 | char *subtype_value; |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 537 | prev = NULL; |
| 538 | |
| 539 | while (q != NULL) { |
Andrzej Kurek | 5eebfb8 | 2023-04-27 07:50:56 -0400 | [diff] [blame] | 540 | char *semicolon; |
| 541 | r = q; |
| 542 | |
| 543 | /* Find the first non-escaped ; occurrence and remove escaped ones */ |
| 544 | do { |
| 545 | if ((semicolon = strchr(r, ';')) != NULL) { |
| 546 | if (*(semicolon-1) != '\\') { |
| 547 | r = semicolon; |
| 548 | break; |
| 549 | } |
| 550 | /* Remove the escape character */ |
| 551 | size_t size_left = strlen(semicolon); |
| 552 | memmove(semicolon-1, semicolon, size_left); |
| 553 | *(semicolon + size_left - 1) = '\0'; |
| 554 | /* r will now point at the character after the semicolon */ |
| 555 | r = semicolon; |
| 556 | } |
| 557 | |
| 558 | } while (semicolon != NULL); |
| 559 | |
| 560 | if (semicolon != NULL) { |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 561 | *r++ = '\0'; |
Andrzej Kurek | 5eebfb8 | 2023-04-27 07:50:56 -0400 | [diff] [blame] | 562 | } else { |
| 563 | r = NULL; |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 564 | } |
| 565 | |
| 566 | cur = mbedtls_calloc(1, sizeof(mbedtls_x509_san_list)); |
| 567 | if (cur == NULL) { |
| 568 | mbedtls_printf("Not enough memory for subjectAltName list\n"); |
| 569 | goto usage; |
| 570 | } |
| 571 | |
| 572 | cur->next = NULL; |
| 573 | |
Andrzej Kurek | 5eebfb8 | 2023-04-27 07:50:56 -0400 | [diff] [blame] | 574 | if ((subtype_value = strchr(q, ':')) != NULL) { |
| 575 | *subtype_value++ = '\0'; |
Waleed Elmelegy | 476c119 | 2023-10-12 14:19:25 +0100 | [diff] [blame] | 576 | } else { |
Waleed Elmelegy | 5867465 | 2023-10-13 10:03:12 +0100 | [diff] [blame] | 577 | mbedtls_printf( |
David Horstmann | 4a493b2 | 2023-10-17 14:57:23 +0100 | [diff] [blame] | 578 | "Invalid argument for option SAN: Entry must be of the form TYPE:value\n"); |
Waleed Elmelegy | 476c119 | 2023-10-12 14:19:25 +0100 | [diff] [blame] | 579 | goto usage; |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 580 | } |
| 581 | if (strcmp(q, "RFC822") == 0) { |
| 582 | cur->node.type = MBEDTLS_X509_SAN_RFC822_NAME; |
| 583 | } else if (strcmp(q, "URI") == 0) { |
| 584 | cur->node.type = MBEDTLS_X509_SAN_UNIFORM_RESOURCE_IDENTIFIER; |
| 585 | } else if (strcmp(q, "DNS") == 0) { |
| 586 | cur->node.type = MBEDTLS_X509_SAN_DNS_NAME; |
| 587 | } else if (strcmp(q, "IP") == 0) { |
Tom Cosgrove | 656d4b3 | 2023-12-08 21:51:15 +0000 | [diff] [blame] | 588 | size_t ip_addr_len = 0; |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 589 | cur->node.type = MBEDTLS_X509_SAN_IP_ADDRESS; |
Tom Cosgrove | 656d4b3 | 2023-12-08 21:51:15 +0000 | [diff] [blame] | 590 | ip_addr_len = mbedtls_x509_crt_parse_cn_inet_pton(subtype_value, ip); |
| 591 | if (ip_addr_len == 0) { |
Andrzej Kurek | cd17ecf | 2023-06-05 17:02:17 -0400 | [diff] [blame] | 592 | mbedtls_printf("mbedtls_x509_crt_parse_cn_inet_pton failed to parse %s\n", |
| 593 | subtype_value); |
| 594 | goto exit; |
| 595 | } |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 596 | cur->node.san.unstructured_name.p = (unsigned char *) ip; |
| 597 | cur->node.san.unstructured_name.len = sizeof(ip); |
| 598 | } else if (strcmp(q, "DN") == 0) { |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 599 | cur->node.type = MBEDTLS_X509_SAN_DIRECTORY_NAME; |
| 600 | if ((ret = mbedtls_x509_string_to_names(&ext_san_dirname, |
Andrzej Kurek | 5eebfb8 | 2023-04-27 07:50:56 -0400 | [diff] [blame] | 601 | subtype_value)) != 0) { |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 602 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 603 | mbedtls_printf( |
| 604 | " failed\n ! mbedtls_x509_string_to_names " |
| 605 | "returned -0x%04x - %s\n\n", |
| 606 | (unsigned int) -ret, buf); |
| 607 | goto exit; |
| 608 | } |
| 609 | cur->node.san.directory_name = *ext_san_dirname; |
| 610 | } else { |
| 611 | mbedtls_free(cur); |
| 612 | goto usage; |
| 613 | } |
| 614 | |
Andrzej Kurek | f994bc5 | 2023-06-02 05:10:17 -0400 | [diff] [blame] | 615 | if (cur->node.type == MBEDTLS_X509_SAN_RFC822_NAME || |
| 616 | cur->node.type == MBEDTLS_X509_SAN_UNIFORM_RESOURCE_IDENTIFIER || |
| 617 | cur->node.type == MBEDTLS_X509_SAN_DNS_NAME) { |
Andrzej Kurek | cd17ecf | 2023-06-05 17:02:17 -0400 | [diff] [blame] | 618 | q = subtype_value; |
| 619 | cur->node.san.unstructured_name.p = (unsigned char *) q; |
| 620 | cur->node.san.unstructured_name.len = strlen(q); |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 621 | } |
| 622 | |
| 623 | if (prev == NULL) { |
| 624 | opt.san_list = cur; |
| 625 | } else { |
| 626 | prev->next = cur; |
| 627 | } |
| 628 | |
| 629 | prev = cur; |
| 630 | q = r; |
| 631 | } |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 632 | } else if (strcmp(p, "ns_cert_type") == 0) { |
| 633 | while (q != NULL) { |
| 634 | if ((r = strchr(q, ',')) != NULL) { |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 635 | *r++ = '\0'; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 636 | } |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 637 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 638 | if (strcmp(q, "ssl_client") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 639 | opt.ns_cert_type |= MBEDTLS_X509_NS_CERT_TYPE_SSL_CLIENT; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 640 | } else if (strcmp(q, "ssl_server") == 0) { |
Manuel Pégourié-Gonnard | e6028c9 | 2015-04-20 12:19:02 +0100 | [diff] [blame] | 641 | opt.ns_cert_type |= MBEDTLS_X509_NS_CERT_TYPE_SSL_SERVER; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 642 | } else if (strcmp(q, "email") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 643 | opt.ns_cert_type |= MBEDTLS_X509_NS_CERT_TYPE_EMAIL; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 644 | } else if (strcmp(q, "object_signing") == 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 645 | opt.ns_cert_type |= MBEDTLS_X509_NS_CERT_TYPE_OBJECT_SIGNING; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 646 | } else if (strcmp(q, "ssl_ca") == 0) { |
Manuel Pégourié-Gonnard | e6028c9 | 2015-04-20 12:19:02 +0100 | [diff] [blame] | 647 | opt.ns_cert_type |= MBEDTLS_X509_NS_CERT_TYPE_SSL_CA; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 648 | } else if (strcmp(q, "email_ca") == 0) { |
Manuel Pégourié-Gonnard | e6028c9 | 2015-04-20 12:19:02 +0100 | [diff] [blame] | 649 | opt.ns_cert_type |= MBEDTLS_X509_NS_CERT_TYPE_EMAIL_CA; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 650 | } else if (strcmp(q, "object_signing_ca") == 0) { |
Manuel Pégourié-Gonnard | e6028c9 | 2015-04-20 12:19:02 +0100 | [diff] [blame] | 651 | opt.ns_cert_type |= MBEDTLS_X509_NS_CERT_TYPE_OBJECT_SIGNING_CA; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 652 | } else { |
| 653 | mbedtls_printf("Invalid argument for option %s\n", p); |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 654 | goto usage; |
Hanno Becker | 17c3276 | 2017-10-03 14:56:04 +0100 | [diff] [blame] | 655 | } |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 656 | |
| 657 | q = r; |
| 658 | } |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 659 | } else if (strcmp(p, "format") == 0) { |
| 660 | if (strcmp(q, "der") == 0) { |
| 661 | opt.format = FORMAT_DER; |
| 662 | } else if (strcmp(q, "pem") == 0) { |
| 663 | opt.format = FORMAT_PEM; |
| 664 | } else { |
| 665 | mbedtls_printf("Invalid argument for option %s\n", p); |
Dave Rodgman | 66e0550 | 2022-10-27 16:29:38 +0100 | [diff] [blame] | 666 | goto usage; |
| 667 | } |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 668 | } else { |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 669 | goto usage; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 670 | } |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 671 | } |
| 672 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 673 | mbedtls_printf("\n"); |
Paul Bakker | 1014e95 | 2013-09-09 13:59:42 +0200 | [diff] [blame] | 674 | |
Manuel Pégourié-Gonnard | 31e5940 | 2013-09-12 05:59:05 +0200 | [diff] [blame] | 675 | /* |
| 676 | * 0. Seed the PRNG |
| 677 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 678 | mbedtls_printf(" . Seeding the random number generator..."); |
| 679 | fflush(stdout); |
Manuel Pégourié-Gonnard | 31e5940 | 2013-09-12 05:59:05 +0200 | [diff] [blame] | 680 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 681 | if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, |
| 682 | (const unsigned char *) pers, |
| 683 | strlen(pers))) != 0) { |
| 684 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 685 | mbedtls_printf(" failed\n ! mbedtls_ctr_drbg_seed returned %d - %s\n", |
| 686 | ret, buf); |
Manuel Pégourié-Gonnard | 31e5940 | 2013-09-12 05:59:05 +0200 | [diff] [blame] | 687 | goto exit; |
| 688 | } |
| 689 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 690 | mbedtls_printf(" ok\n"); |
Manuel Pégourié-Gonnard | 31e5940 | 2013-09-12 05:59:05 +0200 | [diff] [blame] | 691 | |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 692 | // Parse serial to MPI |
| 693 | // |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 694 | mbedtls_printf(" . Reading serial number..."); |
| 695 | fflush(stdout); |
Manuel Pégourié-Gonnard | 31e5940 | 2013-09-12 05:59:05 +0200 | [diff] [blame] | 696 | |
Valerio Setti | 791bbe6 | 2023-01-11 10:40:18 +0100 | [diff] [blame] | 697 | if (serial_frmt == SERIAL_FRMT_HEX) { |
| 698 | ret = mbedtls_test_unhexify(serial, sizeof(serial), |
| 699 | opt.serial_hex, &serial_len); |
| 700 | } else { // SERIAL_FRMT_DEC || SERIAL_FRMT_UNSPEC |
| 701 | ret = parse_serial_decimal_format(serial, sizeof(serial), |
| 702 | opt.serial, &serial_len); |
| 703 | } |
| 704 | |
| 705 | if (ret != 0) { |
| 706 | mbedtls_printf(" failed\n ! Unable to parse serial\n"); |
| 707 | goto exit; |
| 708 | } |
| 709 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 710 | mbedtls_printf(" ok\n"); |
Manuel Pégourié-Gonnard | 31e5940 | 2013-09-12 05:59:05 +0200 | [diff] [blame] | 711 | |
Paul Bakker | 1014e95 | 2013-09-09 13:59:42 +0200 | [diff] [blame] | 712 | // Parse issuer certificate if present |
| 713 | // |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 714 | if (!opt.selfsign && strlen(opt.issuer_crt)) { |
Paul Bakker | 1014e95 | 2013-09-09 13:59:42 +0200 | [diff] [blame] | 715 | /* |
Paul Bakker | e2673fb | 2013-09-09 15:52:07 +0200 | [diff] [blame] | 716 | * 1.0.a. Load the certificates |
Paul Bakker | 1014e95 | 2013-09-09 13:59:42 +0200 | [diff] [blame] | 717 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 718 | mbedtls_printf(" . Loading the issuer certificate ..."); |
| 719 | fflush(stdout); |
Paul Bakker | 1014e95 | 2013-09-09 13:59:42 +0200 | [diff] [blame] | 720 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 721 | if ((ret = mbedtls_x509_crt_parse_file(&issuer_crt, opt.issuer_crt)) != 0) { |
| 722 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 723 | mbedtls_printf(" failed\n ! mbedtls_x509_crt_parse_file " |
| 724 | "returned -0x%04x - %s\n\n", (unsigned int) -ret, buf); |
Paul Bakker | 1014e95 | 2013-09-09 13:59:42 +0200 | [diff] [blame] | 725 | goto exit; |
| 726 | } |
| 727 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 728 | ret = mbedtls_x509_dn_gets(issuer_name, sizeof(issuer_name), |
| 729 | &issuer_crt.subject); |
| 730 | if (ret < 0) { |
| 731 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 732 | mbedtls_printf(" failed\n ! mbedtls_x509_dn_gets " |
| 733 | "returned -0x%04x - %s\n\n", (unsigned int) -ret, buf); |
Paul Bakker | 1014e95 | 2013-09-09 13:59:42 +0200 | [diff] [blame] | 734 | goto exit; |
| 735 | } |
| 736 | |
Paul Bakker | e2673fb | 2013-09-09 15:52:07 +0200 | [diff] [blame] | 737 | opt.issuer_name = issuer_name; |
| 738 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 739 | mbedtls_printf(" ok\n"); |
Paul Bakker | e2673fb | 2013-09-09 15:52:07 +0200 | [diff] [blame] | 740 | } |
| 741 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 742 | #if defined(MBEDTLS_X509_CSR_PARSE_C) |
Paul Bakker | e2673fb | 2013-09-09 15:52:07 +0200 | [diff] [blame] | 743 | // Parse certificate request if present |
| 744 | // |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 745 | if (!opt.selfsign && strlen(opt.request_file)) { |
Paul Bakker | e2673fb | 2013-09-09 15:52:07 +0200 | [diff] [blame] | 746 | /* |
| 747 | * 1.0.b. Load the CSR |
| 748 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 749 | mbedtls_printf(" . Loading the certificate request ..."); |
| 750 | fflush(stdout); |
Paul Bakker | e2673fb | 2013-09-09 15:52:07 +0200 | [diff] [blame] | 751 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 752 | if ((ret = mbedtls_x509_csr_parse_file(&csr, opt.request_file)) != 0) { |
| 753 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 754 | mbedtls_printf(" failed\n ! mbedtls_x509_csr_parse_file " |
| 755 | "returned -0x%04x - %s\n\n", (unsigned int) -ret, buf); |
Paul Bakker | e2673fb | 2013-09-09 15:52:07 +0200 | [diff] [blame] | 756 | goto exit; |
| 757 | } |
| 758 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 759 | ret = mbedtls_x509_dn_gets(subject_name, sizeof(subject_name), |
| 760 | &csr.subject); |
| 761 | if (ret < 0) { |
| 762 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 763 | mbedtls_printf(" failed\n ! mbedtls_x509_dn_gets " |
| 764 | "returned -0x%04x - %s\n\n", (unsigned int) -ret, buf); |
Paul Bakker | e2673fb | 2013-09-09 15:52:07 +0200 | [diff] [blame] | 765 | goto exit; |
| 766 | } |
| 767 | |
| 768 | opt.subject_name = subject_name; |
Gilles Peskine | 842edf4 | 2021-08-04 21:56:10 +0200 | [diff] [blame] | 769 | subject_key = &csr.pk; |
Paul Bakker | e2673fb | 2013-09-09 15:52:07 +0200 | [diff] [blame] | 770 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 771 | mbedtls_printf(" ok\n"); |
Paul Bakker | b2d7f23 | 2013-09-09 16:24:18 +0200 | [diff] [blame] | 772 | } |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 773 | #endif /* MBEDTLS_X509_CSR_PARSE_C */ |
Paul Bakker | b2d7f23 | 2013-09-09 16:24:18 +0200 | [diff] [blame] | 774 | |
| 775 | /* |
| 776 | * 1.1. Load the keys |
| 777 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 778 | if (!opt.selfsign && !strlen(opt.request_file)) { |
| 779 | mbedtls_printf(" . Loading the subject key ..."); |
| 780 | fflush(stdout); |
Paul Bakker | b2d7f23 | 2013-09-09 16:24:18 +0200 | [diff] [blame] | 781 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 782 | ret = mbedtls_pk_parse_keyfile(&loaded_subject_key, opt.subject_key, |
| 783 | opt.subject_pwd, mbedtls_ctr_drbg_random, &ctr_drbg); |
| 784 | if (ret != 0) { |
| 785 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 786 | mbedtls_printf(" failed\n ! mbedtls_pk_parse_keyfile " |
| 787 | "returned -0x%04x - %s\n\n", (unsigned int) -ret, buf); |
Paul Bakker | e2673fb | 2013-09-09 15:52:07 +0200 | [diff] [blame] | 788 | goto exit; |
| 789 | } |
Paul Bakker | 1014e95 | 2013-09-09 13:59:42 +0200 | [diff] [blame] | 790 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 791 | mbedtls_printf(" ok\n"); |
Paul Bakker | 1014e95 | 2013-09-09 13:59:42 +0200 | [diff] [blame] | 792 | } |
| 793 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 794 | mbedtls_printf(" . Loading the issuer key ..."); |
| 795 | fflush(stdout); |
Paul Bakker | b2d7f23 | 2013-09-09 16:24:18 +0200 | [diff] [blame] | 796 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 797 | ret = mbedtls_pk_parse_keyfile(&loaded_issuer_key, opt.issuer_key, |
| 798 | opt.issuer_pwd, mbedtls_ctr_drbg_random, &ctr_drbg); |
| 799 | if (ret != 0) { |
| 800 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 801 | mbedtls_printf(" failed\n ! mbedtls_pk_parse_keyfile " |
| 802 | "returned -x%02x - %s\n\n", (unsigned int) -ret, buf); |
Paul Bakker | b2d7f23 | 2013-09-09 16:24:18 +0200 | [diff] [blame] | 803 | goto exit; |
| 804 | } |
| 805 | |
| 806 | // Check if key and issuer certificate match |
| 807 | // |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 808 | if (strlen(opt.issuer_crt)) { |
| 809 | if (mbedtls_pk_check_pair(&issuer_crt.pk, issuer_key, |
| 810 | mbedtls_ctr_drbg_random, &ctr_drbg) != 0) { |
| 811 | mbedtls_printf(" failed\n ! issuer_key does not match " |
| 812 | "issuer certificate\n\n"); |
Paul Bakker | b2d7f23 | 2013-09-09 16:24:18 +0200 | [diff] [blame] | 813 | goto exit; |
| 814 | } |
| 815 | } |
| 816 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 817 | mbedtls_printf(" ok\n"); |
Paul Bakker | b2d7f23 | 2013-09-09 16:24:18 +0200 | [diff] [blame] | 818 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 819 | if (opt.selfsign) { |
Paul Bakker | 93c6aa4 | 2013-10-28 22:28:09 +0100 | [diff] [blame] | 820 | opt.subject_name = opt.issuer_name; |
Manuel Pégourié-Gonnard | f38e71a | 2013-09-12 05:21:54 +0200 | [diff] [blame] | 821 | subject_key = issuer_key; |
Paul Bakker | b2d7f23 | 2013-09-09 16:24:18 +0200 | [diff] [blame] | 822 | } |
| 823 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 824 | mbedtls_x509write_crt_set_subject_key(&crt, subject_key); |
| 825 | mbedtls_x509write_crt_set_issuer_key(&crt, issuer_key); |
Paul Bakker | b2d7f23 | 2013-09-09 16:24:18 +0200 | [diff] [blame] | 826 | |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 827 | /* |
| 828 | * 1.0. Check the names for validity |
| 829 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 830 | if ((ret = mbedtls_x509write_crt_set_subject_name(&crt, opt.subject_name)) != 0) { |
| 831 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 832 | mbedtls_printf(" failed\n ! mbedtls_x509write_crt_set_subject_name " |
| 833 | "returned -0x%04x - %s\n\n", (unsigned int) -ret, buf); |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 834 | goto exit; |
| 835 | } |
| 836 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 837 | if ((ret = mbedtls_x509write_crt_set_issuer_name(&crt, opt.issuer_name)) != 0) { |
| 838 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 839 | mbedtls_printf(" failed\n ! mbedtls_x509write_crt_set_issuer_name " |
| 840 | "returned -0x%04x - %s\n\n", (unsigned int) -ret, buf); |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 841 | goto exit; |
| 842 | } |
| 843 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 844 | mbedtls_printf(" . Setting certificate values ..."); |
| 845 | fflush(stdout); |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 846 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 847 | mbedtls_x509write_crt_set_version(&crt, opt.version); |
| 848 | mbedtls_x509write_crt_set_md_alg(&crt, opt.md); |
Hanno Becker | 6c13d37 | 2017-09-13 12:49:22 +0100 | [diff] [blame] | 849 | |
Valerio Setti | af4815c | 2023-01-26 17:43:09 +0100 | [diff] [blame] | 850 | ret = mbedtls_x509write_crt_set_serial_raw(&crt, serial, serial_len); |
Valerio Setti | da0afcc | 2023-01-05 16:46:59 +0100 | [diff] [blame] | 851 | if (ret != 0) { |
| 852 | mbedtls_strerror(ret, buf, sizeof(buf)); |
Valerio Setti | af4815c | 2023-01-26 17:43:09 +0100 | [diff] [blame] | 853 | mbedtls_printf(" failed\n ! mbedtls_x509write_crt_set_serial_raw " |
Valerio Setti | da0afcc | 2023-01-05 16:46:59 +0100 | [diff] [blame] | 854 | "returned -0x%04x - %s\n\n", (unsigned int) -ret, buf); |
| 855 | goto exit; |
| 856 | } |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 857 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 858 | ret = mbedtls_x509write_crt_set_validity(&crt, opt.not_before, opt.not_after); |
| 859 | if (ret != 0) { |
| 860 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 861 | mbedtls_printf(" failed\n ! mbedtls_x509write_crt_set_validity " |
| 862 | "returned -0x%04x - %s\n\n", (unsigned int) -ret, buf); |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 863 | goto exit; |
| 864 | } |
| 865 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 866 | mbedtls_printf(" ok\n"); |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 867 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 868 | if (opt.version == MBEDTLS_X509_CRT_VERSION_3 && |
| 869 | opt.basic_constraints != 0) { |
| 870 | mbedtls_printf(" . Adding the Basic Constraints extension ..."); |
| 871 | fflush(stdout); |
Paul Bakker | 15162a0 | 2013-09-06 19:27:21 +0200 | [diff] [blame] | 872 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 873 | ret = mbedtls_x509write_crt_set_basic_constraints(&crt, opt.is_ca, |
| 874 | opt.max_pathlen); |
| 875 | if (ret != 0) { |
| 876 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 877 | mbedtls_printf(" failed\n ! x509write_crt_set_basic_constraints " |
| 878 | "returned -0x%04x - %s\n\n", (unsigned int) -ret, buf); |
Hanno Becker | 6c13d37 | 2017-09-13 12:49:22 +0100 | [diff] [blame] | 879 | goto exit; |
| 880 | } |
| 881 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 882 | mbedtls_printf(" ok\n"); |
Hanno Becker | 6c13d37 | 2017-09-13 12:49:22 +0100 | [diff] [blame] | 883 | } |
Paul Bakker | 15162a0 | 2013-09-06 19:27:21 +0200 | [diff] [blame] | 884 | |
Elena Uziunaite | 9fc5be0 | 2024-09-04 18:12:59 +0100 | [diff] [blame] | 885 | #if defined(PSA_WANT_ALG_SHA_1) |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 886 | if (opt.version == MBEDTLS_X509_CRT_VERSION_3 && |
| 887 | opt.subject_identifier != 0) { |
| 888 | mbedtls_printf(" . Adding the Subject Key Identifier ..."); |
| 889 | fflush(stdout); |
Hanno Becker | 6c13d37 | 2017-09-13 12:49:22 +0100 | [diff] [blame] | 890 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 891 | ret = mbedtls_x509write_crt_set_subject_key_identifier(&crt); |
| 892 | if (ret != 0) { |
| 893 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 894 | mbedtls_printf(" failed\n ! mbedtls_x509write_crt_set_subject" |
| 895 | "_key_identifier returned -0x%04x - %s\n\n", |
| 896 | (unsigned int) -ret, buf); |
Hanno Becker | 6c13d37 | 2017-09-13 12:49:22 +0100 | [diff] [blame] | 897 | goto exit; |
| 898 | } |
| 899 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 900 | mbedtls_printf(" ok\n"); |
Paul Bakker | 15162a0 | 2013-09-06 19:27:21 +0200 | [diff] [blame] | 901 | } |
| 902 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 903 | if (opt.version == MBEDTLS_X509_CRT_VERSION_3 && |
| 904 | opt.authority_identifier != 0) { |
| 905 | mbedtls_printf(" . Adding the Authority Key Identifier ..."); |
| 906 | fflush(stdout); |
Paul Bakker | 15162a0 | 2013-09-06 19:27:21 +0200 | [diff] [blame] | 907 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 908 | ret = mbedtls_x509write_crt_set_authority_key_identifier(&crt); |
| 909 | if (ret != 0) { |
| 910 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 911 | mbedtls_printf(" failed\n ! mbedtls_x509write_crt_set_authority_" |
| 912 | "key_identifier returned -0x%04x - %s\n\n", |
| 913 | (unsigned int) -ret, buf); |
Hanno Becker | 6c13d37 | 2017-09-13 12:49:22 +0100 | [diff] [blame] | 914 | goto exit; |
| 915 | } |
| 916 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 917 | mbedtls_printf(" ok\n"); |
Hanno Becker | 6c13d37 | 2017-09-13 12:49:22 +0100 | [diff] [blame] | 918 | } |
Elena Uziunaite | 9fc5be0 | 2024-09-04 18:12:59 +0100 | [diff] [blame] | 919 | #endif /* PSA_WANT_ALG_SHA_1 */ |
Paul Bakker | 15162a0 | 2013-09-06 19:27:21 +0200 | [diff] [blame] | 920 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 921 | if (opt.version == MBEDTLS_X509_CRT_VERSION_3 && |
| 922 | opt.key_usage != 0) { |
| 923 | mbedtls_printf(" . Adding the Key Usage extension ..."); |
| 924 | fflush(stdout); |
Paul Bakker | 52be08c | 2013-09-09 12:37:54 +0200 | [diff] [blame] | 925 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 926 | ret = mbedtls_x509write_crt_set_key_usage(&crt, opt.key_usage); |
| 927 | if (ret != 0) { |
| 928 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 929 | mbedtls_printf(" failed\n ! mbedtls_x509write_crt_set_key_usage " |
| 930 | "returned -0x%04x - %s\n\n", (unsigned int) -ret, buf); |
Paul Bakker | 52be08c | 2013-09-09 12:37:54 +0200 | [diff] [blame] | 931 | goto exit; |
| 932 | } |
| 933 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 934 | mbedtls_printf(" ok\n"); |
Paul Bakker | 52be08c | 2013-09-09 12:37:54 +0200 | [diff] [blame] | 935 | } |
| 936 | |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 937 | if (opt.san_list != NULL) { |
| 938 | ret = mbedtls_x509write_crt_set_subject_alternative_name(&crt, opt.san_list); |
| 939 | |
| 940 | if (ret != 0) { |
| 941 | mbedtls_printf( |
Andrzej Kurek | 1bc7df2 | 2023-04-04 07:09:04 -0400 | [diff] [blame] | 942 | " failed\n ! mbedtls_x509write_crt_set_subject_alternative_name returned %d", |
Andrzej Kurek | ccdd975 | 2023-04-01 10:38:30 -0400 | [diff] [blame] | 943 | ret); |
| 944 | goto exit; |
| 945 | } |
| 946 | } |
| 947 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 948 | if (opt.ext_key_usage) { |
| 949 | mbedtls_printf(" . Adding the Extended Key Usage extension ..."); |
| 950 | fflush(stdout); |
Nicholas Wilson | 8e5bdfb | 2015-09-09 19:03:34 +0100 | [diff] [blame] | 951 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 952 | ret = mbedtls_x509write_crt_set_ext_key_usage(&crt, opt.ext_key_usage); |
| 953 | if (ret != 0) { |
| 954 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 955 | mbedtls_printf( |
| 956 | " failed\n ! mbedtls_x509write_crt_set_ext_key_usage returned -0x%02x - %s\n\n", |
| 957 | (unsigned int) -ret, |
| 958 | buf); |
Nicholas Wilson | 8e5bdfb | 2015-09-09 19:03:34 +0100 | [diff] [blame] | 959 | goto exit; |
| 960 | } |
| 961 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 962 | mbedtls_printf(" ok\n"); |
Nicholas Wilson | 8e5bdfb | 2015-09-09 19:03:34 +0100 | [diff] [blame] | 963 | } |
| 964 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 965 | if (opt.version == MBEDTLS_X509_CRT_VERSION_3 && |
| 966 | opt.ns_cert_type != 0) { |
| 967 | mbedtls_printf(" . Adding the NS Cert Type extension ..."); |
| 968 | fflush(stdout); |
Paul Bakker | 52be08c | 2013-09-09 12:37:54 +0200 | [diff] [blame] | 969 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 970 | ret = mbedtls_x509write_crt_set_ns_cert_type(&crt, opt.ns_cert_type); |
| 971 | if (ret != 0) { |
| 972 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 973 | mbedtls_printf(" failed\n ! mbedtls_x509write_crt_set_ns_cert_type " |
| 974 | "returned -0x%04x - %s\n\n", (unsigned int) -ret, buf); |
Paul Bakker | 52be08c | 2013-09-09 12:37:54 +0200 | [diff] [blame] | 975 | goto exit; |
| 976 | } |
| 977 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 978 | mbedtls_printf(" ok\n"); |
Paul Bakker | 52be08c | 2013-09-09 12:37:54 +0200 | [diff] [blame] | 979 | } |
| 980 | |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 981 | /* |
Hanno Becker | 25d882b | 2018-08-23 15:26:06 +0100 | [diff] [blame] | 982 | * 1.2. Writing the certificate |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 983 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 984 | mbedtls_printf(" . Writing the certificate..."); |
| 985 | fflush(stdout); |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 986 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 987 | if ((ret = write_certificate(&crt, opt.output_file, |
| 988 | mbedtls_ctr_drbg_random, &ctr_drbg)) != 0) { |
| 989 | mbedtls_strerror(ret, buf, sizeof(buf)); |
| 990 | mbedtls_printf(" failed\n ! write_certificate -0x%04x - %s\n\n", |
| 991 | (unsigned int) -ret, buf); |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 992 | goto exit; |
| 993 | } |
| 994 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 995 | mbedtls_printf(" ok\n"); |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 996 | |
Andres Amaya Garcia | f9a54d3 | 2018-04-29 21:42:45 +0100 | [diff] [blame] | 997 | exit_code = MBEDTLS_EXIT_SUCCESS; |
| 998 | |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 999 | exit: |
Hanno Becker | 30a9510 | 2018-10-05 09:49:33 +0100 | [diff] [blame] | 1000 | #if defined(MBEDTLS_X509_CSR_PARSE_C) |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 1001 | mbedtls_x509_csr_free(&csr); |
Hanno Becker | 30a9510 | 2018-10-05 09:49:33 +0100 | [diff] [blame] | 1002 | #endif /* MBEDTLS_X509_CSR_PARSE_C */ |
Andrzej Kurek | 5da1d75 | 2023-04-05 08:30:59 -0400 | [diff] [blame] | 1003 | mbedtls_asn1_free_named_data_list(&ext_san_dirname); |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 1004 | mbedtls_x509_crt_free(&issuer_crt); |
| 1005 | mbedtls_x509write_crt_free(&crt); |
| 1006 | mbedtls_pk_free(&loaded_subject_key); |
| 1007 | mbedtls_pk_free(&loaded_issuer_key); |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 1008 | mbedtls_ctr_drbg_free(&ctr_drbg); |
| 1009 | mbedtls_entropy_free(&entropy); |
Przemek Stekiel | 758aef6 | 2023-04-19 13:47:43 +0200 | [diff] [blame] | 1010 | #if defined(MBEDTLS_USE_PSA_CRYPTO) |
Przemek Stekiel | a8c560a | 2023-04-19 10:15:26 +0200 | [diff] [blame] | 1011 | mbedtls_psa_crypto_free(); |
Przemek Stekiel | 758aef6 | 2023-04-19 13:47:43 +0200 | [diff] [blame] | 1012 | #endif /* MBEDTLS_USE_PSA_CRYPTO */ |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 1013 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 1014 | mbedtls_exit(exit_code); |
Paul Bakker | 9397dcb | 2013-09-06 09:55:26 +0200 | [diff] [blame] | 1015 | } |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1016 | #endif /* MBEDTLS_X509_CRT_WRITE_C && MBEDTLS_X509_CRT_PARSE_C && |
| 1017 | MBEDTLS_FS_IO && MBEDTLS_ENTROPY_C && MBEDTLS_CTR_DRBG_C && |
Simon Butcher | 203a693 | 2016-10-07 15:00:17 +0100 | [diff] [blame] | 1018 | MBEDTLS_ERROR_C && MBEDTLS_PEM_WRITE_C */ |