Coverage Report

Created: 2025-11-16 06:40

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl35/crypto/cms/cms_asn1.c
Line
Count
Source
1
/*
2
 * Copyright 2008-2025 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
#include <openssl/asn1t.h>
11
#include <openssl/pem.h>
12
#include <openssl/x509v3.h>
13
#include <openssl/cms.h>
14
#include "cms_local.h"
15
16
17
ASN1_SEQUENCE(CMS_IssuerAndSerialNumber) = {
18
        ASN1_SIMPLE(CMS_IssuerAndSerialNumber, issuer, X509_NAME),
19
        ASN1_SIMPLE(CMS_IssuerAndSerialNumber, serialNumber, ASN1_INTEGER)
20
134k
} ASN1_SEQUENCE_END(CMS_IssuerAndSerialNumber)
21
134k
22
134k
ASN1_SEQUENCE(CMS_OtherCertificateFormat) = {
23
134k
        ASN1_SIMPLE(CMS_OtherCertificateFormat, otherCertFormat, ASN1_OBJECT),
24
134k
        ASN1_OPT(CMS_OtherCertificateFormat, otherCert, ASN1_ANY)
25
182k
} static_ASN1_SEQUENCE_END(CMS_OtherCertificateFormat)
26
182k
27
182k
ASN1_CHOICE(CMS_CertificateChoices) = {
28
182k
        ASN1_SIMPLE(CMS_CertificateChoices, d.certificate, X509),
29
182k
        ASN1_IMP(CMS_CertificateChoices, d.extendedCertificate, ASN1_SEQUENCE, 0),
30
182k
        ASN1_IMP(CMS_CertificateChoices, d.v1AttrCert, ASN1_SEQUENCE, 1),
31
182k
        ASN1_IMP(CMS_CertificateChoices, d.v2AttrCert, ASN1_SEQUENCE, 2),
32
182k
        ASN1_IMP(CMS_CertificateChoices, d.other, CMS_OtherCertificateFormat, 3)
33
15.1M
} ASN1_CHOICE_END(CMS_CertificateChoices)
34
15.1M
35
15.1M
ASN1_CHOICE(CMS_SignerIdentifier) = {
36
15.1M
        ASN1_SIMPLE(CMS_SignerIdentifier, d.issuerAndSerialNumber, CMS_IssuerAndSerialNumber),
37
15.1M
        ASN1_IMP(CMS_SignerIdentifier, d.subjectKeyIdentifier, ASN1_OCTET_STRING, 0)
38
15.1M
} static_ASN1_CHOICE_END(CMS_SignerIdentifier)
39
436k
40
436k
ASN1_NDEF_SEQUENCE(CMS_EncapsulatedContentInfo) = {
41
436k
        ASN1_SIMPLE(CMS_EncapsulatedContentInfo, eContentType, ASN1_OBJECT),
42
436k
        ASN1_NDEF_EXP_OPT(CMS_EncapsulatedContentInfo, eContent, ASN1_OCTET_STRING_NDEF, 0)
43
436k
} static_ASN1_NDEF_SEQUENCE_END(CMS_EncapsulatedContentInfo)
44
45
/* Minor tweak to operation: free up signer key, cert */
46
static int cms_si_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
47
                     void *exarg)
