Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 1 | /* |
| 2 | * X.509 Certificate Signing Request (CSR) parsing |
| 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 | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 6 | */ |
| 7 | /* |
| 8 | * The ITU-T X.509 standard defines a certificate format for PKI. |
| 9 | * |
Manuel Pégourié-Gonnard | 1c082f3 | 2014-06-12 22:34:55 +0200 | [diff] [blame] | 10 | * http://www.ietf.org/rfc/rfc5280.txt (Certificates and CRLs) |
| 11 | * http://www.ietf.org/rfc/rfc3279.txt (Alg IDs for CRLs) |
| 12 | * http://www.ietf.org/rfc/rfc2986.txt (CSRs, aka PKCS#10) |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 13 | * |
| 14 | * http://www.itu.int/ITU-T/studygroups/com17/languages/X.680-0207.pdf |
| 15 | * http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf |
| 16 | */ |
| 17 | |
Gilles Peskine | db09ef6 | 2020-06-03 01:43:33 +0200 | [diff] [blame] | 18 | #include "common.h" |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 19 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 20 | #if defined(MBEDTLS_X509_CSR_PARSE_C) |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 21 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 22 | #include "mbedtls/x509_csr.h" |
Valerio Setti | 25b282e | 2024-01-17 10:55:32 +0100 | [diff] [blame^] | 23 | #include "x509_internal.h" |
Janos Follath | 73c616b | 2019-12-18 15:07:04 +0000 | [diff] [blame] | 24 | #include "mbedtls/error.h" |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 25 | #include "mbedtls/oid.h" |
Andres Amaya Garcia | 1f6301b | 2018-04-17 09:51:09 -0500 | [diff] [blame] | 26 | #include "mbedtls/platform_util.h" |
Rich Evans | 00ab470 | 2015-02-06 13:43:58 +0000 | [diff] [blame] | 27 | |
| 28 | #include <string.h> |
| 29 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 30 | #if defined(MBEDTLS_PEM_PARSE_C) |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 31 | #include "mbedtls/pem.h" |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 32 | #endif |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 33 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 34 | #include "mbedtls/platform.h" |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 35 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 36 | #if defined(MBEDTLS_FS_IO) || defined(EFIX64) || defined(EFI32) |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 37 | #include <stdio.h> |
| 38 | #endif |
| 39 | |
| 40 | /* |
| 41 | * Version ::= INTEGER { v1(0) } |
| 42 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 43 | static int x509_csr_get_version(unsigned char **p, |
| 44 | const unsigned char *end, |
| 45 | int *ver) |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 46 | { |
Janos Follath | 865b3eb | 2019-12-16 11:46:15 +0000 | [diff] [blame] | 47 | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 48 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 49 | if ((ret = mbedtls_asn1_get_int(p, end, ver)) != 0) { |
| 50 | if (ret == MBEDTLS_ERR_ASN1_UNEXPECTED_TAG) { |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 51 | *ver = 0; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 52 | return 0; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 53 | } |
| 54 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 55 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_VERSION, ret); |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 56 | } |
| 57 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 58 | return 0; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | /* |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 62 | * Parse CSR extension requests in DER format |
| 63 | */ |
| 64 | static int x509_csr_parse_extensions(mbedtls_x509_csr *csr, |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 65 | unsigned char **p, const unsigned char *end, |
| 66 | mbedtls_x509_csr_ext_cb_t cb, |
| 67 | void *p_ctx) |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 68 | { |
Matthias Schulz | 873a202 | 2023-10-17 16:02:20 +0200 | [diff] [blame] | 69 | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 70 | size_t len; |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 71 | unsigned char *end_ext_data, *end_ext_octet; |
Matthias Schulz | cc923f3 | 2023-10-17 12:36:23 +0200 | [diff] [blame] | 72 | |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 73 | while (*p < end) { |
| 74 | mbedtls_x509_buf extn_oid = { 0, 0, NULL }; |
Matthias Schulz | 873a202 | 2023-10-17 16:02:20 +0200 | [diff] [blame] | 75 | int is_critical = 0; /* DEFAULT FALSE */ |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 76 | int ext_type = 0; |
| 77 | |
| 78 | /* Read sequence tag */ |
| 79 | if ((ret = mbedtls_asn1_get_tag(p, end, &len, |
| 80 | MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE)) != 0) { |
Przemek Stekiel | 86d1946 | 2023-01-24 09:45:19 +0100 | [diff] [blame] | 81 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_EXTENSIONS, ret); |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | end_ext_data = *p + len; |
| 85 | |
| 86 | /* Get extension ID */ |
| 87 | if ((ret = mbedtls_asn1_get_tag(p, end_ext_data, &extn_oid.len, |
| 88 | MBEDTLS_ASN1_OID)) != 0) { |
Przemek Stekiel | 86d1946 | 2023-01-24 09:45:19 +0100 | [diff] [blame] | 89 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_EXTENSIONS, ret); |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | extn_oid.tag = MBEDTLS_ASN1_OID; |
| 93 | extn_oid.p = *p; |
| 94 | *p += extn_oid.len; |
| 95 | |
Matthias Schulz | 873a202 | 2023-10-17 16:02:20 +0200 | [diff] [blame] | 96 | /* Get optional critical */ |
| 97 | if ((ret = mbedtls_asn1_get_bool(p, end_ext_data, &is_critical)) != 0 && |
| 98 | (ret != MBEDTLS_ERR_ASN1_UNEXPECTED_TAG)) { |
| 99 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_EXTENSIONS, ret); |
| 100 | } |
Matthias Schulz | adb3cc4 | 2023-10-17 11:50:50 +0200 | [diff] [blame] | 101 | |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 102 | /* Data should be octet string type */ |
| 103 | if ((ret = mbedtls_asn1_get_tag(p, end_ext_data, &len, |
| 104 | MBEDTLS_ASN1_OCTET_STRING)) != 0) { |
Przemek Stekiel | 86d1946 | 2023-01-24 09:45:19 +0100 | [diff] [blame] | 105 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_EXTENSIONS, ret); |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 106 | } |
Przemek Stekiel | 86d1946 | 2023-01-24 09:45:19 +0100 | [diff] [blame] | 107 | |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 108 | end_ext_octet = *p + len; |
| 109 | |
| 110 | if (end_ext_octet != end_ext_data) { |
Przemek Stekiel | 86d1946 | 2023-01-24 09:45:19 +0100 | [diff] [blame] | 111 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_EXTENSIONS, |
| 112 | MBEDTLS_ERR_ASN1_LENGTH_MISMATCH); |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 113 | } |
| 114 | |
Przemek Stekiel | cbaf316 | 2023-01-12 12:58:02 +0100 | [diff] [blame] | 115 | /* |
Przemek Stekiel | 94e21e1 | 2023-01-25 11:08:32 +0100 | [diff] [blame] | 116 | * Detect supported extensions and skip unsupported extensions |
Przemek Stekiel | cbaf316 | 2023-01-12 12:58:02 +0100 | [diff] [blame] | 117 | */ |
| 118 | ret = mbedtls_oid_get_x509_ext_type(&extn_oid, &ext_type); |
| 119 | |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 120 | if (ret != 0) { |
| 121 | /* Give the callback (if any) a chance to handle the extension */ |
| 122 | if (cb != NULL) { |
| 123 | ret = cb(p_ctx, csr, &extn_oid, is_critical, *p, end_ext_octet); |
| 124 | if (ret != 0 && is_critical) { |
| 125 | return ret; |
| 126 | } |
| 127 | *p = end_ext_octet; |
| 128 | continue; |
Przemek Stekiel | 94e21e1 | 2023-01-25 11:08:32 +0100 | [diff] [blame] | 129 | } |
| 130 | |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 131 | /* No parser found, skip extension */ |
| 132 | *p = end_ext_octet; |
Przemek Stekiel | 94e21e1 | 2023-01-25 11:08:32 +0100 | [diff] [blame] | 133 | |
Matthias Schulz | 873a202 | 2023-10-17 16:02:20 +0200 | [diff] [blame] | 134 | if (is_critical) { |
| 135 | /* Data is marked as critical: fail */ |
Przemek Stekiel | 94e21e1 | 2023-01-25 11:08:32 +0100 | [diff] [blame] | 136 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_EXTENSIONS, |
Matthias Schulz | 873a202 | 2023-10-17 16:02:20 +0200 | [diff] [blame] | 137 | MBEDTLS_ERR_ASN1_UNEXPECTED_TAG); |
Przemek Stekiel | 94e21e1 | 2023-01-25 11:08:32 +0100 | [diff] [blame] | 138 | } |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 139 | continue; |
Przemek Stekiel | 86d1946 | 2023-01-24 09:45:19 +0100 | [diff] [blame] | 140 | } |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 141 | |
| 142 | /* Forbid repeated extensions */ |
| 143 | if ((csr->ext_types & ext_type) != 0) { |
| 144 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_EXTENSIONS, |
Matthias Schulz | edc32ea | 2023-10-19 16:09:08 +0200 | [diff] [blame] | 145 | MBEDTLS_ERR_ASN1_INVALID_DATA); |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | csr->ext_types |= ext_type; |
| 149 | |
| 150 | switch (ext_type) { |
| 151 | case MBEDTLS_X509_EXT_KEY_USAGE: |
| 152 | /* Parse key usage */ |
| 153 | if ((ret = mbedtls_x509_get_key_usage(p, end_ext_data, |
Matthias Schulz | edc32ea | 2023-10-19 16:09:08 +0200 | [diff] [blame] | 154 | &csr->key_usage)) != 0) { |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 155 | return ret; |
| 156 | } |
| 157 | break; |
| 158 | |
| 159 | case MBEDTLS_X509_EXT_SUBJECT_ALT_NAME: |
| 160 | /* Parse subject alt name */ |
| 161 | if ((ret = mbedtls_x509_get_subject_alt_name(p, end_ext_data, |
Matthias Schulz | edc32ea | 2023-10-19 16:09:08 +0200 | [diff] [blame] | 162 | &csr->subject_alt_names)) != 0) { |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 163 | return ret; |
| 164 | } |
| 165 | break; |
| 166 | |
| 167 | case MBEDTLS_X509_EXT_NS_CERT_TYPE: |
| 168 | /* Parse netscape certificate type */ |
| 169 | if ((ret = mbedtls_x509_get_ns_cert_type(p, end_ext_data, |
Matthias Schulz | edc32ea | 2023-10-19 16:09:08 +0200 | [diff] [blame] | 170 | &csr->ns_cert_type)) != 0) { |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 171 | return ret; |
| 172 | } |
| 173 | break; |
| 174 | default: |
| 175 | /* |
Matthias Schulz | edc32ea | 2023-10-19 16:09:08 +0200 | [diff] [blame] | 176 | * If this is a non-critical extension, which the oid layer |
| 177 | * supports, but there isn't an x509 parser for it, |
| 178 | * skip the extension. |
| 179 | */ |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 180 | if (is_critical) { |
| 181 | return MBEDTLS_ERR_X509_FEATURE_UNAVAILABLE; |
| 182 | } else { |
| 183 | *p = end_ext_octet; |
| 184 | } |
| 185 | } |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | if (*p != end) { |
Przemek Stekiel | 86d1946 | 2023-01-24 09:45:19 +0100 | [diff] [blame] | 189 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_EXTENSIONS, |
| 190 | MBEDTLS_ERR_ASN1_LENGTH_MISMATCH); |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | return 0; |
| 194 | } |
| 195 | |
| 196 | /* |
| 197 | * Parse CSR attributes in DER format |
| 198 | */ |
| 199 | static int x509_csr_parse_attributes(mbedtls_x509_csr *csr, |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 200 | const unsigned char *start, const unsigned char *end, |
| 201 | mbedtls_x509_csr_ext_cb_t cb, |
| 202 | void *p_ctx) |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 203 | { |
| 204 | int ret; |
| 205 | size_t len; |
| 206 | unsigned char *end_attr_data; |
| 207 | unsigned char **p = (unsigned char **) &start; |
| 208 | |
| 209 | while (*p < end) { |
| 210 | mbedtls_x509_buf attr_oid = { 0, 0, NULL }; |
| 211 | |
| 212 | if ((ret = mbedtls_asn1_get_tag(p, end, &len, |
| 213 | MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE)) != 0) { |
Przemek Stekiel | 86d1946 | 2023-01-24 09:45:19 +0100 | [diff] [blame] | 214 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_EXTENSIONS, ret); |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 215 | } |
| 216 | end_attr_data = *p + len; |
| 217 | |
| 218 | /* Get attribute ID */ |
| 219 | if ((ret = mbedtls_asn1_get_tag(p, end_attr_data, &attr_oid.len, |
| 220 | MBEDTLS_ASN1_OID)) != 0) { |
Przemek Stekiel | 86d1946 | 2023-01-24 09:45:19 +0100 | [diff] [blame] | 221 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_EXTENSIONS, ret); |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 222 | } |
| 223 | |
| 224 | attr_oid.tag = MBEDTLS_ASN1_OID; |
| 225 | attr_oid.p = *p; |
| 226 | *p += attr_oid.len; |
| 227 | |
| 228 | /* Check that this is an extension-request attribute */ |
| 229 | if (MBEDTLS_OID_CMP(MBEDTLS_OID_PKCS9_CSR_EXT_REQ, &attr_oid) == 0) { |
| 230 | if ((ret = mbedtls_asn1_get_tag(p, end, &len, |
| 231 | MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SET)) != 0) { |
Przemek Stekiel | 86d1946 | 2023-01-24 09:45:19 +0100 | [diff] [blame] | 232 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_EXTENSIONS, ret); |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | if ((ret = mbedtls_asn1_get_tag(p, end, &len, |
| 236 | MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE)) != |
| 237 | 0) { |
Przemek Stekiel | 86d1946 | 2023-01-24 09:45:19 +0100 | [diff] [blame] | 238 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_EXTENSIONS, ret); |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 239 | } |
| 240 | |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 241 | if ((ret = x509_csr_parse_extensions(csr, p, *p + len, cb, p_ctx)) != 0) { |
Przemek Stekiel | 86d1946 | 2023-01-24 09:45:19 +0100 | [diff] [blame] | 242 | return ret; |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | if (*p != end_attr_data) { |
Przemek Stekiel | 86d1946 | 2023-01-24 09:45:19 +0100 | [diff] [blame] | 246 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_EXTENSIONS, |
| 247 | MBEDTLS_ERR_ASN1_LENGTH_MISMATCH); |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 248 | } |
| 249 | } |
| 250 | |
| 251 | *p = end_attr_data; |
| 252 | } |
| 253 | |
| 254 | if (*p != end) { |
Przemek Stekiel | 86d1946 | 2023-01-24 09:45:19 +0100 | [diff] [blame] | 255 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_EXTENSIONS, |
Przemek Stekiel | 36ad5e7 | 2023-01-26 22:30:45 +0100 | [diff] [blame] | 256 | MBEDTLS_ERR_ASN1_LENGTH_MISMATCH); |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | return 0; |
| 260 | } |
| 261 | |
| 262 | /* |
Manuel Pégourié-Gonnard | f3b4724 | 2014-06-16 18:06:48 +0200 | [diff] [blame] | 263 | * Parse a CSR in DER format |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 264 | */ |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 265 | static int mbedtls_x509_csr_parse_der_internal(mbedtls_x509_csr *csr, |
Matthias Schulz | edc32ea | 2023-10-19 16:09:08 +0200 | [diff] [blame] | 266 | const unsigned char *buf, size_t buflen, |
| 267 | mbedtls_x509_csr_ext_cb_t cb, |
| 268 | void *p_ctx) |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 269 | { |
Janos Follath | 865b3eb | 2019-12-16 11:46:15 +0000 | [diff] [blame] | 270 | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 271 | size_t len; |
| 272 | unsigned char *p, *end; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 273 | mbedtls_x509_buf sig_params; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 274 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 275 | memset(&sig_params, 0, sizeof(mbedtls_x509_buf)); |
Manuel Pégourié-Gonnard | dddbb1d | 2014-06-05 17:02:24 +0200 | [diff] [blame] | 276 | |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 277 | /* |
| 278 | * Check for valid input |
| 279 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 280 | if (csr == NULL || buf == NULL || buflen == 0) { |
| 281 | return MBEDTLS_ERR_X509_BAD_INPUT_DATA; |
| 282 | } |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 283 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 284 | mbedtls_x509_csr_init(csr); |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 285 | |
Manuel Pégourié-Gonnard | f3b4724 | 2014-06-16 18:06:48 +0200 | [diff] [blame] | 286 | /* |
| 287 | * first copy the raw DER data |
| 288 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 289 | p = mbedtls_calloc(1, len = buflen); |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 290 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 291 | if (p == NULL) { |
| 292 | return MBEDTLS_ERR_X509_ALLOC_FAILED; |
| 293 | } |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 294 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 295 | memcpy(p, buf, buflen); |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 296 | |
| 297 | csr->raw.p = p; |
| 298 | csr->raw.len = len; |
| 299 | end = p + len; |
| 300 | |
| 301 | /* |
| 302 | * CertificationRequest ::= SEQUENCE { |
| 303 | * certificationRequestInfo CertificationRequestInfo, |
| 304 | * signatureAlgorithm AlgorithmIdentifier, |
| 305 | * signature BIT STRING |
| 306 | * } |
| 307 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 308 | if ((ret = mbedtls_asn1_get_tag(&p, end, &len, |
| 309 | MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE)) != 0) { |
| 310 | mbedtls_x509_csr_free(csr); |
| 311 | return MBEDTLS_ERR_X509_INVALID_FORMAT; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 312 | } |
| 313 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 314 | if (len != (size_t) (end - p)) { |
| 315 | mbedtls_x509_csr_free(csr); |
| 316 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_FORMAT, |
| 317 | MBEDTLS_ERR_ASN1_LENGTH_MISMATCH); |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | /* |
| 321 | * CertificationRequestInfo ::= SEQUENCE { |
| 322 | */ |
| 323 | csr->cri.p = p; |
| 324 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 325 | if ((ret = mbedtls_asn1_get_tag(&p, end, &len, |
| 326 | MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE)) != 0) { |
| 327 | mbedtls_x509_csr_free(csr); |
| 328 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_FORMAT, ret); |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | end = p + len; |
Dave Rodgman | e4a6f5a | 2023-11-04 12:20:09 +0000 | [diff] [blame] | 332 | csr->cri.len = (size_t) (end - csr->cri.p); |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 333 | |
| 334 | /* |
| 335 | * Version ::= INTEGER { v1(0) } |
| 336 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 337 | if ((ret = x509_csr_get_version(&p, end, &csr->version)) != 0) { |
| 338 | mbedtls_x509_csr_free(csr); |
| 339 | return ret; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 340 | } |
| 341 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 342 | if (csr->version != 0) { |
| 343 | mbedtls_x509_csr_free(csr); |
| 344 | return MBEDTLS_ERR_X509_UNKNOWN_VERSION; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 345 | } |
| 346 | |
Andres AG | 2e3ddfa | 2017-02-17 13:54:43 +0000 | [diff] [blame] | 347 | csr->version++; |
| 348 | |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 349 | /* |
| 350 | * subject Name |
| 351 | */ |
| 352 | csr->subject_raw.p = p; |
| 353 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 354 | if ((ret = mbedtls_asn1_get_tag(&p, end, &len, |
| 355 | MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE)) != 0) { |
| 356 | mbedtls_x509_csr_free(csr); |
| 357 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_FORMAT, ret); |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 358 | } |
| 359 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 360 | if ((ret = mbedtls_x509_get_name(&p, p + len, &csr->subject)) != 0) { |
| 361 | mbedtls_x509_csr_free(csr); |
| 362 | return ret; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 363 | } |
| 364 | |
Dave Rodgman | e4a6f5a | 2023-11-04 12:20:09 +0000 | [diff] [blame] | 365 | csr->subject_raw.len = (size_t) (p - csr->subject_raw.p); |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 366 | |
| 367 | /* |
| 368 | * subjectPKInfo SubjectPublicKeyInfo |
| 369 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 370 | if ((ret = mbedtls_pk_parse_subpubkey(&p, end, &csr->pk)) != 0) { |
| 371 | mbedtls_x509_csr_free(csr); |
| 372 | return ret; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | /* |
| 376 | * attributes [0] Attributes |
Manuel Pégourié-Gonnard | 986bbf2 | 2016-02-24 14:36:05 +0000 | [diff] [blame] | 377 | * |
| 378 | * The list of possible attributes is open-ended, though RFC 2985 |
| 379 | * (PKCS#9) defines a few in section 5.4. We currently don't support any, |
| 380 | * so we just ignore them. This is a safe thing to do as the worst thing |
| 381 | * that could happen is that we issue a certificate that does not match |
| 382 | * the requester's expectations - this cannot cause a violation of our |
| 383 | * signature policies. |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 384 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 385 | if ((ret = mbedtls_asn1_get_tag(&p, end, &len, |
| 386 | MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_CONTEXT_SPECIFIC)) != |
| 387 | 0) { |
| 388 | mbedtls_x509_csr_free(csr); |
| 389 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_FORMAT, ret); |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 390 | } |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 391 | |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 392 | if ((ret = x509_csr_parse_attributes(csr, p, p + len, cb, p_ctx)) != 0) { |
Jens Alfke | 2d9e359 | 2019-10-29 15:03:37 -0700 | [diff] [blame] | 393 | mbedtls_x509_csr_free(csr); |
| 394 | return ret; |
| 395 | } |
| 396 | |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 397 | p += len; |
| 398 | |
| 399 | end = csr->raw.p + csr->raw.len; |
| 400 | |
| 401 | /* |
| 402 | * signatureAlgorithm AlgorithmIdentifier, |
| 403 | * signature BIT STRING |
| 404 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 405 | if ((ret = mbedtls_x509_get_alg(&p, end, &csr->sig_oid, &sig_params)) != 0) { |
| 406 | mbedtls_x509_csr_free(csr); |
| 407 | return ret; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 408 | } |
| 409 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 410 | if ((ret = mbedtls_x509_get_sig_alg(&csr->sig_oid, &sig_params, |
| 411 | &csr->sig_md, &csr->sig_pk, |
| 412 | &csr->sig_opts)) != 0) { |
| 413 | mbedtls_x509_csr_free(csr); |
| 414 | return MBEDTLS_ERR_X509_UNKNOWN_SIG_ALG; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 415 | } |
| 416 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 417 | if ((ret = mbedtls_x509_get_sig(&p, end, &csr->sig)) != 0) { |
| 418 | mbedtls_x509_csr_free(csr); |
| 419 | return ret; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 420 | } |
| 421 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 422 | if (p != end) { |
| 423 | mbedtls_x509_csr_free(csr); |
| 424 | return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_X509_INVALID_FORMAT, |
| 425 | MBEDTLS_ERR_ASN1_LENGTH_MISMATCH); |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 426 | } |
| 427 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 428 | return 0; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 429 | } |
| 430 | |
Manuel Pégourié-Gonnard | f3b4724 | 2014-06-16 18:06:48 +0200 | [diff] [blame] | 431 | /* |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 432 | * Parse a CSR in DER format |
| 433 | */ |
| 434 | int mbedtls_x509_csr_parse_der(mbedtls_x509_csr *csr, |
| 435 | const unsigned char *buf, size_t buflen) |
| 436 | { |
| 437 | return mbedtls_x509_csr_parse_der_internal(csr, buf, buflen, NULL, NULL); |
| 438 | } |
| 439 | |
| 440 | /* |
| 441 | * Parse a CSR in DER format with callback for unknown extensions |
| 442 | */ |
| 443 | int mbedtls_x509_csr_parse_der_with_ext_cb(mbedtls_x509_csr *csr, |
Matthias Schulz | edc32ea | 2023-10-19 16:09:08 +0200 | [diff] [blame] | 444 | const unsigned char *buf, size_t buflen, |
| 445 | mbedtls_x509_csr_ext_cb_t cb, |
| 446 | void *p_ctx) |
Matthias Schulz | ab40822 | 2023-10-18 13:20:59 +0200 | [diff] [blame] | 447 | { |
| 448 | return mbedtls_x509_csr_parse_der_internal(csr, buf, buflen, cb, p_ctx); |
| 449 | } |
| 450 | |
| 451 | /* |
Manuel Pégourié-Gonnard | f3b4724 | 2014-06-16 18:06:48 +0200 | [diff] [blame] | 452 | * Parse a CSR, allowing for PEM or raw DER encoding |
| 453 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 454 | int mbedtls_x509_csr_parse(mbedtls_x509_csr *csr, const unsigned char *buf, size_t buflen) |
Manuel Pégourié-Gonnard | f3b4724 | 2014-06-16 18:06:48 +0200 | [diff] [blame] | 455 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 456 | #if defined(MBEDTLS_PEM_PARSE_C) |
Janos Follath | 865b3eb | 2019-12-16 11:46:15 +0000 | [diff] [blame] | 457 | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
Manuel Pégourié-Gonnard | f3b4724 | 2014-06-16 18:06:48 +0200 | [diff] [blame] | 458 | size_t use_len; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 459 | mbedtls_pem_context pem; |
Manuel Pégourié-Gonnard | f3b4724 | 2014-06-16 18:06:48 +0200 | [diff] [blame] | 460 | #endif |
| 461 | |
| 462 | /* |
| 463 | * Check for valid input |
| 464 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 465 | if (csr == NULL || buf == NULL || buflen == 0) { |
| 466 | return MBEDTLS_ERR_X509_BAD_INPUT_DATA; |
| 467 | } |
Manuel Pégourié-Gonnard | f3b4724 | 2014-06-16 18:06:48 +0200 | [diff] [blame] | 468 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 469 | #if defined(MBEDTLS_PEM_PARSE_C) |
Manuel Pégourié-Gonnard | 43b37cb | 2015-05-12 11:20:10 +0200 | [diff] [blame] | 470 | /* Avoid calling mbedtls_pem_read_buffer() on non-null-terminated string */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 471 | if (buf[buflen - 1] == '\0') { |
| 472 | mbedtls_pem_init(&pem); |
| 473 | ret = mbedtls_pem_read_buffer(&pem, |
| 474 | "-----BEGIN CERTIFICATE REQUEST-----", |
| 475 | "-----END CERTIFICATE REQUEST-----", |
| 476 | buf, NULL, 0, &use_len); |
| 477 | if (ret == MBEDTLS_ERR_PEM_NO_HEADER_FOOTER_PRESENT) { |
| 478 | ret = mbedtls_pem_read_buffer(&pem, |
| 479 | "-----BEGIN NEW CERTIFICATE REQUEST-----", |
| 480 | "-----END NEW CERTIFICATE REQUEST-----", |
| 481 | buf, NULL, 0, &use_len); |
Simon Butcher | 0488ce6 | 2018-09-30 15:36:50 +0100 | [diff] [blame] | 482 | } |
Simon Butcher | e1660af | 2018-10-07 17:48:37 +0100 | [diff] [blame] | 483 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 484 | if (ret == 0) { |
Philippe Antoine | c03059d | 2018-06-14 07:35:11 +0200 | [diff] [blame] | 485 | /* |
| 486 | * Was PEM encoded, parse the result |
| 487 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 488 | ret = mbedtls_x509_csr_parse_der(csr, pem.buf, pem.buflen); |
Simon Butcher | 0488ce6 | 2018-09-30 15:36:50 +0100 | [diff] [blame] | 489 | } |
Manuel Pégourié-Gonnard | f3b4724 | 2014-06-16 18:06:48 +0200 | [diff] [blame] | 490 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 491 | mbedtls_pem_free(&pem); |
| 492 | if (ret != MBEDTLS_ERR_PEM_NO_HEADER_FOOTER_PRESENT) { |
| 493 | return ret; |
| 494 | } |
Manuel Pégourié-Gonnard | f3b4724 | 2014-06-16 18:06:48 +0200 | [diff] [blame] | 495 | } |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 496 | #endif /* MBEDTLS_PEM_PARSE_C */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 497 | return mbedtls_x509_csr_parse_der(csr, buf, buflen); |
Manuel Pégourié-Gonnard | f3b4724 | 2014-06-16 18:06:48 +0200 | [diff] [blame] | 498 | } |
| 499 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 500 | #if defined(MBEDTLS_FS_IO) |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 501 | /* |
| 502 | * Load a CSR into the structure |
| 503 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 504 | int mbedtls_x509_csr_parse_file(mbedtls_x509_csr *csr, const char *path) |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 505 | { |
Janos Follath | 865b3eb | 2019-12-16 11:46:15 +0000 | [diff] [blame] | 506 | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 507 | size_t n; |
| 508 | unsigned char *buf; |
| 509 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 510 | if ((ret = mbedtls_pk_load_file(path, &buf, &n)) != 0) { |
| 511 | return ret; |
| 512 | } |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 513 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 514 | ret = mbedtls_x509_csr_parse(csr, buf, n); |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 515 | |
Tom Cosgrove | ca8c61b | 2023-07-17 15:17:40 +0100 | [diff] [blame] | 516 | mbedtls_zeroize_and_free(buf, n); |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 517 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 518 | return ret; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 519 | } |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 520 | #endif /* MBEDTLS_FS_IO */ |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 521 | |
Hanno Becker | 612a2f1 | 2020-10-09 09:19:39 +0100 | [diff] [blame] | 522 | #if !defined(MBEDTLS_X509_REMOVE_INFO) |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 523 | #define BEFORE_COLON 14 |
| 524 | #define BC "14" |
| 525 | /* |
| 526 | * Return an informational string about the CSR. |
| 527 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 528 | int mbedtls_x509_csr_info(char *buf, size_t size, const char *prefix, |
| 529 | const mbedtls_x509_csr *csr) |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 530 | { |
Janos Follath | 865b3eb | 2019-12-16 11:46:15 +0000 | [diff] [blame] | 531 | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 532 | size_t n; |
| 533 | char *p; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 534 | char key_size_str[BEFORE_COLON]; |
| 535 | |
| 536 | p = buf; |
| 537 | n = size; |
| 538 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 539 | ret = mbedtls_snprintf(p, n, "%sCSR version : %d", |
| 540 | prefix, csr->version); |
Manuel Pégourié-Gonnard | 1685368 | 2015-06-22 11:12:02 +0200 | [diff] [blame] | 541 | MBEDTLS_X509_SAFE_SNPRINTF; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 542 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 543 | ret = mbedtls_snprintf(p, n, "\n%ssubject name : ", prefix); |
Manuel Pégourié-Gonnard | 1685368 | 2015-06-22 11:12:02 +0200 | [diff] [blame] | 544 | MBEDTLS_X509_SAFE_SNPRINTF; |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 545 | ret = mbedtls_x509_dn_gets(p, n, &csr->subject); |
Manuel Pégourié-Gonnard | 1685368 | 2015-06-22 11:12:02 +0200 | [diff] [blame] | 546 | MBEDTLS_X509_SAFE_SNPRINTF; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 547 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 548 | ret = mbedtls_snprintf(p, n, "\n%ssigned using : ", prefix); |
Manuel Pégourié-Gonnard | 1685368 | 2015-06-22 11:12:02 +0200 | [diff] [blame] | 549 | MBEDTLS_X509_SAFE_SNPRINTF; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 550 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 551 | ret = mbedtls_x509_sig_alg_gets(p, n, &csr->sig_oid, csr->sig_pk, csr->sig_md, |
| 552 | csr->sig_opts); |
Manuel Pégourié-Gonnard | 1685368 | 2015-06-22 11:12:02 +0200 | [diff] [blame] | 553 | MBEDTLS_X509_SAFE_SNPRINTF; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 554 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 555 | if ((ret = mbedtls_x509_key_size_helper(key_size_str, BEFORE_COLON, |
| 556 | mbedtls_pk_get_name(&csr->pk))) != 0) { |
| 557 | return ret; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 558 | } |
| 559 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 560 | ret = mbedtls_snprintf(p, n, "\n%s%-" BC "s: %d bits\n", prefix, key_size_str, |
| 561 | (int) mbedtls_pk_get_bitlen(&csr->pk)); |
Manuel Pégourié-Gonnard | 1685368 | 2015-06-22 11:12:02 +0200 | [diff] [blame] | 562 | MBEDTLS_X509_SAFE_SNPRINTF; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 563 | |
Przemek Stekiel | cbaf316 | 2023-01-12 12:58:02 +0100 | [diff] [blame] | 564 | /* |
| 565 | * Optional extensions |
| 566 | */ |
| 567 | |
| 568 | if (csr->ext_types & MBEDTLS_X509_EXT_SUBJECT_ALT_NAME) { |
| 569 | ret = mbedtls_snprintf(p, n, "\n%ssubject alt name :", prefix); |
| 570 | MBEDTLS_X509_SAFE_SNPRINTF; |
| 571 | |
Przemek Stekiel | 21c3728 | 2023-01-16 08:47:49 +0100 | [diff] [blame] | 572 | if ((ret = mbedtls_x509_info_subject_alt_name(&p, &n, |
| 573 | &csr->subject_alt_names, |
| 574 | prefix)) != 0) { |
Przemek Stekiel | cbaf316 | 2023-01-12 12:58:02 +0100 | [diff] [blame] | 575 | return ret; |
| 576 | } |
| 577 | } |
| 578 | |
| 579 | if (csr->ext_types & MBEDTLS_X509_EXT_NS_CERT_TYPE) { |
| 580 | ret = mbedtls_snprintf(p, n, "\n%scert. type : ", prefix); |
| 581 | MBEDTLS_X509_SAFE_SNPRINTF; |
| 582 | |
Przemek Stekiel | 21c3728 | 2023-01-16 08:47:49 +0100 | [diff] [blame] | 583 | if ((ret = mbedtls_x509_info_cert_type(&p, &n, csr->ns_cert_type)) != 0) { |
Przemek Stekiel | cbaf316 | 2023-01-12 12:58:02 +0100 | [diff] [blame] | 584 | return ret; |
| 585 | } |
| 586 | } |
| 587 | |
| 588 | if (csr->ext_types & MBEDTLS_X509_EXT_KEY_USAGE) { |
| 589 | ret = mbedtls_snprintf(p, n, "\n%skey usage : ", prefix); |
| 590 | MBEDTLS_X509_SAFE_SNPRINTF; |
| 591 | |
Przemek Stekiel | 21c3728 | 2023-01-16 08:47:49 +0100 | [diff] [blame] | 592 | if ((ret = mbedtls_x509_info_key_usage(&p, &n, csr->key_usage)) != 0) { |
Przemek Stekiel | cbaf316 | 2023-01-12 12:58:02 +0100 | [diff] [blame] | 593 | return ret; |
| 594 | } |
| 595 | } |
| 596 | |
| 597 | if (csr->ext_types != 0) { |
| 598 | ret = mbedtls_snprintf(p, n, "\n"); |
| 599 | MBEDTLS_X509_SAFE_SNPRINTF; |
| 600 | } |
| 601 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 602 | return (int) (size - n); |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 603 | } |
Hanno Becker | 612a2f1 | 2020-10-09 09:19:39 +0100 | [diff] [blame] | 604 | #endif /* MBEDTLS_X509_REMOVE_INFO */ |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 605 | |
| 606 | /* |
Paul Bakker | 369d2eb | 2013-09-18 11:58:25 +0200 | [diff] [blame] | 607 | * Initialize a CSR |
| 608 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 609 | void mbedtls_x509_csr_init(mbedtls_x509_csr *csr) |
Paul Bakker | 369d2eb | 2013-09-18 11:58:25 +0200 | [diff] [blame] | 610 | { |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 611 | memset(csr, 0, sizeof(mbedtls_x509_csr)); |
Paul Bakker | 369d2eb | 2013-09-18 11:58:25 +0200 | [diff] [blame] | 612 | } |
| 613 | |
| 614 | /* |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 615 | * Unallocate all CSR data |
| 616 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 617 | void mbedtls_x509_csr_free(mbedtls_x509_csr *csr) |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 618 | { |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 619 | if (csr == NULL) { |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 620 | return; |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 621 | } |
| 622 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 623 | mbedtls_pk_free(&csr->pk); |
| 624 | |
| 625 | #if defined(MBEDTLS_X509_RSASSA_PSS_SUPPORT) |
| 626 | mbedtls_free(csr->sig_opts); |
| 627 | #endif |
| 628 | |
| 629 | mbedtls_asn1_free_named_data_list_shallow(csr->subject.next); |
Przemek Stekiel | a468768 | 2023-01-24 15:19:47 +0100 | [diff] [blame] | 630 | mbedtls_asn1_sequence_free(csr->subject_alt_names.next); |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 631 | |
| 632 | if (csr->raw.p != NULL) { |
Tom Cosgrove | ca8c61b | 2023-07-17 15:17:40 +0100 | [diff] [blame] | 633 | mbedtls_zeroize_and_free(csr->raw.p, csr->raw.len); |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 634 | } |
| 635 | |
| 636 | mbedtls_platform_zeroize(csr, sizeof(mbedtls_x509_csr)); |
Paul Bakker | 7c6b2c3 | 2013-09-16 13:49:26 +0200 | [diff] [blame] | 637 | } |
| 638 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 639 | #endif /* MBEDTLS_X509_CSR_PARSE_C */ |