Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 1 | /** |
| 2 | * \file pkcs7.h |
| 3 | * |
| 4 | * \brief PKCS7 generic defines and structures |
| 5 | * https://tools.ietf.org/html/rfc2315 |
| 6 | */ |
| 7 | /* |
Nick Child | 5d881c3 | 2022-02-28 10:09:16 -0600 | [diff] [blame] | 8 | * Copyright The Mbed TLS Contributors |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 9 | * SPDX-License-Identifier: Apache-2.0 |
| 10 | * |
| 11 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 12 | * not use this file except in compliance with the License. |
| 13 | * You may obtain a copy of the License at |
| 14 | * |
| 15 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 16 | * |
| 17 | * Unless required by applicable law or agreed to in writing, software |
| 18 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 19 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 20 | * See the License for the specific language governing permissions and |
| 21 | * limitations under the License. |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 22 | */ |
| 23 | |
| 24 | /** |
Dave Rodgman | bc5f03d | 2022-12-01 12:36:57 +0000 | [diff] [blame] | 25 | * This feature is a work in progress and not ready for production. The API may |
| 26 | * change. Furthermore, please note that the implementation has only been |
| 27 | * validated with well-formed inputs, not yet with untrusted inputs (which is |
| 28 | * almost always the case in practice). |
| 29 | * |
Nick Child | 8ce1b1a | 2022-09-14 14:51:23 -0500 | [diff] [blame] | 30 | * Note: For the time being, this implementation of the PKCS7 cryptographic |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 31 | * message syntax is a partial implementation of RFC 2315. |
| 32 | * Differences include: |
| 33 | * - The RFC specifies 6 different content types. The only type currently |
Nick Child | 8ce1b1a | 2022-09-14 14:51:23 -0500 | [diff] [blame] | 34 | * supported in Mbed TLS is the signed data content type. |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 35 | * - The only supported PKCS7 Signed Data syntax version is version 1 |
Nick Child | 8ce1b1a | 2022-09-14 14:51:23 -0500 | [diff] [blame] | 36 | * - The RFC specifies support for BER. This implementation is limited to |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 37 | * DER only. |
| 38 | * - The RFC specifies that multiple digest algorithms can be specified |
Nick Child | 8ce1b1a | 2022-09-14 14:51:23 -0500 | [diff] [blame] | 39 | * in the Signed Data type. Only one digest algorithm is supported in Mbed TLS. |
| 40 | * - The RFC specifies the Signed Data type can contain multiple X509 or PKCS6 |
| 41 | * certificates. In Mbed TLS, this list can only contain 0 or 1 certificates |
| 42 | * and they must be in X509 format. |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 43 | * - The RFC specifies the Signed Data type can contain |
Nick Child | 8ce1b1a | 2022-09-14 14:51:23 -0500 | [diff] [blame] | 44 | * certificate-revocation lists (crls). This implementation has no support |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 45 | * for crls so it is assumed to be an empty list. |
Nick Child | bb82ab7 | 2022-10-28 12:28:54 -0500 | [diff] [blame] | 46 | * - The RFC allows for SignerInfo structure to optionally contain |
| 47 | * unauthenticatedAttributes and authenticatedAttributes. In Mbed TLS it is |
| 48 | * assumed these fields are empty. |
Nick Child | 3dafc6c | 2023-02-07 19:59:58 +0000 | [diff] [blame] | 49 | * - The RFC allows for the signed Data type to contain contentInfo. This |
| 50 | * implementation assumes the type is DATA and the content is empty. |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 51 | */ |
| 52 | |
| 53 | #ifndef MBEDTLS_PKCS7_H |
| 54 | #define MBEDTLS_PKCS7_H |
| 55 | |
Nick Child | 390e61a | 2021-08-09 13:33:14 -0400 | [diff] [blame] | 56 | #include "mbedtls/private_access.h" |
| 57 | |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 58 | #include "mbedtls/build_info.h" |
| 59 | |
Nick Child | 7dbe852 | 2022-09-30 17:24:29 -0500 | [diff] [blame] | 60 | #include "mbedtls/asn1.h" |
| 61 | #include "mbedtls/x509.h" |
| 62 | #include "mbedtls/x509_crt.h" |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 63 | |
| 64 | /** |
| 65 | * \name PKCS7 Module Error codes |
| 66 | * \{ |
| 67 | */ |
| 68 | #define MBEDTLS_ERR_PKCS7_INVALID_FORMAT -0x5300 /**< The format is invalid, e.g. different type expected. */ |
Nick Child | 9512bde | 2022-09-16 09:49:06 -0500 | [diff] [blame] | 69 | #define MBEDTLS_ERR_PKCS7_FEATURE_UNAVAILABLE -0x5380 /**< Unavailable feature, e.g. anything other than signed data. */ |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 70 | #define MBEDTLS_ERR_PKCS7_INVALID_VERSION -0x5400 /**< The PKCS7 version element is invalid or cannot be parsed. */ |
Nick Child | 77bc726 | 2023-01-30 16:46:10 +0000 | [diff] [blame] | 71 | #define MBEDTLS_ERR_PKCS7_INVALID_CONTENT_INFO -0x5480 /**< The PKCS7 content info is invalid or cannot be parsed. */ |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 72 | #define MBEDTLS_ERR_PKCS7_INVALID_ALG -0x5500 /**< The algorithm tag or value is invalid or cannot be parsed. */ |
Nick Child | 9512bde | 2022-09-16 09:49:06 -0500 | [diff] [blame] | 73 | #define MBEDTLS_ERR_PKCS7_INVALID_CERT -0x5580 /**< The certificate tag or value is invalid or cannot be parsed. */ |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 74 | #define MBEDTLS_ERR_PKCS7_INVALID_SIGNATURE -0x5600 /**< Error parsing the signature */ |
Nick Child | 9512bde | 2022-09-16 09:49:06 -0500 | [diff] [blame] | 75 | #define MBEDTLS_ERR_PKCS7_INVALID_SIGNER_INFO -0x5680 /**< Error parsing the signer's info */ |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 76 | #define MBEDTLS_ERR_PKCS7_BAD_INPUT_DATA -0x5700 /**< Input invalid. */ |
Nick Child | 9512bde | 2022-09-16 09:49:06 -0500 | [diff] [blame] | 77 | #define MBEDTLS_ERR_PKCS7_ALLOC_FAILED -0x5780 /**< Allocation of memory failed. */ |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 78 | #define MBEDTLS_ERR_PKCS7_VERIFY_FAIL -0x5800 /**< Verification Failed */ |
Nick Child | 3951a4f | 2022-10-31 09:17:15 -0500 | [diff] [blame] | 79 | #define MBEDTLS_ERR_PKCS7_CERT_DATE_INVALID -0x5880 /**< The PKCS7 date issued/expired dates are invalid */ |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 80 | /* \} name */ |
| 81 | |
| 82 | /** |
| 83 | * \name PKCS7 Supported Version |
| 84 | * \{ |
| 85 | */ |
| 86 | #define MBEDTLS_PKCS7_SUPPORTED_VERSION 0x01 |
| 87 | /* \} name */ |
| 88 | |
| 89 | #ifdef __cplusplus |
| 90 | extern "C" { |
| 91 | #endif |
| 92 | |
| 93 | /** |
| 94 | * Type-length-value structure that allows for ASN1 using DER. |
| 95 | */ |
| 96 | typedef mbedtls_asn1_buf mbedtls_pkcs7_buf; |
| 97 | |
| 98 | /** |
| 99 | * Container for ASN1 named information objects. |
| 100 | * It allows for Relative Distinguished Names (e.g. cn=localhost,ou=code,etc.). |
| 101 | */ |
| 102 | typedef mbedtls_asn1_named_data mbedtls_pkcs7_name; |
| 103 | |
| 104 | /** |
| 105 | * Container for a sequence of ASN.1 items |
| 106 | */ |
| 107 | typedef mbedtls_asn1_sequence mbedtls_pkcs7_sequence; |
| 108 | |
| 109 | /** |
Nayna Jain | 673a226 | 2020-12-14 22:44:49 +0000 | [diff] [blame] | 110 | * PKCS7 types |
| 111 | */ |
| 112 | typedef enum { |
| 113 | MBEDTLS_PKCS7_NONE=0, |
| 114 | MBEDTLS_PKCS7_DATA, |
| 115 | MBEDTLS_PKCS7_SIGNED_DATA, |
| 116 | MBEDTLS_PKCS7_ENVELOPED_DATA, |
| 117 | MBEDTLS_PKCS7_SIGNED_AND_ENVELOPED_DATA, |
| 118 | MBEDTLS_PKCS7_DIGESTED_DATA, |
| 119 | MBEDTLS_PKCS7_ENCRYPTED_DATA, |
| 120 | } |
| 121 | mbedtls_pkcs7_type; |
| 122 | |
| 123 | /** |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 124 | * Structure holding PKCS7 signer info |
| 125 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 126 | typedef struct mbedtls_pkcs7_signer_info { |
Nick Child | 390e61a | 2021-08-09 13:33:14 -0400 | [diff] [blame] | 127 | int MBEDTLS_PRIVATE(version); |
| 128 | mbedtls_x509_buf MBEDTLS_PRIVATE(serial); |
| 129 | mbedtls_x509_name MBEDTLS_PRIVATE(issuer); |
| 130 | mbedtls_x509_buf MBEDTLS_PRIVATE(issuer_raw); |
| 131 | mbedtls_x509_buf MBEDTLS_PRIVATE(alg_identifier); |
| 132 | mbedtls_x509_buf MBEDTLS_PRIVATE(sig_alg_identifier); |
| 133 | mbedtls_x509_buf MBEDTLS_PRIVATE(sig); |
| 134 | struct mbedtls_pkcs7_signer_info *MBEDTLS_PRIVATE(next); |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 135 | } |
| 136 | mbedtls_pkcs7_signer_info; |
| 137 | |
| 138 | /** |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 139 | * Structure holding the signed data section |
| 140 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 141 | typedef struct mbedtls_pkcs7_signed_data { |
Nick Child | 390e61a | 2021-08-09 13:33:14 -0400 | [diff] [blame] | 142 | int MBEDTLS_PRIVATE(version); |
| 143 | mbedtls_pkcs7_buf MBEDTLS_PRIVATE(digest_alg_identifiers); |
Nick Child | 390e61a | 2021-08-09 13:33:14 -0400 | [diff] [blame] | 144 | int MBEDTLS_PRIVATE(no_of_certs); |
| 145 | mbedtls_x509_crt MBEDTLS_PRIVATE(certs); |
| 146 | int MBEDTLS_PRIVATE(no_of_crls); |
| 147 | mbedtls_x509_crl MBEDTLS_PRIVATE(crl); |
| 148 | int MBEDTLS_PRIVATE(no_of_signers); |
| 149 | mbedtls_pkcs7_signer_info MBEDTLS_PRIVATE(signers); |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 150 | } |
| 151 | mbedtls_pkcs7_signed_data; |
| 152 | |
| 153 | /** |
| 154 | * Structure holding PKCS7 structure, only signed data for now |
| 155 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 156 | typedef struct mbedtls_pkcs7 { |
Nick Child | 390e61a | 2021-08-09 13:33:14 -0400 | [diff] [blame] | 157 | mbedtls_pkcs7_buf MBEDTLS_PRIVATE(raw); |
Nick Child | 390e61a | 2021-08-09 13:33:14 -0400 | [diff] [blame] | 158 | mbedtls_pkcs7_signed_data MBEDTLS_PRIVATE(signed_data); |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 159 | } |
| 160 | mbedtls_pkcs7; |
| 161 | |
| 162 | /** |
| 163 | * \brief Initialize pkcs7 structure. |
| 164 | * |
| 165 | * \param pkcs7 pkcs7 structure. |
| 166 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 167 | void mbedtls_pkcs7_init(mbedtls_pkcs7 *pkcs7); |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 168 | |
| 169 | /** |
Demi Marie Obenour | 6cfc469 | 2022-11-28 00:46:00 -0500 | [diff] [blame^] | 170 | * \brief Parse a single DER formatted pkcs7 detached signature. |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 171 | * |
| 172 | * \param pkcs7 The pkcs7 structure to be filled by parser for the output. |
Nick Child | ec81709 | 2022-12-15 15:54:03 -0600 | [diff] [blame] | 173 | * \param buf The buffer holding only the DER encoded pkcs7. |
| 174 | * \param buflen The size in bytes of \p buf. The size must be exactly the |
| 175 | * length of the DER encoded pkcs7. |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 176 | * |
| 177 | * \note This function makes an internal copy of the PKCS7 buffer |
| 178 | * \p buf. In particular, \p buf may be destroyed or reused |
| 179 | * after this call returns. |
Demi Marie Obenour | 6cfc469 | 2022-11-28 00:46:00 -0500 | [diff] [blame^] | 180 | * \note Signatures with internal data are not supported. |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 181 | * |
Nayna Jain | 673a226 | 2020-12-14 22:44:49 +0000 | [diff] [blame] | 182 | * \return The \c mbedtls_pkcs7_type of \p buf, if successful. |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 183 | * \return A negative error code on failure. |
| 184 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 185 | int mbedtls_pkcs7_parse_der(mbedtls_pkcs7 *pkcs7, const unsigned char *buf, |
| 186 | const size_t buflen); |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 187 | |
| 188 | /** |
Dave Rodgman | bc5f03d | 2022-12-01 12:36:57 +0000 | [diff] [blame] | 189 | * \brief Verification of PKCS7 signature against a caller-supplied |
| 190 | * certificate. |
| 191 | * |
| 192 | * For each signer in the PKCS structure, this function computes |
| 193 | * a signature over the supplied data, using the supplied |
| 194 | * certificate and the same digest algorithm as specified by the |
| 195 | * signer. It then compares this signature against the |
| 196 | * signer's signature; verification succeeds if any comparison |
| 197 | * matches. |
| 198 | * |
| 199 | * This function does not use the certificates held within the |
Demi Marie Obenour | 6cfc469 | 2022-11-28 00:46:00 -0500 | [diff] [blame^] | 200 | * PKCS7 structure itself, and does not check that the |
| 201 | * certificate is signed by a trusted certification authority. |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 202 | * |
| 203 | * \param pkcs7 PKCS7 structure containing signature. |
| 204 | * \param cert Certificate containing key to verify signature. |
| 205 | * \param data Plain data on which signature has to be verified. |
| 206 | * \param datalen Length of the data. |
| 207 | * |
| 208 | * \note This function internally calculates the hash on the supplied |
| 209 | * plain data for signature verification. |
| 210 | * |
Dave Rodgman | 235d1d8 | 2022-12-01 18:45:02 +0000 | [diff] [blame] | 211 | * \return 0 if the signature verifies, or a negative error code on failure. |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 212 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 213 | int mbedtls_pkcs7_signed_data_verify(mbedtls_pkcs7 *pkcs7, |
| 214 | const mbedtls_x509_crt *cert, |
| 215 | const unsigned char *data, |
| 216 | size_t datalen); |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 217 | |
| 218 | /** |
Dave Rodgman | bc5f03d | 2022-12-01 12:36:57 +0000 | [diff] [blame] | 219 | * \brief Verification of PKCS7 signature against a caller-supplied |
| 220 | * certificate. |
| 221 | * |
Demi Marie Obenour | 6cfc469 | 2022-11-28 00:46:00 -0500 | [diff] [blame^] | 222 | * For each signer in the PKCS structure, this function |
| 223 | * validates a signature over the supplied hash, using the |
| 224 | * supplied certificate and the same digest algorithm as |
| 225 | * specified by the signer. Verification succeeds if any |
| 226 | * signature is good. |
Dave Rodgman | bc5f03d | 2022-12-01 12:36:57 +0000 | [diff] [blame] | 227 | * |
| 228 | * This function does not use the certificates held within the |
Demi Marie Obenour | 6cfc469 | 2022-11-28 00:46:00 -0500 | [diff] [blame^] | 229 | * PKCS7 structure itself, and does not check that the |
| 230 | * certificate is signed by a trusted certification authority. |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 231 | * |
| 232 | * \param pkcs7 PKCS7 structure containing signature. |
| 233 | * \param cert Certificate containing key to verify signature. |
| 234 | * \param hash Hash of the plain data on which signature has to be verified. |
| 235 | * \param hashlen Length of the hash. |
| 236 | * |
| 237 | * \note This function is different from mbedtls_pkcs7_signed_data_verify() |
Demi Marie Obenour | 6cfc469 | 2022-11-28 00:46:00 -0500 | [diff] [blame^] | 238 | * in that it is directly passed the hash of the data. |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 239 | * |
Dave Rodgman | 235d1d8 | 2022-12-01 18:45:02 +0000 | [diff] [blame] | 240 | * \return 0 if the signature verifies, or a negative error code on failure. |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 241 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 242 | int mbedtls_pkcs7_signed_hash_verify(mbedtls_pkcs7 *pkcs7, |
| 243 | const mbedtls_x509_crt *cert, |
| 244 | const unsigned char *hash, size_t hashlen); |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 245 | |
| 246 | /** |
| 247 | * \brief Unallocate all PKCS7 data and zeroize the memory. |
| 248 | * It doesn't free pkcs7 itself. It should be done by the caller. |
| 249 | * |
| 250 | * \param pkcs7 PKCS7 structure to free. |
| 251 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 252 | void mbedtls_pkcs7_free(mbedtls_pkcs7 *pkcs7); |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 253 | |
| 254 | #ifdef __cplusplus |
| 255 | } |
| 256 | #endif |
| 257 | |
| 258 | #endif /* pkcs7.h */ |