48
204k
{
49
204k
    if (operation == ASN1_OP_FREE_POST) {
50
22.7k
        CMS_SignerInfo *si = (CMS_SignerInfo *)*pval;
51
22.7k
        EVP_PKEY_free(si->pkey);
52
22.7k
        X509_free(si->signer);
53
22.7k
        EVP_MD_CTX_free(si->mctx);
54
22.7k
        EVP_PKEY_CTX_free(si->pctx);
55
22.7k
    }
56
204k
    return 1;
57
204k
}
58
59
ASN1_SEQUENCE_cb(CMS_SignerInfo, cms_si_cb) = {
60
        ASN1_EMBED(CMS_SignerInfo, version, INT32),
61
        ASN1_SIMPLE(CMS_SignerInfo, sid, CMS_SignerIdentifier),
62
        ASN1_SIMPLE(CMS_SignerInfo, digestAlgorithm, X509_ALGOR),
63
        ASN1_IMP_SET_OF_OPT(CMS_SignerInfo, signedAttrs, X509_ATTRIBUTE, 0),
64
        ASN1_SIMPLE(CMS_SignerInfo, signatureAlgorithm, X509_ALGOR),
65
        ASN1_SIMPLE(CMS_SignerInfo, signature, ASN1_OCTET_STRING),
66
        ASN1_IMP_SET_OF_OPT(CMS_SignerInfo, unsignedAttrs, X509_ATTRIBUTE, 1)
67
} ASN1_SEQUENCE_END_cb(CMS_SignerInfo, CMS_SignerInfo)
68
69
ASN1_SEQUENCE(CMS_OtherRevocationInfoFormat) = {
70
        ASN1_SIMPLE(CMS_OtherRevocationInfoFormat, otherRevInfoFormat, ASN1_OBJECT),
71
        ASN1_OPT(CMS_OtherRevocationInfoFormat, otherRevInfo, ASN1_ANY)
72
6.00k
} static_ASN1_SEQUENCE_END(CMS_OtherRevocationInfoFormat)
73
6.00k
74
6.00k
ASN1_CHOICE(CMS_RevocationInfoChoice) = {
75
6.00k
        ASN1_SIMPLE(CMS_RevocationInfoChoice, d.crl, X509_CRL),
76
6.00k
        ASN1_IMP(CMS_RevocationInfoChoice, d.other, CMS_OtherRevocationInfoFormat, 1)
77
593k
} ASN1_CHOICE_END(CMS_RevocationInfoChoice)
78
593k
79
593k
ASN1_NDEF_SEQUENCE(CMS_SignedData) = {
80
593k
        ASN1_EMBED(CMS_SignedData, version, INT32),
81
593k
        ASN1_SET_OF(CMS_SignedData, digestAlgorithms, X509_ALGOR),
82
593k
        ASN1_SIMPLE(CMS_SignedData, encapContentInfo, CMS_EncapsulatedContentInfo),
83
593k
        ASN1_IMP_SET_OF_OPT(CMS_SignedData, certificates, CMS_CertificateChoices, 0),
84
593k
        ASN1_IMP_SET_OF_OPT(CMS_SignedData, crls, CMS_RevocationInfoChoice, 1),
85
593k
        ASN1_SET_OF(CMS_SignedData, signerInfos, CMS_SignerInfo)
86
593k
} ASN1_NDEF_SEQUENCE_END(CMS_SignedData)
87
IMPLEMENT_ASN1_ALLOC_FUNCTIONS(CMS_SignedData)
88
89
ASN1_SEQUENCE(CMS_OriginatorInfo) = {
90
        ASN1_IMP_SET_OF_OPT(CMS_OriginatorInfo, certificates, CMS_CertificateChoices, 0),
91
        ASN1_IMP_SET_OF_OPT(CMS_OriginatorInfo, crls, CMS_RevocationInfoChoice, 1)
92
156k
} static_ASN1_SEQUENCE_END(CMS_OriginatorInfo)
93
156k
94
156k
static int cms_ec_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
95
156k
                     void *exarg)
