Coverage Report

Created: 2025-12-04 06:33

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl/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
156k
} ASN1_SEQUENCE_END(CMS_IssuerAndSerialNumber)
21
156k
22
156k
ASN1_SEQUENCE(CMS_OtherCertificateFormat) = {
23
156k
        ASN1_SIMPLE(CMS_OtherCertificateFormat, otherCertFormat, ASN1_OBJECT),
24
156k
        ASN1_OPT(CMS_OtherCertificateFormat, otherCert, ASN1_ANY)
25
189k
} static_ASN1_SEQUENCE_END(CMS_OtherCertificateFormat)
26
189k
27
189k
ASN1_CHOICE(CMS_CertificateChoices) = {
28
189k
        ASN1_SIMPLE(CMS_CertificateChoices, d.certificate, X509),
29
189k
        ASN1_IMP(CMS_CertificateChoices, d.extendedCertificate, ASN1_SEQUENCE, 0),
30
189k
        ASN1_IMP(CMS_CertificateChoices, d.v1AttrCert, ASN1_SEQUENCE, 1),
31
189k
        ASN1_IMP(CMS_CertificateChoices, d.v2AttrCert, ASN1_SEQUENCE, 2),
32
189k
        ASN1_IMP(CMS_CertificateChoices, d.other, CMS_OtherCertificateFormat, 3)
33
15.2M
} ASN1_CHOICE_END(CMS_CertificateChoices)
34
15.2M
35
15.2M
ASN1_CHOICE(CMS_SignerIdentifier) = {
36
15.2M
        ASN1_SIMPLE(CMS_SignerIdentifier, d.issuerAndSerialNumber, CMS_IssuerAndSerialNumber),
37
15.2M
        ASN1_IMP(CMS_SignerIdentifier, d.subjectKeyIdentifier, ASN1_OCTET_STRING, 0)
38
15.2M
} static_ASN1_CHOICE_END(CMS_SignerIdentifier)
39
532k
40
532k
ASN1_NDEF_SEQUENCE(CMS_EncapsulatedContentInfo) = {
41
532k
        ASN1_SIMPLE(CMS_EncapsulatedContentInfo, eContentType, ASN1_OBJECT),
42
532k
        ASN1_NDEF_EXP_OPT(CMS_EncapsulatedContentInfo, eContent, ASN1_OCTET_STRING_NDEF, 0)
43
532k
} 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
262k
{
49
262k
    if (operation == ASN1_OP_FREE_POST) {
50
28.5k
        CMS_SignerInfo *si = (CMS_SignerInfo *)*pval;
51
28.5k
        EVP_PKEY_free(si->pkey);
52
28.5k
        X509_free(si->signer);
53
28.5k
        EVP_MD_CTX_free(si->mctx);
54
28.5k
        EVP_PKEY_CTX_free(si->pctx);
55
28.5k
    }
56
262k
    return 1;
57
262k
}
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.13k
} static_ASN1_SEQUENCE_END(CMS_OtherRevocationInfoFormat)
73
6.13k
74
6.13k
ASN1_CHOICE(CMS_RevocationInfoChoice) = {
75
6.13k
        ASN1_SIMPLE(CMS_RevocationInfoChoice, d.crl, X509_CRL),
76
6.13k
        ASN1_IMP(CMS_RevocationInfoChoice, d.other, CMS_OtherRevocationInfoFormat, 1)
77
625k
} ASN1_CHOICE_END(CMS_RevocationInfoChoice)
78
625k
79
625k
ASN1_NDEF_SEQUENCE(CMS_SignedData) = {
80
625k
        ASN1_EMBED(CMS_SignedData, version, INT32),
81
625k
        ASN1_SET_OF(CMS_SignedData, digestAlgorithms, X509_ALGOR),
82
625k
        ASN1_SIMPLE(CMS_SignedData, encapContentInfo, CMS_EncapsulatedContentInfo),
83
625k
        ASN1_IMP_SET_OF_OPT(CMS_SignedData, certificates, CMS_CertificateChoices, 0),
84
625k
        ASN1_IMP_SET_OF_OPT(CMS_SignedData, crls, CMS_RevocationInfoChoice, 1),
85
625k
        ASN1_SET_OF(CMS_SignedData, signerInfos, CMS_SignerInfo)
86
625k
} 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
167k
} static_ASN1_SEQUENCE_END(CMS_OriginatorInfo)
93
167k
94
167k
static int cms_ec_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
95
167k
                     void *exarg)
