blob: 70b25a9c60c7c04aedf62b12aec9af15d1ade4dd [file] [log] [blame]
Nayna Jainc9deb182020-11-16 19:03:12 +00001/**
2 * \file pkcs7.h
3 *
Dave Rodgman957cc362023-03-10 17:14:52 +00004 * \brief PKCS #7 generic defines and structures
Nayna Jainc9deb182020-11-16 19:03:12 +00005 * https://tools.ietf.org/html/rfc2315
6 */
7/*
Nick Child5d881c32022-02-28 10:09:16 -06008 * Copyright The Mbed TLS Contributors
Dave Rodgman16799db2023-11-02 19:47:20 +00009 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Nayna Jainc9deb182020-11-16 19:03:12 +000010 */
11
12/**
Dave Rodgman957cc362023-03-10 17:14:52 +000013 * Note: For the time being, this implementation of the PKCS #7 cryptographic
14 * message syntax is a partial implementation of RFC 2315.
Dave Rodgman25b2dfa2023-03-11 13:00:41 +000015 * Differences include:
Nayna Jainc9deb182020-11-16 19:03:12 +000016 * - The RFC specifies 6 different content types. The only type currently
Dave Rodgmanbcc92d42023-03-14 07:13:44 +000017 * supported in Mbed TLS is the signed-data content type.
Dave Rodgman957cc362023-03-10 17:14:52 +000018 * - The only supported PKCS #7 Signed Data syntax version is version 1
Nick Child8ce1b1a2022-09-14 14:51:23 -050019 * - The RFC specifies support for BER. This implementation is limited to
Nayna Jainc9deb182020-11-16 19:03:12 +000020 * DER only.
21 * - The RFC specifies that multiple digest algorithms can be specified
Nick Child8ce1b1a2022-09-14 14:51:23 -050022 * in the Signed Data type. Only one digest algorithm is supported in Mbed TLS.
Dave Rodgmancdaaef52023-03-14 07:13:50 +000023 * - The RFC specifies the Signed Data type can contain multiple X.509 or PKCS #6 extended
Nick Child8ce1b1a2022-09-14 14:51:23 -050024 * certificates. In Mbed TLS, this list can only contain 0 or 1 certificates
Dave Rodgmanefbc5f72023-03-13 12:15:49 +000025 * and they must be in X.509 format.
Nayna Jainc9deb182020-11-16 19:03:12 +000026 * - The RFC specifies the Signed Data type can contain
Dave Rodgmanefbc5f72023-03-13 12:15:49 +000027 * certificate-revocation lists (CRLs). This implementation has no support
28 * for CRLs so it is assumed to be an empty list.
Nick Childbb82ab72022-10-28 12:28:54 -050029 * - The RFC allows for SignerInfo structure to optionally contain
30 * unauthenticatedAttributes and authenticatedAttributes. In Mbed TLS it is
31 * assumed these fields are empty.
Nick Child3dafc6c2023-02-07 19:59:58 +000032 * - The RFC allows for the signed Data type to contain contentInfo. This
33 * implementation assumes the type is DATA and the content is empty.
Nayna Jainc9deb182020-11-16 19:03:12 +000034 */
35
36#ifndef MBEDTLS_PKCS7_H
37#define MBEDTLS_PKCS7_H
38
Nick Child390e61a2021-08-09 13:33:14 -040039#include "mbedtls/private_access.h"
40
Nayna Jainc9deb182020-11-16 19:03:12 +000041#include "mbedtls/build_info.h"
42
Nick Child7dbe8522022-09-30 17:24:29 -050043#include "mbedtls/asn1.h"
44#include "mbedtls/x509.h"
45#include "mbedtls/x509_crt.h"
Nayna Jainc9deb182020-11-16 19:03:12 +000046
47/**
Dave Rodgman957cc362023-03-10 17:14:52 +000048 * \name PKCS #7 Module Error codes
Nayna Jainc9deb182020-11-16 19:03:12 +000049 * \{
50 */
51#define MBEDTLS_ERR_PKCS7_INVALID_FORMAT -0x5300 /**< The format is invalid, e.g. different type expected. */
Nick Child9512bde2022-09-16 09:49:06 -050052#define MBEDTLS_ERR_PKCS7_FEATURE_UNAVAILABLE -0x5380 /**< Unavailable feature, e.g. anything other than signed data. */
Dave Rodgman957cc362023-03-10 17:14:52 +000053#define MBEDTLS_ERR_PKCS7_INVALID_VERSION -0x5400 /**< The PKCS #7 version element is invalid or cannot be parsed. */
54#define MBEDTLS_ERR_PKCS7_INVALID_CONTENT_INFO -0x5480 /**< The PKCS #7 content info is invalid or cannot be parsed. */
Nayna Jainc9deb182020-11-16 19:03:12 +000055#define MBEDTLS_ERR_PKCS7_INVALID_ALG -0x5500 /**< The algorithm tag or value is invalid or cannot be parsed. */
Nick Child9512bde2022-09-16 09:49:06 -050056#define MBEDTLS_ERR_PKCS7_INVALID_CERT -0x5580 /**< The certificate tag or value is invalid or cannot be parsed. */
Nayna Jainc9deb182020-11-16 19:03:12 +000057#define MBEDTLS_ERR_PKCS7_INVALID_SIGNATURE -0x5600 /**< Error parsing the signature */
Nick Child9512bde2022-09-16 09:49:06 -050058#define MBEDTLS_ERR_PKCS7_INVALID_SIGNER_INFO -0x5680 /**< Error parsing the signer's info */
Nayna Jainc9deb182020-11-16 19:03:12 +000059#define MBEDTLS_ERR_PKCS7_BAD_INPUT_DATA -0x5700 /**< Input invalid. */
Nick Child9512bde2022-09-16 09:49:06 -050060#define MBEDTLS_ERR_PKCS7_ALLOC_FAILED -0x5780 /**< Allocation of memory failed. */
Nayna Jainc9deb182020-11-16 19:03:12 +000061#define MBEDTLS_ERR_PKCS7_VERIFY_FAIL -0x5800 /**< Verification Failed */
Dave Rodgman957cc362023-03-10 17:14:52 +000062#define MBEDTLS_ERR_PKCS7_CERT_DATE_INVALID -0x5880 /**< The PKCS #7 date issued/expired dates are invalid */
Nayna Jainc9deb182020-11-16 19:03:12 +000063/* \} name */
64
65/**
Dave Rodgman957cc362023-03-10 17:14:52 +000066 * \name PKCS #7 Supported Version
Nayna Jainc9deb182020-11-16 19:03:12 +000067 * \{
68 */
69#define MBEDTLS_PKCS7_SUPPORTED_VERSION 0x01
70/* \} name */
71
72#ifdef __cplusplus
73extern "C" {
74#endif
75
76/**
Dave Rodgman957cc362023-03-10 17:14:52 +000077 * Type-length-value structure that allows for ASN.1 using DER.
Nayna Jainc9deb182020-11-16 19:03:12 +000078 */
79typedef mbedtls_asn1_buf mbedtls_pkcs7_buf;
80
81/**
Dave Rodgman957cc362023-03-10 17:14:52 +000082 * Container for ASN.1 named information objects.
Nayna Jainc9deb182020-11-16 19:03:12 +000083 * It allows for Relative Distinguished Names (e.g. cn=localhost,ou=code,etc.).
84 */
85typedef mbedtls_asn1_named_data mbedtls_pkcs7_name;
86
87/**
88 * Container for a sequence of ASN.1 items
89 */
90typedef mbedtls_asn1_sequence mbedtls_pkcs7_sequence;
91
92/**
Dave Rodgman957cc362023-03-10 17:14:52 +000093 * PKCS #7 types
Nayna Jain673a2262020-12-14 22:44:49 +000094 */
95typedef enum {
96 MBEDTLS_PKCS7_NONE=0,
97 MBEDTLS_PKCS7_DATA,
98 MBEDTLS_PKCS7_SIGNED_DATA,
99 MBEDTLS_PKCS7_ENVELOPED_DATA,
100 MBEDTLS_PKCS7_SIGNED_AND_ENVELOPED_DATA,
101 MBEDTLS_PKCS7_DIGESTED_DATA,
102 MBEDTLS_PKCS7_ENCRYPTED_DATA,
103}
104mbedtls_pkcs7_type;
105
106/**
Dave Rodgman957cc362023-03-10 17:14:52 +0000107 * Structure holding PKCS #7 signer info
Nayna Jainc9deb182020-11-16 19:03:12 +0000108 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100109typedef struct mbedtls_pkcs7_signer_info {
Nick Child390e61a2021-08-09 13:33:14 -0400110 int MBEDTLS_PRIVATE(version);
111 mbedtls_x509_buf MBEDTLS_PRIVATE(serial);
112 mbedtls_x509_name MBEDTLS_PRIVATE(issuer);
113 mbedtls_x509_buf MBEDTLS_PRIVATE(issuer_raw);
114 mbedtls_x509_buf MBEDTLS_PRIVATE(alg_identifier);
115 mbedtls_x509_buf MBEDTLS_PRIVATE(sig_alg_identifier);
116 mbedtls_x509_buf MBEDTLS_PRIVATE(sig);
117 struct mbedtls_pkcs7_signer_info *MBEDTLS_PRIVATE(next);
Nayna Jainc9deb182020-11-16 19:03:12 +0000118}
119mbedtls_pkcs7_signer_info;
120
121/**
Nayna Jainc9deb182020-11-16 19:03:12 +0000122 * Structure holding the signed data section
123 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100124typedef struct mbedtls_pkcs7_signed_data {
Nick Child390e61a2021-08-09 13:33:14 -0400125 int MBEDTLS_PRIVATE(version);
126 mbedtls_pkcs7_buf MBEDTLS_PRIVATE(digest_alg_identifiers);
Nick Child390e61a2021-08-09 13:33:14 -0400127 int MBEDTLS_PRIVATE(no_of_certs);
128 mbedtls_x509_crt MBEDTLS_PRIVATE(certs);
129 int MBEDTLS_PRIVATE(no_of_crls);
130 mbedtls_x509_crl MBEDTLS_PRIVATE(crl);
131 int MBEDTLS_PRIVATE(no_of_signers);
132 mbedtls_pkcs7_signer_info MBEDTLS_PRIVATE(signers);
Nayna Jainc9deb182020-11-16 19:03:12 +0000133}
134mbedtls_pkcs7_signed_data;
135
136/**
Dave Rodgman957cc362023-03-10 17:14:52 +0000137 * Structure holding PKCS #7 structure, only signed data for now
Nayna Jainc9deb182020-11-16 19:03:12 +0000138 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100139typedef struct mbedtls_pkcs7 {
Nick Child390e61a2021-08-09 13:33:14 -0400140 mbedtls_pkcs7_buf MBEDTLS_PRIVATE(raw);
Nick Child390e61a2021-08-09 13:33:14 -0400141 mbedtls_pkcs7_signed_data MBEDTLS_PRIVATE(signed_data);
Nayna Jainc9deb182020-11-16 19:03:12 +0000142}
143mbedtls_pkcs7;
144
145/**
Dave Rodgman957cc362023-03-10 17:14:52 +0000146 * \brief Initialize mbedtls_pkcs7 structure.
Nayna Jainc9deb182020-11-16 19:03:12 +0000147 *
Dave Rodgman957cc362023-03-10 17:14:52 +0000148 * \param pkcs7 mbedtls_pkcs7 structure.
Nayna Jainc9deb182020-11-16 19:03:12 +0000149 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100150void mbedtls_pkcs7_init(mbedtls_pkcs7 *pkcs7);
Nayna Jainc9deb182020-11-16 19:03:12 +0000151
152/**
Dave Rodgman957cc362023-03-10 17:14:52 +0000153 * \brief Parse a single DER formatted PKCS #7 detached signature.
Nayna Jainc9deb182020-11-16 19:03:12 +0000154 *
Dave Rodgman957cc362023-03-10 17:14:52 +0000155 * \param pkcs7 The mbedtls_pkcs7 structure to be filled by the parser.
156 * \param buf The buffer holding only the DER encoded PKCS #7 content.
Nick Childec817092022-12-15 15:54:03 -0600157 * \param buflen The size in bytes of \p buf. The size must be exactly the
Dave Rodgman957cc362023-03-10 17:14:52 +0000158 * length of the DER encoded PKCS #7 content.
Nayna Jainc9deb182020-11-16 19:03:12 +0000159 *
Dave Rodgman957cc362023-03-10 17:14:52 +0000160 * \note This function makes an internal copy of the PKCS #7 buffer
Nayna Jainc9deb182020-11-16 19:03:12 +0000161 * \p buf. In particular, \p buf may be destroyed or reused
162 * after this call returns.
Demi Marie Obenour6cfc4692022-11-28 00:46:00 -0500163 * \note Signatures with internal data are not supported.
Nayna Jainc9deb182020-11-16 19:03:12 +0000164 *
Nayna Jain673a2262020-12-14 22:44:49 +0000165 * \return The \c mbedtls_pkcs7_type of \p buf, if successful.
Nayna Jainc9deb182020-11-16 19:03:12 +0000166 * \return A negative error code on failure.
167 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100168int mbedtls_pkcs7_parse_der(mbedtls_pkcs7 *pkcs7, const unsigned char *buf,
169 const size_t buflen);
Nayna Jainc9deb182020-11-16 19:03:12 +0000170
171/**
Dave Rodgman957cc362023-03-10 17:14:52 +0000172 * \brief Verification of PKCS #7 signature against a caller-supplied
Dave Rodgmanbc5f03d2022-12-01 12:36:57 +0000173 * certificate.
174 *
175 * For each signer in the PKCS structure, this function computes
176 * a signature over the supplied data, using the supplied
177 * certificate and the same digest algorithm as specified by the
178 * signer. It then compares this signature against the
179 * signer's signature; verification succeeds if any comparison
180 * matches.
181 *
182 * This function does not use the certificates held within the
Dave Rodgman957cc362023-03-10 17:14:52 +0000183 * PKCS #7 structure itself, and does not check that the
Demi Marie Obenour6cfc4692022-11-28 00:46:00 -0500184 * certificate is signed by a trusted certification authority.
Nayna Jainc9deb182020-11-16 19:03:12 +0000185 *
Dave Rodgman957cc362023-03-10 17:14:52 +0000186 * \param pkcs7 mbedtls_pkcs7 structure containing signature.
Nayna Jainc9deb182020-11-16 19:03:12 +0000187 * \param cert Certificate containing key to verify signature.
188 * \param data Plain data on which signature has to be verified.
189 * \param datalen Length of the data.
190 *
191 * \note This function internally calculates the hash on the supplied
192 * plain data for signature verification.
193 *
Dave Rodgman235d1d82022-12-01 18:45:02 +0000194 * \return 0 if the signature verifies, or a negative error code on failure.
Nayna Jainc9deb182020-11-16 19:03:12 +0000195 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100196int mbedtls_pkcs7_signed_data_verify(mbedtls_pkcs7 *pkcs7,
197 const mbedtls_x509_crt *cert,
198 const unsigned char *data,
199 size_t datalen);
Nayna Jainc9deb182020-11-16 19:03:12 +0000200
201/**
Dave Rodgman957cc362023-03-10 17:14:52 +0000202 * \brief Verification of PKCS #7 signature against a caller-supplied
Dave Rodgmanbc5f03d2022-12-01 12:36:57 +0000203 * certificate.
204 *
Demi Marie Obenour6cfc4692022-11-28 00:46:00 -0500205 * For each signer in the PKCS structure, this function
206 * validates a signature over the supplied hash, using the
207 * supplied certificate and the same digest algorithm as
208 * specified by the signer. Verification succeeds if any
209 * signature is good.
Dave Rodgmanbc5f03d2022-12-01 12:36:57 +0000210 *
211 * This function does not use the certificates held within the
Dave Rodgman957cc362023-03-10 17:14:52 +0000212 * PKCS #7 structure itself, and does not check that the
Demi Marie Obenour6cfc4692022-11-28 00:46:00 -0500213 * certificate is signed by a trusted certification authority.
Nayna Jainc9deb182020-11-16 19:03:12 +0000214 *
Dave Rodgman957cc362023-03-10 17:14:52 +0000215 * \param pkcs7 PKCS #7 structure containing signature.
Nayna Jainc9deb182020-11-16 19:03:12 +0000216 * \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()
Demi Marie Obenour6cfc4692022-11-28 00:46:00 -0500221 * in that it is directly passed the hash of the data.
Nayna Jainc9deb182020-11-16 19:03:12 +0000222 *
Dave Rodgman235d1d82022-12-01 18:45:02 +0000223 * \return 0 if the signature verifies, or a negative error code on failure.
Nayna Jainc9deb182020-11-16 19:03:12 +0000224 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100225int mbedtls_pkcs7_signed_hash_verify(mbedtls_pkcs7 *pkcs7,
226 const mbedtls_x509_crt *cert,
227 const unsigned char *hash, size_t hashlen);
Nayna Jainc9deb182020-11-16 19:03:12 +0000228
229/**
Dave Rodgman957cc362023-03-10 17:14:52 +0000230 * \brief Unallocate all PKCS #7 data and zeroize the memory.
231 * It doesn't free \p pkcs7 itself. This should be done by the caller.
Nayna Jainc9deb182020-11-16 19:03:12 +0000232 *
Dave Rodgman957cc362023-03-10 17:14:52 +0000233 * \param pkcs7 mbedtls_pkcs7 structure to free.
Nayna Jainc9deb182020-11-16 19:03:12 +0000234 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100235void mbedtls_pkcs7_free(mbedtls_pkcs7 *pkcs7);
Nayna Jainc9deb182020-11-16 19:03:12 +0000236
237#ifdef __cplusplus
238}
239#endif
240
241#endif /* pkcs7.h */