96
156k
{
97
53.1k
    CMS_EncryptedContentInfo *ec = (CMS_EncryptedContentInfo *)*pval;
98
99
53.1k
    if (operation == ASN1_OP_FREE_POST)
100
7.38k
        OPENSSL_clear_free(ec->key, ec->keylen);
101
53.1k
    return 1;
102
53.1k
}
103
104
ASN1_NDEF_SEQUENCE_cb(CMS_EncryptedContentInfo, cms_ec_cb) = {
105
        ASN1_SIMPLE(CMS_EncryptedContentInfo, contentType, ASN1_OBJECT),
106
        ASN1_SIMPLE(CMS_EncryptedContentInfo, contentEncryptionAlgorithm, X509_ALGOR),
107
        ASN1_IMP_OPT(CMS_EncryptedContentInfo, encryptedContent, ASN1_OCTET_STRING_NDEF, 0)
108
} ASN1_NDEF_SEQUENCE_END_cb(CMS_EncryptedContentInfo, CMS_EncryptedContentInfo)
109
110
ASN1_SEQUENCE(CMS_KeyTransRecipientInfo) = {
111
        ASN1_EMBED(CMS_KeyTransRecipientInfo, version, INT32),
112
        ASN1_SIMPLE(CMS_KeyTransRecipientInfo, rid, CMS_SignerIdentifier),
113
        ASN1_SIMPLE(CMS_KeyTransRecipientInfo, keyEncryptionAlgorithm, X509_ALGOR),
114
        ASN1_SIMPLE(CMS_KeyTransRecipientInfo, encryptedKey, ASN1_OCTET_STRING)
115
146k
} ASN1_SEQUENCE_END(CMS_KeyTransRecipientInfo)
116
146k
117
146k
ASN1_SEQUENCE(CMS_OtherKeyAttribute) = {
118
146k
        ASN1_SIMPLE(CMS_OtherKeyAttribute, keyAttrId, ASN1_OBJECT),
119
146k
        ASN1_OPT(CMS_OtherKeyAttribute, keyAttr, ASN1_ANY)
120
146k
} ASN1_SEQUENCE_END(CMS_OtherKeyAttribute)
121
90.4k
122
90.4k
ASN1_SEQUENCE(CMS_RecipientKeyIdentifier) = {
123
90.4k
        ASN1_SIMPLE(CMS_RecipientKeyIdentifier, subjectKeyIdentifier, ASN1_OCTET_STRING),
124
90.4k
        ASN1_OPT(CMS_RecipientKeyIdentifier, date, ASN1_GENERALIZEDTIME),
125
90.4k
        ASN1_OPT(CMS_RecipientKeyIdentifier, other, CMS_OtherKeyAttribute)
126
90.4k
} ASN1_SEQUENCE_END(CMS_RecipientKeyIdentifier)
127
33.5k
128
33.5k
ASN1_CHOICE(CMS_KeyAgreeRecipientIdentifier) = {
129
33.5k
  ASN1_SIMPLE(CMS_KeyAgreeRecipientIdentifier, d.issuerAndSerialNumber, CMS_IssuerAndSerialNumber),
130
33.5k
  ASN1_IMP(CMS_KeyAgreeRecipientIdentifier, d.rKeyId, CMS_RecipientKeyIdentifier, 0)
131
103k
} static_ASN1_CHOICE_END(CMS_KeyAgreeRecipientIdentifier)
132
103k
133
103k
static int cms_rek_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
134
103k
                      void *exarg)
135
103k
{
136
86.0k
    CMS_RecipientEncryptedKey *rek = (CMS_RecipientEncryptedKey *)*pval;
137
86.0k
    if (operation == ASN1_OP_FREE_POST) {
138
11.4k
        EVP_PKEY_free(rek->pkey);
139
11.4k
    }
140
86.0k
    return 1;
141
86.0k
}
142
143
ASN1_SEQUENCE_cb(CMS_RecipientEncryptedKey, cms_rek_cb) = {
144
        ASN1_SIMPLE(CMS_RecipientEncryptedKey, rid, CMS_KeyAgreeRecipientIdentifier),
145
        ASN1_SIMPLE(CMS_RecipientEncryptedKey, encryptedKey, ASN1_OCTET_STRING)
146
} ASN1_SEQUENCE_END_cb(CMS_RecipientEncryptedKey, CMS_RecipientEncryptedKey)
147
148
ASN1_SEQUENCE(CMS_OriginatorPublicKey) = {
149
  ASN1_SIMPLE(CMS_OriginatorPublicKey, algorithm, X509_ALGOR),
150
  ASN1_SIMPLE(CMS_OriginatorPublicKey, publicKey, ASN1_BIT_STRING)
151
80
} ASN1_SEQUENCE_END(CMS_OriginatorPublicKey)
152
80
153
80
ASN1_CHOICE(CMS_OriginatorIdentifierOrKey) = {
154
80
  ASN1_SIMPLE(CMS_OriginatorIdentifierOrKey, d.issuerAndSerialNumber, CMS_IssuerAndSerialNumber),
155
80
  ASN1_IMP(CMS_OriginatorIdentifierOrKey, d.subjectKeyIdentifier, ASN1_OCTET_STRING, 0),
156
80
  ASN1_IMP(CMS_OriginatorIdentifierOrKey, d.originatorKey, CMS_OriginatorPublicKey, 1)
157
287k
} static_ASN1_CHOICE_END(CMS_OriginatorIdentifierOrKey)
158
287k
159
287k
static int cms_kari_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
160
287k
                       void *exarg)