96
167k
{
97
58.0k
    CMS_EncryptedContentInfo *ec = (CMS_EncryptedContentInfo *)*pval;
98
99
58.0k
    if (operation == ASN1_OP_FREE_POST)
100
7.98k
        OPENSSL_clear_free(ec->key, ec->keylen);
101
58.0k
    return 1;
102
58.0k
}
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
161k
} ASN1_SEQUENCE_END(CMS_KeyTransRecipientInfo)
116
161k
117
161k
ASN1_SEQUENCE(CMS_OtherKeyAttribute) = {
118
161k
        ASN1_SIMPLE(CMS_OtherKeyAttribute, keyAttrId, ASN1_OBJECT),
119
161k
        ASN1_OPT(CMS_OtherKeyAttribute, keyAttr, ASN1_ANY)
120
161k
} ASN1_SEQUENCE_END(CMS_OtherKeyAttribute)
121
105k
122
105k
ASN1_SEQUENCE(CMS_RecipientKeyIdentifier) = {
123
105k
        ASN1_SIMPLE(CMS_RecipientKeyIdentifier, subjectKeyIdentifier, ASN1_OCTET_STRING),
124
105k
        ASN1_OPT(CMS_RecipientKeyIdentifier, date, ASN1_GENERALIZEDTIME),
125
105k
        ASN1_OPT(CMS_RecipientKeyIdentifier, other, CMS_OtherKeyAttribute)
126
105k
} ASN1_SEQUENCE_END(CMS_RecipientKeyIdentifier)
127
38.3k
128
38.3k
ASN1_CHOICE(CMS_KeyAgreeRecipientIdentifier) = {
129
38.3k
  ASN1_SIMPLE(CMS_KeyAgreeRecipientIdentifier, d.issuerAndSerialNumber, CMS_IssuerAndSerialNumber),
130
38.3k
  ASN1_IMP(CMS_KeyAgreeRecipientIdentifier, d.rKeyId, CMS_RecipientKeyIdentifier, 0)
131
115k
} static_ASN1_CHOICE_END(CMS_KeyAgreeRecipientIdentifier)
132
115k
133
115k
static int cms_rek_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
134
115k
                      void *exarg)
135
115k
{
136
95.2k
    CMS_RecipientEncryptedKey *rek = (CMS_RecipientEncryptedKey *)*pval;
137
95.2k
    if (operation == ASN1_OP_FREE_POST) {
138
12.4k
        EVP_PKEY_free(rek->pkey);
139
12.4k
    }
140
95.2k
    return 1;
141
95.2k
}
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
86
} ASN1_SEQUENCE_END(CMS_OriginatorPublicKey)
152
86
153
86
ASN1_CHOICE(CMS_OriginatorIdentifierOrKey) = {
154
86
  ASN1_SIMPLE(CMS_OriginatorIdentifierOrKey, d.issuerAndSerialNumber, CMS_IssuerAndSerialNumber),
155
86
  ASN1_IMP(CMS_OriginatorIdentifierOrKey, d.subjectKeyIdentifier, ASN1_OCTET_STRING, 0),
156
86
  ASN1_IMP(CMS_OriginatorIdentifierOrKey, d.originatorKey, CMS_OriginatorPublicKey, 1)
157
328k
} static_ASN1_CHOICE_END(CMS_OriginatorIdentifierOrKey)
158
328k
159
328k
static int cms_kari_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
160
328k
                       void *exarg)
