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