161
287k
{
162
184k
    CMS_KeyAgreeRecipientInfo *kari = (CMS_KeyAgreeRecipientInfo *)*pval;
163
184k
    if (operation == ASN1_OP_NEW_POST) {
164
17.4k
        kari->ctx = EVP_CIPHER_CTX_new();
165
17.4k
        if (kari->ctx == NULL)
166
0
            return 0;
167
17.4k
        EVP_CIPHER_CTX_set_flags(kari->ctx, EVP_CIPHER_CTX_FLAG_WRAP_ALLOW);
168
17.4k
        kari->pctx = NULL;
169
167k
    } else if (operation == ASN1_OP_FREE_POST) {
170
17.4k
        EVP_PKEY_CTX_free(kari->pctx);
171
17.4k
        EVP_CIPHER_CTX_free(kari->ctx);
172
17.4k
    }
173
184k
    return 1;
174
184k
}
175
176
ASN1_SEQUENCE_cb(CMS_KeyAgreeRecipientInfo, cms_kari_cb) = {
177
        ASN1_EMBED(CMS_KeyAgreeRecipientInfo, version, INT32),
178
        ASN1_EXP(CMS_KeyAgreeRecipientInfo, originator, CMS_OriginatorIdentifierOrKey, 0),
179
        ASN1_EXP_OPT(CMS_KeyAgreeRecipientInfo, ukm, ASN1_OCTET_STRING, 1),
180
        ASN1_SIMPLE(CMS_KeyAgreeRecipientInfo, keyEncryptionAlgorithm, X509_ALGOR),
181
        ASN1_SEQUENCE_OF(CMS_KeyAgreeRecipientInfo, recipientEncryptedKeys, CMS_RecipientEncryptedKey)
182
} ASN1_SEQUENCE_END_cb(CMS_KeyAgreeRecipientInfo, CMS_KeyAgreeRecipientInfo)
183
184
ASN1_SEQUENCE(CMS_KEKIdentifier) = {
185
        ASN1_SIMPLE(CMS_KEKIdentifier, keyIdentifier, ASN1_OCTET_STRING),
186
        ASN1_OPT(CMS_KEKIdentifier, date, ASN1_GENERALIZEDTIME),
187
        ASN1_OPT(CMS_KEKIdentifier, other, CMS_OtherKeyAttribute)
188
29.4k
} static_ASN1_SEQUENCE_END(CMS_KEKIdentifier)
189
29.4k
190
29.4k
ASN1_SEQUENCE(CMS_KEKRecipientInfo) = {
191
29.4k
        ASN1_EMBED(CMS_KEKRecipientInfo, version, INT32),
192
29.4k
        ASN1_SIMPLE(CMS_KEKRecipientInfo, kekid, CMS_KEKIdentifier),
193
29.4k
        ASN1_SIMPLE(CMS_KEKRecipientInfo, keyEncryptionAlgorithm, X509_ALGOR),
194
29.4k
        ASN1_SIMPLE(CMS_KEKRecipientInfo, encryptedKey, ASN1_OCTET_STRING)
195
81.0k
} ASN1_SEQUENCE_END(CMS_KEKRecipientInfo)
196
81.0k
197
81.0k
ASN1_SEQUENCE(CMS_PasswordRecipientInfo) = {
198
81.0k
        ASN1_EMBED(CMS_PasswordRecipientInfo, version, INT32),
199
81.0k
        ASN1_IMP_OPT(CMS_PasswordRecipientInfo, keyDerivationAlgorithm, X509_ALGOR, 0),
200
81.0k
        ASN1_SIMPLE(CMS_PasswordRecipientInfo, keyEncryptionAlgorithm, X509_ALGOR),
201
81.0k
        ASN1_SIMPLE(CMS_PasswordRecipientInfo, encryptedKey, ASN1_OCTET_STRING)
202
170k
} ASN1_SEQUENCE_END(CMS_PasswordRecipientInfo)
203
170k
204
170k
ASN1_SEQUENCE(CMS_OtherRecipientInfo) = {
205
170k
  ASN1_SIMPLE(CMS_OtherRecipientInfo, oriType, ASN1_OBJECT),
206
170k
  ASN1_OPT(CMS_OtherRecipientInfo, oriValue, ASN1_ANY)
207
170k
} static_ASN1_SEQUENCE_END(CMS_OtherRecipientInfo)
208
111k
209
111k
/* Free up RecipientInfo additional data */
210
111k
static int cms_ri_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
211
111k
                     void *exarg)