161
328k
{
162
210k
    CMS_KeyAgreeRecipientInfo *kari = (CMS_KeyAgreeRecipientInfo *)*pval;
163
210k
    if (operation == ASN1_OP_NEW_POST) {
164
20.0k
        kari->ctx = EVP_CIPHER_CTX_new();
165
20.0k
        if (kari->ctx == NULL)
166
0
            return 0;
167
20.0k
        EVP_CIPHER_CTX_set_flags(kari->ctx, EVP_CIPHER_CTX_FLAG_WRAP_ALLOW);
168
20.0k
        kari->pctx = NULL;
169
190k
    } else if (operation == ASN1_OP_FREE_POST) {
170
20.0k
        EVP_PKEY_CTX_free(kari->pctx);
171
20.0k
        EVP_CIPHER_CTX_free(kari->ctx);
172
20.0k
    }
173
210k
    return 1;
174
210k
}
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
36.3k
} static_ASN1_SEQUENCE_END(CMS_KEKIdentifier)
189
36.3k
190
36.3k
ASN1_SEQUENCE(CMS_KEKRecipientInfo) = {
191
36.3k
        ASN1_EMBED(CMS_KEKRecipientInfo, version, INT32),
192
36.3k
        ASN1_SIMPLE(CMS_KEKRecipientInfo, kekid, CMS_KEKIdentifier),
193
36.3k
        ASN1_SIMPLE(CMS_KEKRecipientInfo, keyEncryptionAlgorithm, X509_ALGOR),
194
36.3k
        ASN1_SIMPLE(CMS_KEKRecipientInfo, encryptedKey, ASN1_OCTET_STRING)
195
90.4k
} ASN1_SEQUENCE_END(CMS_KEKRecipientInfo)
196
90.4k
197
90.4k
ASN1_SEQUENCE(CMS_PasswordRecipientInfo) = {
198
90.4k
        ASN1_EMBED(CMS_PasswordRecipientInfo, version, INT32),
199
90.4k
        ASN1_IMP_OPT(CMS_PasswordRecipientInfo, keyDerivationAlgorithm, X509_ALGOR, 0),
200
90.4k
        ASN1_SIMPLE(CMS_PasswordRecipientInfo, keyEncryptionAlgorithm, X509_ALGOR),
201
90.4k
        ASN1_SIMPLE(CMS_PasswordRecipientInfo, encryptedKey, ASN1_OCTET_STRING)
202
182k
} ASN1_SEQUENCE_END(CMS_PasswordRecipientInfo)
203
182k
204
182k
static int cms_kemri_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
205
182k
                        void *exarg)
206
182k
{
207
5
    CMS_KEMRecipientInfo *kemri = (CMS_KEMRecipientInfo *)*pval;
208
209
5
    if (operation == ASN1_OP_NEW_POST) {
210
1
        kemri->ctx = EVP_CIPHER_CTX_new();
211
1
        if (kemri->ctx == NULL)
212
0
            return 0;
213
1
        EVP_CIPHER_CTX_set_flags(kemri->ctx, EVP_CIPHER_CTX_FLAG_WRAP_ALLOW);
214
1
        kemri->pctx = NULL;
215
4
    } else if (operation == ASN1_OP_FREE_POST) {
216
1
        EVP_PKEY_CTX_free(kemri->pctx);
217
1
        EVP_CIPHER_CTX_free(kemri->ctx);
218
1
        ASN1_OCTET_STRING_free(kemri->ukm);
219
1
    }
220
5
    return 1;
221
5
}
222
223
ASN1_SEQUENCE_cb(CMS_KEMRecipientInfo, cms_kemri_cb) = {
224
        ASN1_EMBED(CMS_KEMRecipientInfo, version, INT32),
225
        ASN1_SIMPLE(CMS_KEMRecipientInfo, rid, CMS_SignerIdentifier),
226
        ASN1_SIMPLE(CMS_KEMRecipientInfo, kem, X509_ALGOR),
227
        ASN1_SIMPLE(CMS_KEMRecipientInfo, kemct, ASN1_OCTET_STRING),
228
        ASN1_SIMPLE(CMS_KEMRecipientInfo, kdf, X509_ALGOR),
229
        ASN1_EMBED(CMS_KEMRecipientInfo, kekLength, INT32),
230
        ASN1_EXP_OPT(CMS_KEMRecipientInfo, ukm, ASN1_OCTET_STRING, 0),
231
        ASN1_SIMPLE(CMS_KEMRecipientInfo, wrap, X509_ALGOR),
232
        ASN1_SIMPLE(CMS_KEMRecipientInfo, encryptedKey, ASN1_OCTET_STRING)
233
} ASN1_SEQUENCE_END_cb(CMS_KEMRecipientInfo, CMS_KEMRecipientInfo)
234
235
ASN1_ADB_TEMPLATE(ori_def) = ASN1_SIMPLE(CMS_OtherRecipientInfo, d.other, ASN1_ANY);
236
237
ASN1_ADB(CMS_OtherRecipientInfo) = {
238
        ADB_ENTRY(NID_id_smime_ori_kem, ASN1_SIMPLE(CMS_OtherRecipientInfo, d.kemri,
239
                  CMS_KEMRecipientInfo))
240
29.6k
} ASN1_ADB_END(CMS_OtherRecipientInfo, 0, oriType, 0, &ori_def_tt, NULL);
241
242
DECLARE_ASN1_FUNCTIONS(CMS_OtherRecipientInfo)
243
244
ASN1_SEQUENCE(CMS_OtherRecipientInfo) = {
245
  ASN1_SIMPLE(CMS_OtherRecipientInfo, oriType, ASN1_OBJECT),
246
  ASN1_ADB_OBJECT(CMS_OtherRecipientInfo)
247
20.1k
} ASN1_SEQUENCE_END(CMS_OtherRecipientInfo)
248
20.1k
249
20.1k
IMPLEMENT_ASN1_FUNCTIONS(CMS_OtherRecipientInfo)
250
20.1k
251
20.1k
/* Free up RecipientInfo additional data */
252
20.1k
static int cms_ri_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
253
20.1k
                     void *exarg)
