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 | /** |
Nick Child | 8ce1b1a | 2022-09-14 14:51:23 -0500 | [diff] [blame] | 25 | * Note: For the time being, this implementation of the PKCS7 cryptographic |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 26 | * message syntax is a partial implementation of RFC 2315. |
| 27 | * Differences include: |
| 28 | * - The RFC specifies 6 different content types. The only type currently |
Nick Child | 8ce1b1a | 2022-09-14 14:51:23 -0500 | [diff] [blame] | 29 | * supported in Mbed TLS is the signed data content type. |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 30 | * - The only supported PKCS7 Signed Data syntax version is version 1 |
Nick Child | 8ce1b1a | 2022-09-14 14:51:23 -0500 | [diff] [blame] | 31 | * - The RFC specifies support for BER. This implementation is limited to |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 32 | * DER only. |
| 33 | * - The RFC specifies that multiple digest algorithms can be specified |
Nick Child | 8ce1b1a | 2022-09-14 14:51:23 -0500 | [diff] [blame] | 34 | * in the Signed Data type. Only one digest algorithm is supported in Mbed TLS. |
| 35 | * - The RFC specifies the Signed Data type can contain multiple X509 or PKCS6 |
| 36 | * certificates. In Mbed TLS, this list can only contain 0 or 1 certificates |
| 37 | * and they must be in X509 format. |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 38 | * - The RFC specifies the Signed Data type can contain |
Nick Child | 8ce1b1a | 2022-09-14 14:51:23 -0500 | [diff] [blame] | 39 | * certificate-revocation lists (crls). This implementation has no support |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 40 | * for crls so it is assumed to be an empty list. |
Nick Child | bb82ab7 | 2022-10-28 12:28:54 -0500 | [diff] [blame] | 41 | * - The RFC allows for SignerInfo structure to optionally contain |
| 42 | * unauthenticatedAttributes and authenticatedAttributes. In Mbed TLS it is |
| 43 | * assumed these fields are empty. |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 44 | */ |
| 45 | |
| 46 | #ifndef MBEDTLS_PKCS7_H |
| 47 | #define MBEDTLS_PKCS7_H |
| 48 | |
Nick Child | 390e61a | 2021-08-09 13:33:14 -0400 | [diff] [blame] | 49 | #include "mbedtls/private_access.h" |
| 50 | |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 51 | #include "mbedtls/build_info.h" |
| 52 | |
Nick Child | 7dbe852 | 2022-09-30 17:24:29 -0500 | [diff] [blame] | 53 | #include "mbedtls/asn1.h" |
| 54 | #include "mbedtls/x509.h" |
| 55 | #include "mbedtls/x509_crt.h" |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 56 | |
| 57 | /** |
| 58 | * \name PKCS7 Module Error codes |
| 59 | * \{ |
| 60 | */ |
| 61 | #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] | 62 | #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] | 63 | #define MBEDTLS_ERR_PKCS7_INVALID_VERSION -0x5400 /**< The PKCS7 version element is invalid or cannot be parsed. */ |
Nick Child | 9512bde | 2022-09-16 09:49:06 -0500 | [diff] [blame] | 64 | #define MBEDTLS_ERR_PKCS7_INVALID_CONTENT_INFO -0x5480 /**< The PKCS7 content info invalid or cannot be parsed. */ |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 65 | #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] | 66 | #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] | 67 | #define MBEDTLS_ERR_PKCS7_INVALID_SIGNATURE -0x5600 /**< Error parsing the signature */ |
Nick Child | 9512bde | 2022-09-16 09:49:06 -0500 | [diff] [blame] | 68 | #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] | 69 | #define MBEDTLS_ERR_PKCS7_BAD_INPUT_DATA -0x5700 /**< Input invalid. */ |
Nick Child | 9512bde | 2022-09-16 09:49:06 -0500 | [diff] [blame] | 70 | #define MBEDTLS_ERR_PKCS7_ALLOC_FAILED -0x5780 /**< Allocation of memory failed. */ |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 71 | #define MBEDTLS_ERR_PKCS7_VERIFY_FAIL -0x5800 /**< Verification Failed */ |
Nick Child | 3951a4f | 2022-10-31 09:17:15 -0500 | [diff] [blame] | 72 | #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] | 73 | /* \} name */ |
| 74 | |
| 75 | /** |
| 76 | * \name PKCS7 Supported Version |
| 77 | * \{ |
| 78 | */ |
| 79 | #define MBEDTLS_PKCS7_SUPPORTED_VERSION 0x01 |
| 80 | /* \} name */ |
| 81 | |
| 82 | #ifdef __cplusplus |
| 83 | extern "C" { |
| 84 | #endif |
| 85 | |
| 86 | /** |
| 87 | * Type-length-value structure that allows for ASN1 using DER. |
| 88 | */ |
| 89 | typedef mbedtls_asn1_buf mbedtls_pkcs7_buf; |
| 90 | |
| 91 | /** |
| 92 | * Container for ASN1 named information objects. |
| 93 | * It allows for Relative Distinguished Names (e.g. cn=localhost,ou=code,etc.). |
| 94 | */ |
| 95 | typedef mbedtls_asn1_named_data mbedtls_pkcs7_name; |
| 96 | |
| 97 | /** |
| 98 | * Container for a sequence of ASN.1 items |
| 99 | */ |
| 100 | typedef mbedtls_asn1_sequence mbedtls_pkcs7_sequence; |
| 101 | |
| 102 | /** |
Nayna Jain | 673a226 | 2020-12-14 22:44:49 +0000 | [diff] [blame] | 103 | * PKCS7 types |
| 104 | */ |
| 105 | typedef enum { |
| 106 | MBEDTLS_PKCS7_NONE=0, |
| 107 | MBEDTLS_PKCS7_DATA, |
| 108 | MBEDTLS_PKCS7_SIGNED_DATA, |
| 109 | MBEDTLS_PKCS7_ENVELOPED_DATA, |
| 110 | MBEDTLS_PKCS7_SIGNED_AND_ENVELOPED_DATA, |
| 111 | MBEDTLS_PKCS7_DIGESTED_DATA, |
| 112 | MBEDTLS_PKCS7_ENCRYPTED_DATA, |
| 113 | } |
| 114 | mbedtls_pkcs7_type; |
| 115 | |
| 116 | /** |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 117 | * Structure holding PKCS7 signer info |
| 118 | */ |
| 119 | typedef struct mbedtls_pkcs7_signer_info |
| 120 | { |
Nick Child | 390e61a | 2021-08-09 13:33:14 -0400 | [diff] [blame] | 121 | int MBEDTLS_PRIVATE(version); |
| 122 | mbedtls_x509_buf MBEDTLS_PRIVATE(serial); |
| 123 | mbedtls_x509_name MBEDTLS_PRIVATE(issuer); |
| 124 | mbedtls_x509_buf MBEDTLS_PRIVATE(issuer_raw); |
| 125 | mbedtls_x509_buf MBEDTLS_PRIVATE(alg_identifier); |
| 126 | mbedtls_x509_buf MBEDTLS_PRIVATE(sig_alg_identifier); |
| 127 | mbedtls_x509_buf MBEDTLS_PRIVATE(sig); |
| 128 | struct mbedtls_pkcs7_signer_info *MBEDTLS_PRIVATE(next); |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 129 | } |
| 130 | mbedtls_pkcs7_signer_info; |
| 131 | |
| 132 | /** |
| 133 | * Structure holding attached data as part of PKCS7 signed data format |
| 134 | */ |
| 135 | typedef struct mbedtls_pkcs7_data |
| 136 | { |
Nick Child | 390e61a | 2021-08-09 13:33:14 -0400 | [diff] [blame] | 137 | mbedtls_pkcs7_buf MBEDTLS_PRIVATE(oid); |
| 138 | mbedtls_pkcs7_buf MBEDTLS_PRIVATE(data); |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 139 | } |
| 140 | mbedtls_pkcs7_data; |
| 141 | |
| 142 | /** |
| 143 | * Structure holding the signed data section |
| 144 | */ |
| 145 | typedef struct mbedtls_pkcs7_signed_data |
| 146 | { |
Nick Child | 390e61a | 2021-08-09 13:33:14 -0400 | [diff] [blame] | 147 | int MBEDTLS_PRIVATE(version); |
| 148 | mbedtls_pkcs7_buf MBEDTLS_PRIVATE(digest_alg_identifiers); |
| 149 | struct mbedtls_pkcs7_data MBEDTLS_PRIVATE(content); |
| 150 | int MBEDTLS_PRIVATE(no_of_certs); |
| 151 | mbedtls_x509_crt MBEDTLS_PRIVATE(certs); |
| 152 | int MBEDTLS_PRIVATE(no_of_crls); |
| 153 | mbedtls_x509_crl MBEDTLS_PRIVATE(crl); |
| 154 | int MBEDTLS_PRIVATE(no_of_signers); |
| 155 | mbedtls_pkcs7_signer_info MBEDTLS_PRIVATE(signers); |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 156 | } |
| 157 | mbedtls_pkcs7_signed_data; |
| 158 | |
| 159 | /** |
| 160 | * Structure holding PKCS7 structure, only signed data for now |
| 161 | */ |
| 162 | typedef struct mbedtls_pkcs7 |
| 163 | { |
Nick Child | 390e61a | 2021-08-09 13:33:14 -0400 | [diff] [blame] | 164 | mbedtls_pkcs7_buf MBEDTLS_PRIVATE(raw); |
| 165 | mbedtls_pkcs7_buf MBEDTLS_PRIVATE(content_type_oid); |
| 166 | mbedtls_pkcs7_signed_data MBEDTLS_PRIVATE(signed_data); |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 167 | } |
| 168 | mbedtls_pkcs7; |
| 169 | |
| 170 | /** |
| 171 | * \brief Initialize pkcs7 structure. |
| 172 | * |
| 173 | * \param pkcs7 pkcs7 structure. |
| 174 | */ |
| 175 | void mbedtls_pkcs7_init( mbedtls_pkcs7 *pkcs7 ); |
| 176 | |
| 177 | /** |
| 178 | * \brief Parse a single DER formatted pkcs7 content. |
| 179 | * |
| 180 | * \param pkcs7 The pkcs7 structure to be filled by parser for the output. |
| 181 | * \param buf The buffer holding the DER encoded pkcs7. |
| 182 | * \param buflen The size in Bytes of \p buf. |
| 183 | * |
| 184 | * \note This function makes an internal copy of the PKCS7 buffer |
| 185 | * \p buf. In particular, \p buf may be destroyed or reused |
| 186 | * after this call returns. |
| 187 | * |
Nayna Jain | 673a226 | 2020-12-14 22:44:49 +0000 | [diff] [blame] | 188 | * \return The \c mbedtls_pkcs7_type of \p buf, if successful. |
Nayna Jain | c9deb18 | 2020-11-16 19:03:12 +0000 | [diff] [blame] | 189 | * \return A negative error code on failure. |
| 190 | */ |
| 191 | int mbedtls_pkcs7_parse_der( mbedtls_pkcs7 *pkcs7, const unsigned char *buf, |
| 192 | const size_t buflen ); |
| 193 | |
| 194 | /** |
| 195 | * \brief Verification of PKCS7 signature. |
| 196 | * |
| 197 | * \param pkcs7 PKCS7 structure containing signature. |
| 198 | * \param cert Certificate containing key to verify signature. |
| 199 | * \param data Plain data on which signature has to be verified. |
| 200 | * \param datalen Length of the data. |
| 201 | * |
| 202 | * \note This function internally calculates the hash on the supplied |
| 203 | * plain data for signature verification. |
| 204 | * |
| 205 | * \return A negative error code on failure. |
| 206 | */ |
| 207 | int mbedtls_pkcs7_signed_data_verify( mbedtls_pkcs7 *pkcs7, |
| 208 | const mbedtls_x509_crt *cert, |
| 209 | const unsigned char *data, |
| 210 | size_t datalen ); |
| 211 | |
| 212 | /** |
| 213 | * \brief Verification of PKCS7 signature. |
| 214 | * |
| 215 | * \param pkcs7 PKCS7 structure containing signature. |
| 216 | * \param cert Certificate containing key to verify signature. |
| 217 | * \param hash Hash of the plain data on which signature has to be verified. |
| 218 | * \param hashlen Length of the hash. |
| 219 | * |
| 220 | * \note This function is different from mbedtls_pkcs7_signed_data_verify() |
| 221 | * in a way that it directly recieves the hash of the data. |
| 222 | * |
| 223 | * \return A negative error code on failure. |
| 224 | */ |
| 225 | int mbedtls_pkcs7_signed_hash_verify( mbedtls_pkcs7 *pkcs7, |
| 226 | const mbedtls_x509_crt *cert, |
| 227 | const unsigned char *hash, size_t hashlen); |
| 228 | |
| 229 | /** |
| 230 | * \brief Unallocate all PKCS7 data and zeroize the memory. |
| 231 | * It doesn't free pkcs7 itself. It should be done by the caller. |
| 232 | * |
| 233 | * \param pkcs7 PKCS7 structure to free. |
| 234 | */ |
| 235 | void mbedtls_pkcs7_free( mbedtls_pkcs7 *pkcs7 ); |
| 236 | |
| 237 | #ifdef __cplusplus |
| 238 | } |
| 239 | #endif |
| 240 | |
| 241 | #endif /* pkcs7.h */ |