212
718k
{
213
718k
    if (operation == ASN1_OP_FREE_PRE) {
214
86.9k
        CMS_RecipientInfo *ri = (CMS_RecipientInfo *)*pval;
215
86.9k
        if (ri->type == CMS_RECIPINFO_TRANS) {
216
10.4k
            CMS_KeyTransRecipientInfo *ktri = ri->d.ktri;
217
10.4k
            EVP_PKEY_free(ktri->pkey);
218
10.4k
            X509_free(ktri->recip);
219
10.4k
            EVP_PKEY_CTX_free(ktri->pctx);
220
76.4k
        } else if (ri->type == CMS_RECIPINFO_KEK) {
221
6.93k
            CMS_KEKRecipientInfo *kekri = ri->d.kekri;
222
6.93k
            OPENSSL_clear_free(kekri->key, kekri->keylen);
223
69.5k
        } else if (ri->type == CMS_RECIPINFO_PASS) {
224
27.8k
            CMS_PasswordRecipientInfo *pwri = ri->d.pwri;
225
27.8k
            OPENSSL_clear_free(pwri->pass, pwri->passlen);
226
27.8k
        }
227
86.9k
    }
228
718k
    return 1;
229
718k
}
230
231
ASN1_CHOICE_cb(CMS_RecipientInfo, cms_ri_cb) = {
232
        ASN1_SIMPLE(CMS_RecipientInfo, d.ktri, CMS_KeyTransRecipientInfo),
233
        ASN1_IMP(CMS_RecipientInfo, d.kari, CMS_KeyAgreeRecipientInfo, 1),
234
        ASN1_IMP(CMS_RecipientInfo, d.kekri, CMS_KEKRecipientInfo, 2),
235
        ASN1_IMP(CMS_RecipientInfo, d.pwri, CMS_PasswordRecipientInfo, 3),
236
        ASN1_IMP(CMS_RecipientInfo, d.ori, CMS_OtherRecipientInfo, 4)
237
445k
} ASN1_CHOICE_END_cb(CMS_RecipientInfo, CMS_RecipientInfo, type)
238
239
ASN1_NDEF_SEQUENCE(CMS_EnvelopedData) = {
240
        ASN1_EMBED(CMS_EnvelopedData, version, INT32),
241
        ASN1_IMP_OPT(CMS_EnvelopedData, originatorInfo, CMS_OriginatorInfo, 0),
242
        ASN1_SET_OF(CMS_EnvelopedData, recipientInfos, CMS_RecipientInfo),
243
        ASN1_SIMPLE(CMS_EnvelopedData, encryptedContentInfo, CMS_EncryptedContentInfo),
244
        ASN1_IMP_SET_OF_OPT(CMS_EnvelopedData, unprotectedAttrs, X509_ATTRIBUTE, 1)
245
24.3k
} ASN1_NDEF_SEQUENCE_END(CMS_EnvelopedData)
246
IMPLEMENT_ASN1_DUP_FUNCTION(CMS_EnvelopedData)
247
248
ASN1_NDEF_SEQUENCE(CMS_DigestedData) = {
249
        ASN1_EMBED(CMS_DigestedData, version, INT32),
250
        ASN1_SIMPLE(CMS_DigestedData, digestAlgorithm, X509_ALGOR),
251
        ASN1_SIMPLE(CMS_DigestedData, encapContentInfo, CMS_EncapsulatedContentInfo),
252
        ASN1_SIMPLE(CMS_DigestedData, digest, ASN1_OCTET_STRING)
253
610
} ASN1_NDEF_SEQUENCE_END(CMS_DigestedData)
254
255
ASN1_NDEF_SEQUENCE(CMS_EncryptedData) = {
256
        ASN1_EMBED(CMS_EncryptedData, version, INT32),
257
        ASN1_SIMPLE(CMS_EncryptedData, encryptedContentInfo, CMS_EncryptedContentInfo),
258
        ASN1_IMP_SET_OF_OPT(CMS_EncryptedData, unprotectedAttrs, X509_ATTRIBUTE, 1)
259
1.81k
} ASN1_NDEF_SEQUENCE_END(CMS_EncryptedData)
260
261
/* Defined in RFC 5083 - Section 2.1. AuthEnvelopedData Type */
262
ASN1_NDEF_SEQUENCE(CMS_AuthEnvelopedData) = {
263
        ASN1_EMBED(CMS_AuthEnvelopedData, version, INT32),
264
        ASN1_IMP_OPT(CMS_AuthEnvelopedData, originatorInfo, CMS_OriginatorInfo, 0),
265
        ASN1_SET_OF(CMS_AuthEnvelopedData, recipientInfos, CMS_RecipientInfo),
266
        ASN1_SIMPLE(CMS_AuthEnvelopedData, authEncryptedContentInfo, CMS_EncryptedContentInfo),
267
        ASN1_IMP_SET_OF_OPT(CMS_AuthEnvelopedData, authAttrs, X509_ALGOR, 2),
268
        ASN1_SIMPLE(CMS_AuthEnvelopedData, mac, ASN1_OCTET_STRING),
269
        ASN1_IMP_SET_OF_OPT(CMS_AuthEnvelopedData, unauthAttrs, X509_ALGOR, 3)
270
241
} ASN1_NDEF_SEQUENCE_END(CMS_AuthEnvelopedData)
271
272
ASN1_NDEF_SEQUENCE(CMS_AuthenticatedData) = {
273
        ASN1_EMBED(CMS_AuthenticatedData, version, INT32),
274
        ASN1_IMP_OPT(CMS_AuthenticatedData, originatorInfo, CMS_OriginatorInfo, 0),
275
        ASN1_SET_OF(CMS_AuthenticatedData, recipientInfos, CMS_RecipientInfo),
276
        ASN1_SIMPLE(CMS_AuthenticatedData, macAlgorithm, X509_ALGOR),
277
        ASN1_IMP(CMS_AuthenticatedData, digestAlgorithm, X509_ALGOR, 1),
278
        ASN1_SIMPLE(CMS_AuthenticatedData, encapContentInfo, CMS_EncapsulatedContentInfo),
279
        ASN1_IMP_SET_OF_OPT(CMS_AuthenticatedData, authAttrs, X509_ALGOR, 2),
280
        ASN1_SIMPLE(CMS_AuthenticatedData, mac, ASN1_OCTET_STRING),
281
        ASN1_IMP_SET_OF_OPT(CMS_AuthenticatedData, unauthAttrs, X509_ALGOR, 3)
282
54.9k
} static_ASN1_NDEF_SEQUENCE_END(CMS_AuthenticatedData)
283
284
ASN1_NDEF_SEQUENCE(CMS_CompressedData) = {
285
        ASN1_EMBED(CMS_CompressedData, version, INT32),
286
        ASN1_SIMPLE(CMS_CompressedData, compressionAlgorithm, X509_ALGOR),
287
        ASN1_SIMPLE(CMS_CompressedData, encapContentInfo, CMS_EncapsulatedContentInfo),
288
130
} ASN1_NDEF_SEQUENCE_END(CMS_CompressedData)
289
290
/* This is the ANY DEFINED BY table for the top level ContentInfo structure */
291
292
ASN1_ADB_TEMPLATE(cms_default) = ASN1_EXP(CMS_ContentInfo, d.other, ASN1_ANY, 0);
293
294
ASN1_ADB(CMS_ContentInfo) = {
295
        ADB_ENTRY(NID_pkcs7_data, ASN1_NDEF_EXP(CMS_ContentInfo, d.data, ASN1_OCTET_STRING_NDEF, 0)),
296
        ADB_ENTRY(NID_pkcs7_signed, ASN1_NDEF_EXP(CMS_ContentInfo, d.signedData, CMS_SignedData, 0)),
297
        ADB_ENTRY(NID_pkcs7_enveloped, ASN1_NDEF_EXP(CMS_ContentInfo, d.envelopedData, CMS_EnvelopedData, 0)),
298
        ADB_ENTRY(NID_pkcs7_digest, ASN1_NDEF_EXP(CMS_ContentInfo, d.digestedData, CMS_DigestedData, 0)),
299
        ADB_ENTRY(NID_pkcs7_encrypted, ASN1_NDEF_EXP(CMS_ContentInfo, d.encryptedData, CMS_EncryptedData, 0)),
300
        ADB_ENTRY(NID_id_smime_ct_authEnvelopedData, ASN1_NDEF_EXP(CMS_ContentInfo, d.authEnvelopedData, CMS_AuthEnvelopedData, 0)),
301
        ADB_ENTRY(NID_id_smime_ct_authData, ASN1_NDEF_EXP(CMS_ContentInfo, d.authenticatedData, CMS_AuthenticatedData, 0)),
302
        ADB_ENTRY(NID_id_smime_ct_compressedData, ASN1_NDEF_EXP(CMS_ContentInfo, d.compressedData, CMS_CompressedData, 0)),
303
380k
} ASN1_ADB_END(CMS_ContentInfo, 0, contentType, 0, &cms_default_tt, NULL);
304
305
/* CMS streaming support */
306
static int cms_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
307
                  void *exarg)