254
208k
{
255
208k
    if (operation == ASN1_OP_FREE_PRE) {
256
25.8k
        CMS_RecipientInfo *ri = (CMS_RecipientInfo *)*pval;
257
25.8k
        if (ri->type == CMS_RECIPINFO_TRANS) {
258
3.65k
            CMS_KeyTransRecipientInfo *ktri = ri->d.ktri;
259
3.65k
            EVP_PKEY_free(ktri->pkey);
260
3.65k
            X509_free(ktri->recip);
261
3.65k
            EVP_PKEY_CTX_free(ktri->pctx);
262
22.2k
        } else if (ri->type == CMS_RECIPINFO_KEK) {
263
3.19k
            CMS_KEKRecipientInfo *kekri = ri->d.kekri;
264
3.19k
            OPENSSL_clear_free(kekri->key, kekri->keylen);
265
19.0k
        } else if (ri->type == CMS_RECIPINFO_PASS) {
266
8.64k
            CMS_PasswordRecipientInfo *pwri = ri->d.pwri;
267
8.64k
            OPENSSL_clear_free(pwri->pass, pwri->passlen);
268
8.64k
        }
269
182k
    } else if (operation == ASN1_OP_D2I_POST) {
270
24.3k
        CMS_RecipientInfo *ri = (CMS_RecipientInfo *)*pval;
271
272
24.3k
        ri->type = ri->encoded_type;
273
24.3k
        if (ri->type == CMS_RECIPINFO_OTHER) {
274
3.70k
            int nid;
275
276
3.70k
            nid = OBJ_obj2nid(ri->d.ori->oriType);
277
            /* For ORI, map NID to specific type */
278
3.70k
            if (nid == NID_id_smime_ori_kem)
279
0
                ri->type = CMS_RECIPINFO_KEM;
280
            /* Otherwise stay with generic CMS_RECIPINFO_OTHER type */
281
3.70k
        }
282
158k
    } else if (operation == ASN1_OP_NEW_POST) {
283
25.8k
        CMS_RecipientInfo *ri = (CMS_RecipientInfo *)*pval;
284
285
25.8k
        ri->type = ri->encoded_type;
286
25.8k
    }
287
208k
    return 1;
288
208k
}
289
290
ASN1_CHOICE_cb(CMS_RecipientInfo, cms_ri_cb) = {
291
        ASN1_SIMPLE(CMS_RecipientInfo, d.ktri, CMS_KeyTransRecipientInfo),
292
        ASN1_IMP(CMS_RecipientInfo, d.kari, CMS_KeyAgreeRecipientInfo, 1),
293
        ASN1_IMP(CMS_RecipientInfo, d.kekri, CMS_KEKRecipientInfo, 2),
294
        ASN1_IMP(CMS_RecipientInfo, d.pwri, CMS_PasswordRecipientInfo, 3),
295
        ASN1_IMP(CMS_RecipientInfo, d.ori, CMS_OtherRecipientInfo, 4)
296
490k
} ASN1_CHOICE_END_cb(CMS_RecipientInfo, CMS_RecipientInfo, encoded_type)
297
298
ASN1_NDEF_SEQUENCE(CMS_EnvelopedData) = {
299
        ASN1_EMBED(CMS_EnvelopedData, version, INT32),
300
        ASN1_IMP_OPT(CMS_EnvelopedData, originatorInfo, CMS_OriginatorInfo, 0),
301
        ASN1_SET_OF(CMS_EnvelopedData, recipientInfos, CMS_RecipientInfo),
302
        ASN1_SIMPLE(CMS_EnvelopedData, encryptedContentInfo, CMS_EncryptedContentInfo),
303
        ASN1_IMP_SET_OF_OPT(CMS_EnvelopedData, unprotectedAttrs, X509_ATTRIBUTE, 1)
304
26.7k
} ASN1_NDEF_SEQUENCE_END(CMS_EnvelopedData)
305
IMPLEMENT_ASN1_DUP_FUNCTION(CMS_EnvelopedData)
306
307
ASN1_NDEF_SEQUENCE(CMS_DigestedData) = {
308
        ASN1_EMBED(CMS_DigestedData, version, INT32),
309
        ASN1_SIMPLE(CMS_DigestedData, digestAlgorithm, X509_ALGOR),
310
        ASN1_SIMPLE(CMS_DigestedData, encapContentInfo, CMS_EncapsulatedContentInfo),
311
        ASN1_SIMPLE(CMS_DigestedData, digest, ASN1_OCTET_STRING)
312
688
} ASN1_NDEF_SEQUENCE_END(CMS_DigestedData)
313
314
ASN1_NDEF_SEQUENCE(CMS_EncryptedData) = {
315
        ASN1_EMBED(CMS_EncryptedData, version, INT32),
316
        ASN1_SIMPLE(CMS_EncryptedData, encryptedContentInfo, CMS_EncryptedContentInfo),
317
        ASN1_IMP_SET_OF_OPT(CMS_EncryptedData, unprotectedAttrs, X509_ATTRIBUTE, 1)
318
1.82k
} ASN1_NDEF_SEQUENCE_END(CMS_EncryptedData)
319
320
/* Defined in RFC 5083 - Section 2.1. AuthEnvelopedData Type */
321
ASN1_NDEF_SEQUENCE(CMS_AuthEnvelopedData) = {
322
        ASN1_EMBED(CMS_AuthEnvelopedData, version, INT32),
323
        ASN1_IMP_OPT(CMS_AuthEnvelopedData, originatorInfo, CMS_OriginatorInfo, 0),
324
        ASN1_SET_OF(CMS_AuthEnvelopedData, recipientInfos, CMS_RecipientInfo),
325
        ASN1_SIMPLE(CMS_AuthEnvelopedData, authEncryptedContentInfo, CMS_EncryptedContentInfo),
326
        ASN1_IMP_SET_OF_OPT(CMS_AuthEnvelopedData, authAttrs, X509_ALGOR, 2),
327
        ASN1_SIMPLE(CMS_AuthEnvelopedData, mac, ASN1_OCTET_STRING),
328
        ASN1_IMP_SET_OF_OPT(CMS_AuthEnvelopedData, unauthAttrs, X509_ALGOR, 3)
329
256
} ASN1_NDEF_SEQUENCE_END(CMS_AuthEnvelopedData)
330
331
ASN1_NDEF_SEQUENCE(CMS_AuthenticatedData) = {
332
        ASN1_EMBED(CMS_AuthenticatedData, version, INT32),
333
        ASN1_IMP_OPT(CMS_AuthenticatedData, originatorInfo, CMS_OriginatorInfo, 0),
334
        ASN1_SET_OF(CMS_AuthenticatedData, recipientInfos, CMS_RecipientInfo),
335
        ASN1_SIMPLE(CMS_AuthenticatedData, macAlgorithm, X509_ALGOR),
336
        ASN1_IMP(CMS_AuthenticatedData, digestAlgorithm, X509_ALGOR, 1),
337
        ASN1_SIMPLE(CMS_AuthenticatedData, encapContentInfo, CMS_EncapsulatedContentInfo),
338
        ASN1_IMP_SET_OF_OPT(CMS_AuthenticatedData, authAttrs, X509_ALGOR, 2),
339
        ASN1_SIMPLE(CMS_AuthenticatedData, mac, ASN1_OCTET_STRING),
340
        ASN1_IMP_SET_OF_OPT(CMS_AuthenticatedData, unauthAttrs, X509_ALGOR, 3)
341
58.4k
} static_ASN1_NDEF_SEQUENCE_END(CMS_AuthenticatedData)
342
343
ASN1_NDEF_SEQUENCE(CMS_CompressedData) = {
344
        ASN1_EMBED(CMS_CompressedData, version, INT32),
345
        ASN1_SIMPLE(CMS_CompressedData, compressionAlgorithm, X509_ALGOR),
346
        ASN1_SIMPLE(CMS_CompressedData, encapContentInfo, CMS_EncapsulatedContentInfo),
347
152
} ASN1_NDEF_SEQUENCE_END(CMS_CompressedData)
348
349
/* This is the ANY DEFINED BY table for the top level ContentInfo structure */
350
351
ASN1_ADB_TEMPLATE(cms_default) = ASN1_EXP(CMS_ContentInfo, d.other, ASN1_ANY, 0);
352
353
ASN1_ADB(CMS_ContentInfo) = {
354
        ADB_ENTRY(NID_pkcs7_data, ASN1_NDEF_EXP(CMS_ContentInfo, d.data, ASN1_OCTET_STRING_NDEF, 0)),
355
        ADB_ENTRY(NID_pkcs7_signed, ASN1_NDEF_EXP(CMS_ContentInfo, d.signedData, CMS_SignedData, 0)),
356
        ADB_ENTRY(NID_pkcs7_enveloped, ASN1_NDEF_EXP(CMS_ContentInfo, d.envelopedData, CMS_EnvelopedData, 0)),
357
        ADB_ENTRY(NID_pkcs7_digest, ASN1_NDEF_EXP(CMS_ContentInfo, d.digestedData, CMS_DigestedData, 0)),
358
        ADB_ENTRY(NID_pkcs7_encrypted, ASN1_NDEF_EXP(CMS_ContentInfo, d.encryptedData, CMS_EncryptedData, 0)),
359
        ADB_ENTRY(NID_id_smime_ct_authEnvelopedData, ASN1_NDEF_EXP(CMS_ContentInfo, d.authEnvelopedData, CMS_AuthEnvelopedData, 0)),
360
        ADB_ENTRY(NID_id_smime_ct_authData, ASN1_NDEF_EXP(CMS_ContentInfo, d.authenticatedData, CMS_AuthenticatedData, 0)),
361
        ADB_ENTRY(NID_id_smime_ct_compressedData, ASN1_NDEF_EXP(CMS_ContentInfo, d.compressedData, CMS_CompressedData, 0)),
362
416k
} ASN1_ADB_END(CMS_ContentInfo, 0, contentType, 0, &cms_default_tt, NULL);
363
364
/* CMS streaming support */
365
static int cms_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
366
                  void *exarg)
367
587k
{
368
587k
    ASN1_STREAM_ARG *sarg = exarg;
369
587k
    CMS_ContentInfo *cms = NULL;
370
587k
    if (pval)
371
587k
        cms = (CMS_ContentInfo *)*pval;
372
0
    else
373
0
        return 1;
374
587k
    switch (operation) {
375
376
0
    case ASN1_OP_STREAM_PRE:
377
0
        if (CMS_stream(&sarg->boundary, cms) <= 0)
378
0
            return 0;
379
        /* fall through */
380
0
    case ASN1_OP_DETACHED_PRE:
381
0
        sarg->ndef_bio = CMS_dataInit(cms, sarg->out);
382
0
        if (!sarg->ndef_bio)
383
0
            return 0;
384
0
        break;
385
386
0
    case ASN1_OP_STREAM_POST:
387
0
    case ASN1_OP_DETACHED_POST:
388
0
        if (CMS_dataFinal(cms, sarg->ndef_bio) <= 0)
389
0
            return 0;
390
0
        break;
391
392
109k
    case ASN1_OP_FREE_POST:
393
109k
        OPENSSL_free(cms->ctx.propq);
394
109k
        break;
395
396
587k
    }
397
587k
    return 1;
398
587k
}
399
400
ASN1_NDEF_SEQUENCE_cb(CMS_ContentInfo, cms_cb) = {
401
        ASN1_SIMPLE(CMS_ContentInfo, contentType, ASN1_OBJECT),
402
        ASN1_ADB_OBJECT(CMS_ContentInfo)
403
} ASN1_NDEF_SEQUENCE_END_cb(CMS_ContentInfo, CMS_ContentInfo)
404
405
/* Specials for signed attributes */
406
407
/*
408
 * When signing attributes we want to reorder them to match the sorted
409
 * encoding.
410
 */