308
536k
{
309
536k
    ASN1_STREAM_ARG *sarg = exarg;
310
536k
    CMS_ContentInfo *cms = NULL;
311
536k
    if (pval)
312
536k
        cms = (CMS_ContentInfo *)*pval;
313
0
    else
314
0
        return 1;
315
536k
    switch (operation) {
316
317
0
    case ASN1_OP_STREAM_PRE:
318
0
        if (CMS_stream(&sarg->boundary, cms) <= 0)
319
0
            return 0;
320
        /* fall through */
321
0
    case ASN1_OP_DETACHED_PRE:
322
0
        sarg->ndef_bio = CMS_dataInit(cms, sarg->out);
323
0
        if (!sarg->ndef_bio)
324
0
            return 0;
325
0
        break;
326
327
0
    case ASN1_OP_STREAM_POST:
328
0
    case ASN1_OP_DETACHED_POST:
329
0
        if (CMS_dataFinal(cms, sarg->ndef_bio) <= 0)
330
0
            return 0;
331
0
        break;
332
333
99.7k
    case ASN1_OP_FREE_POST:
334
99.7k
        OPENSSL_free(cms->ctx.propq);
335
99.7k
        break;
336
337
536k
    }
338
536k
    return 1;
339
536k
}
340
341
ASN1_NDEF_SEQUENCE_cb(CMS_ContentInfo, cms_cb) = {
342
        ASN1_SIMPLE(CMS_ContentInfo, contentType, ASN1_OBJECT),
343
        ASN1_ADB_OBJECT(CMS_ContentInfo)
344
} ASN1_NDEF_SEQUENCE_END_cb(CMS_ContentInfo, CMS_ContentInfo)
345
346
/* Specials for signed attributes */
347
348
/*
349
 * When signing attributes we want to reorder them to match the sorted
350
 * encoding.
351
 */