411
412
ASN1_ITEM_TEMPLATE(CMS_Attributes_Sign) =
413
        ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SET_ORDER, 0, CMS_ATTRIBUTES, X509_ATTRIBUTE)
414
0
ASN1_ITEM_TEMPLATE_END(CMS_Attributes_Sign)
415
416
/*
417
 * When verifying attributes we need to use the received order. So we use
418
 * SEQUENCE OF and tag it to SET OF
419
 */
420
421
ASN1_ITEM_TEMPLATE(CMS_Attributes_Verify) =
422
        ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF | ASN1_TFLG_IMPTAG | ASN1_TFLG_UNIVERSAL,
423
                                V_ASN1_SET, CMS_ATTRIBUTES, X509_ATTRIBUTE)
424
0
ASN1_ITEM_TEMPLATE_END(CMS_Attributes_Verify)
425
426
427
428
ASN1_CHOICE(CMS_ReceiptsFrom) = {
429
  ASN1_IMP_EMBED(CMS_ReceiptsFrom, d.allOrFirstTier, INT32, 0),
430
  ASN1_IMP_SEQUENCE_OF(CMS_ReceiptsFrom, d.receiptList, GENERAL_NAMES, 1)
431
249k
} static_ASN1_CHOICE_END(CMS_ReceiptsFrom)
432
249k
433
249k
ASN1_SEQUENCE(CMS_ReceiptRequest) = {
434
249k
  ASN1_SIMPLE(CMS_ReceiptRequest, signedContentIdentifier, ASN1_OCTET_STRING),
435
249k
  ASN1_SIMPLE(CMS_ReceiptRequest, receiptsFrom, CMS_ReceiptsFrom),
436
249k
  ASN1_SEQUENCE_OF(CMS_ReceiptRequest, receiptsTo, GENERAL_NAMES)
437
249k
} ASN1_SEQUENCE_END(CMS_ReceiptRequest)
438
77.2k
439
77.2k
ASN1_SEQUENCE(CMS_Receipt) = {
440
77.2k
  ASN1_EMBED(CMS_Receipt, version, INT32),
441
77.2k
  ASN1_SIMPLE(CMS_Receipt, contentType, ASN1_OBJECT),
442
77.2k
  ASN1_SIMPLE(CMS_Receipt, signedContentIdentifier, ASN1_OCTET_STRING),
443
77.2k
  ASN1_SIMPLE(CMS_Receipt, originatorSignatureValue, ASN1_OCTET_STRING)
444
77.2k
} ASN1_SEQUENCE_END(CMS_Receipt)
445
0
446
0
/*
447
0
 * Utilities to encode the CMS_SharedInfo structure used during key
448
0
 * derivation.
449
0
 */