352
353
ASN1_ITEM_TEMPLATE(CMS_Attributes_Sign) =
354
        ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SET_ORDER, 0, CMS_ATTRIBUTES, X509_ATTRIBUTE)
355
0
ASN1_ITEM_TEMPLATE_END(CMS_Attributes_Sign)
356
357
/*
358
 * When verifying attributes we need to use the received order. So we use
359
 * SEQUENCE OF and tag it to SET OF
360
 */
361
362
ASN1_ITEM_TEMPLATE(CMS_Attributes_Verify) =
363
        ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF | ASN1_TFLG_IMPTAG | ASN1_TFLG_UNIVERSAL,
364
                                V_ASN1_SET, CMS_ATTRIBUTES, X509_ATTRIBUTE)
365
0
ASN1_ITEM_TEMPLATE_END(CMS_Attributes_Verify)
366
367
368
369
ASN1_CHOICE(CMS_ReceiptsFrom) = {
370
  ASN1_IMP_EMBED(CMS_ReceiptsFrom, d.allOrFirstTier, INT32, 0),
371
  ASN1_IMP_SEQUENCE_OF(CMS_ReceiptsFrom, d.receiptList, GENERAL_NAMES, 1)
372
228k
} static_ASN1_CHOICE_END(CMS_ReceiptsFrom)
373
228k
374
228k
ASN1_SEQUENCE(CMS_ReceiptRequest) = {
375
228k
  ASN1_SIMPLE(CMS_ReceiptRequest, signedContentIdentifier, ASN1_OCTET_STRING),
376
228k
  ASN1_SIMPLE(CMS_ReceiptRequest, receiptsFrom, CMS_ReceiptsFrom),
377
228k
  ASN1_SEQUENCE_OF(CMS_ReceiptRequest, receiptsTo, GENERAL_NAMES)
378
228k
} ASN1_SEQUENCE_END(CMS_ReceiptRequest)
379
70.6k
380
70.6k
ASN1_SEQUENCE(CMS_Receipt) = {
381
70.6k
  ASN1_EMBED(CMS_Receipt, version, INT32),
382
70.6k
  ASN1_SIMPLE(CMS_Receipt, contentType, ASN1_OBJECT),
383
70.6k
  ASN1_SIMPLE(CMS_Receipt, signedContentIdentifier, ASN1_OCTET_STRING),
384
70.6k
  ASN1_SIMPLE(CMS_Receipt, originatorSignatureValue, ASN1_OCTET_STRING)
385
70.6k
} ASN1_SEQUENCE_END(CMS_Receipt)
386
0
387
0
/*
388
0
 * Utilities to encode the CMS_SharedInfo structure used during key
389
0
 * derivation.
390
0
 */