450
0
451
0
typedef struct {
452
0
    X509_ALGOR *keyInfo;
453
0
    ASN1_OCTET_STRING *entityUInfo;
454
0
    ASN1_OCTET_STRING *suppPubInfo;
455
0
} CMS_SharedInfo;
456
0
457
0
ASN1_SEQUENCE(CMS_SharedInfo) = {
458
0
  ASN1_SIMPLE(CMS_SharedInfo, keyInfo, X509_ALGOR),
459
0
  ASN1_EXP_OPT(CMS_SharedInfo, entityUInfo, ASN1_OCTET_STRING, 0),
460
0
  ASN1_EXP_OPT(CMS_SharedInfo, suppPubInfo, ASN1_OCTET_STRING, 2),
461
0
} static_ASN1_SEQUENCE_END(CMS_SharedInfo)
462
0
463
0
int CMS_SharedInfo_encode(unsigned char **pder, X509_ALGOR *kekalg,
464
0
                          ASN1_OCTET_STRING *ukm, int keylen)
465
0
{
466
0
    union {
467
0
        CMS_SharedInfo *pecsi;
468
0
        ASN1_VALUE *a;
469
0
    } intsi = {
470
0
        NULL
471
0
    };
472
473
0
    ASN1_OCTET_STRING oklen;
474
0
    unsigned char kl[4];
475
0
    CMS_SharedInfo ecsi;
476
477
0
    keylen <<= 3;
478
0
    kl[0] = (keylen >> 24) & 0xff;
479
0
    kl[1] = (keylen >> 16) & 0xff;
480
0
    kl[2] = (keylen >> 8) & 0xff;
481
0
    kl[3] = keylen & 0xff;
482
0
    oklen.length = 4;
483
0
    oklen.data = kl;
484
0
    oklen.type = V_ASN1_OCTET_STRING;
485
0
    oklen.flags = 0;
486
0
    ecsi.keyInfo = kekalg;
487
0
    ecsi.entityUInfo = ukm;
488
0
    ecsi.suppPubInfo = &oklen;
489
0
    intsi.pecsi = &ecsi;
490
0
    return ASN1_item_i2d(intsi.a, pder, ASN1_ITEM_rptr(CMS_SharedInfo));
491
0
}
492
493
/*
494
 * Utilities to encode the CMS_CMSORIforKEMOtherInfo structure used during key
495
 * derivation.
496
 */
497
498
typedef struct {
499
    X509_ALGOR *wrap;
500
    uint32_t kekLength;
501
    ASN1_OCTET_STRING *ukm;
502
} CMS_CMSORIforKEMOtherInfo;
503
504
ASN1_SEQUENCE(CMS_CMSORIforKEMOtherInfo) = {
505
        ASN1_SIMPLE(CMS_CMSORIforKEMOtherInfo, wrap, X509_ALGOR),
506
        ASN1_EMBED(CMS_CMSORIforKEMOtherInfo, kekLength, INT32),
507
        ASN1_EXP_OPT(CMS_CMSORIforKEMOtherInfo, ukm, ASN1_OCTET_STRING, 0),
508
0
} static_ASN1_SEQUENCE_END(CMS_CMSORIforKEMOtherInfo)
509
0
510
0
int CMS_CMSORIforKEMOtherInfo_encode(unsigned char **pder, X509_ALGOR *wrap,
511
0
                                     ASN1_OCTET_STRING *ukm, int keylen)
512
0
{
513
0
    CMS_CMSORIforKEMOtherInfo kem_otherinfo;
514
515
0
    kem_otherinfo.wrap = wrap;
516
0
    kem_otherinfo.kekLength = keylen;
517
0
    kem_otherinfo.ukm = ukm;
518
519
0
    return ASN1_item_i2d((ASN1_VALUE *)&kem_otherinfo, pder,
520
0
                         ASN1_ITEM_rptr(CMS_CMSORIforKEMOtherInfo));
521
0
}