391
0
392
0
typedef struct {
393
0
    X509_ALGOR *keyInfo;
394
0
    ASN1_OCTET_STRING *entityUInfo;
395
0
    ASN1_OCTET_STRING *suppPubInfo;
396
0
} CMS_SharedInfo;
397
0
398
0
ASN1_SEQUENCE(CMS_SharedInfo) = {
399
0
  ASN1_SIMPLE(CMS_SharedInfo, keyInfo, X509_ALGOR),
400
0
  ASN1_EXP_OPT(CMS_SharedInfo, entityUInfo, ASN1_OCTET_STRING, 0),
401
0
  ASN1_EXP_OPT(CMS_SharedInfo, suppPubInfo, ASN1_OCTET_STRING, 2),
402
0
} static_ASN1_SEQUENCE_END(CMS_SharedInfo)
403
0
404
0
int CMS_SharedInfo_encode(unsigned char **pder, X509_ALGOR *kekalg,
405
0
                          ASN1_OCTET_STRING *ukm, int keylen)
406
0
{
407
0
    union {
408
0
        CMS_SharedInfo *pecsi;
409
0
        ASN1_VALUE *a;
410
0
    } intsi = {
411
0
        NULL
412
0
    };
413
414
0
    ASN1_OCTET_STRING oklen;
415
0
    unsigned char kl[4];
416
0
    CMS_SharedInfo ecsi;
417
418
0
    keylen <<= 3;
419
0
    kl[0] = (keylen >> 24) & 0xff;
420
0
    kl[1] = (keylen >> 16) & 0xff;
421
0
    kl[2] = (keylen >> 8) & 0xff;
422
0
    kl[3] = keylen & 0xff;
423
0
    oklen.length = 4;
424
0
    oklen.data = kl;
425
0
    oklen.type = V_ASN1_OCTET_STRING;
426
0
    oklen.flags = 0;
427
0
    ecsi.keyInfo = kekalg;
428
0
    ecsi.entityUInfo = ukm;
429
0
    ecsi.suppPubInfo = &oklen;
430
0
    intsi.pecsi = &ecsi;
431
0
    return ASN1_item_i2d(intsi.a, pder, ASN1_ITEM_rptr(CMS_SharedInfo));
432
0
}