Coverage Report

Created: 2023-09-25 06:41

/src/openssl111/crypto/cms/cms_sd.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2008-2023 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the OpenSSL license (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 "internal/cryptlib.h"
11
#include <openssl/asn1t.h>
12
#include <openssl/pem.h>
13
#include <openssl/x509.h>
14
#include <openssl/x509v3.h>
15
#include <openssl/err.h>
16
#include <openssl/cms.h>
17
#include "cms_local.h"
18
#include "crypto/asn1.h"
19
#include "crypto/evp.h"
20
21
/* CMS SignedData Utilities */
22
23
static CMS_SignedData *cms_get0_signed(CMS_ContentInfo *cms)
24
0
{
25
0
    if (OBJ_obj2nid(cms->contentType) != NID_pkcs7_signed) {
26
0
        CMSerr(CMS_F_CMS_GET0_SIGNED, CMS_R_CONTENT_TYPE_NOT_SIGNED_DATA);
27
0
        return NULL;
28
0
    }
29
0
    return cms->d.signedData;
30
0
}
31
32
static CMS_SignedData *cms_signed_data_init(CMS_ContentInfo *cms)
33
0
{
34
0
    if (cms->d.other == NULL) {
35
0
        cms->d.signedData = M_ASN1_new_of(CMS_SignedData);
36
0
        if (!cms->d.signedData) {
37
0
            CMSerr(CMS_F_CMS_SIGNED_DATA_INIT, ERR_R_MALLOC_FAILURE);
38
0
            return NULL;
39
0
        }
40
0
        cms->d.signedData->version = 1;
41
0
        cms->d.signedData->encapContentInfo->eContentType =
42
0
            OBJ_nid2obj(NID_pkcs7_data);
43
0
        cms->d.signedData->encapContentInfo->partial = 1;
44
0
        ASN1_OBJECT_free(cms->contentType);
45
0
        cms->contentType = OBJ_nid2obj(NID_pkcs7_signed);
46
0
        return cms->d.signedData;
47
0
    }
48
0
    return cms_get0_signed(cms);
49
0
}
50
51
/* Just initialise SignedData e.g. for certs only structure */
52
53
int CMS_SignedData_init(CMS_ContentInfo *cms)
54
0
{
55
0
    if (cms_signed_data_init(cms))
56
0
        return 1;
57
0
    else
58
0
        return 0;
59
0
}
60
61
/* Check structures and fixup version numbers (if necessary) */
62
63
static void cms_sd_set_version(CMS_SignedData *sd)
64
0
{
65
0
    int i;
66
0
    CMS_CertificateChoices *cch;
67
0
    CMS_RevocationInfoChoice *rch;
68
0
    CMS_SignerInfo *si;
69
70
0
    for (i = 0; i < sk_CMS_CertificateChoices_num(sd->certificates); i++) {
71
0
        cch = sk_CMS_CertificateChoices_value(sd->certificates, i);
72
0
        if (cch->type == CMS_CERTCHOICE_OTHER) {
73
0
            if (sd->version < 5)
74
0
                sd->version = 5;
75
0
        } else if (cch->type == CMS_CERTCHOICE_V2ACERT) {
76
0
            if (sd->version < 4)
77
0
                sd->version = 4;
78
0
        } else if (cch->type == CMS_CERTCHOICE_V1ACERT) {
79
0
            if (sd->version < 3)
80
0
                sd->version = 3;
81
0
        }
82
0
    }
83
84
0
    for (i = 0; i < sk_CMS_RevocationInfoChoice_num(sd->crls); i++) {
85
0
        rch = sk_CMS_RevocationInfoChoice_value(sd->crls, i);
86
0
        if (rch->type == CMS_REVCHOICE_OTHER) {
87
0
            if (sd->version < 5)
88
0
                sd->version = 5;
89
0
        }
90
0
    }
91
92
0
    if ((OBJ_obj2nid(sd->encapContentInfo->eContentType) != NID_pkcs7_data)
93
0
        && (sd->version < 3))
94
0
        sd->version = 3;
95
96
0
    for (i = 0; i < sk_CMS_SignerInfo_num(sd->signerInfos); i++) {
97
0
        si = sk_CMS_SignerInfo_value(sd->signerInfos, i);
98
0
        if (si->sid->type == CMS_SIGNERINFO_KEYIDENTIFIER) {
99
0
            if (si->version < 3)
100
0
                si->version = 3;
101
0
            if (sd->version < 3)
102
0
                sd->version = 3;
103
0
        } else if (si->version < 1)
104
0
            si->version = 1;
105
0
    }
106
107
0
    if (sd->version < 1)
108
0
        sd->version = 1;
109
110
0
}
111
112
/*
113
 * RFC 5652 Section 11.1 Content Type
114
 * The content-type attribute within signed-data MUST
115
 *   1) be present if there are signed attributes
116
 *   2) match the content type in the signed-data,
117
 *   3) be a signed attribute.
118
 *   4) not have more than one copy of the attribute.
119
 *
120
 * Note that since the CMS_SignerInfo_sign() always adds the "signing time"
121
 * attribute, the content type attribute MUST be added also.
122
 * Assumptions: This assumes that the attribute does not already exist.
123
 */
124
static int cms_set_si_contentType_attr(CMS_ContentInfo *cms, CMS_SignerInfo *si)
125
0
{
126
0
    ASN1_OBJECT *ctype = cms->d.signedData->encapContentInfo->eContentType;
127
128
    /* Add the contentType attribute */
129
0
    return CMS_signed_add1_attr_by_NID(si, NID_pkcs9_contentType,
130
0
                                       V_ASN1_OBJECT, ctype, -1) > 0;
131
0
}
132
133
/* Copy an existing messageDigest value */
134
135
static int cms_copy_messageDigest(CMS_ContentInfo *cms, CMS_SignerInfo *si)
136
0
{
137
0
    STACK_OF(CMS_SignerInfo) *sinfos;
138
0
    CMS_SignerInfo *sitmp;
139
0
    int i;
140
0
    sinfos = CMS_get0_SignerInfos(cms);
141
0
    for (i = 0; i < sk_CMS_SignerInfo_num(sinfos); i++) {
142
0
        ASN1_OCTET_STRING *messageDigest;
143
0
        sitmp = sk_CMS_SignerInfo_value(sinfos, i);
144
0
        if (sitmp == si)
145
0
            continue;
146
0
        if (CMS_signed_get_attr_count(sitmp) < 0)
147
0
            continue;
148
0
        if (OBJ_cmp(si->digestAlgorithm->algorithm,
149
0
                    sitmp->digestAlgorithm->algorithm))
150
0
            continue;
151
0
        messageDigest = CMS_signed_get0_data_by_OBJ(sitmp,
152
0
                                                    OBJ_nid2obj
153
0
                                                    (NID_pkcs9_messageDigest),
154
0
                                                    -3, V_ASN1_OCTET_STRING);
155
0
        if (!messageDigest) {
156
0
            CMSerr(CMS_F_CMS_COPY_MESSAGEDIGEST,
157
0
                   CMS_R_ERROR_READING_MESSAGEDIGEST_ATTRIBUTE);
158
0
            return 0;
159
0
        }
160
161
0
        if (CMS_signed_add1_attr_by_NID(si, NID_pkcs9_messageDigest,
162
0
                                        V_ASN1_OCTET_STRING,
163
0
                                        messageDigest, -1))
164
0
            return 1;
165
0
        else
166
0
            return 0;
167
0
    }
168
0
    CMSerr(CMS_F_CMS_COPY_MESSAGEDIGEST, CMS_R_NO_MATCHING_DIGEST);
169
0
    return 0;
170
0
}
171
172
int cms_set1_SignerIdentifier(CMS_SignerIdentifier *sid, X509 *cert, int type)
173
0
{
174
0
    switch (type) {
175
0
    case CMS_SIGNERINFO_ISSUER_SERIAL:
176
0
        if (!cms_set1_ias(&sid->d.issuerAndSerialNumber, cert))
177
0
            return 0;
178
0
        break;
179
180
0
    case CMS_SIGNERINFO_KEYIDENTIFIER:
181
0
        if (!cms_set1_keyid(&sid->d.subjectKeyIdentifier, cert))
182
0
            return 0;
183
0
        break;
184
185
0
    default:
186
0
        CMSerr(CMS_F_CMS_SET1_SIGNERIDENTIFIER, CMS_R_UNKNOWN_ID);
187
0
        return 0;
188
0
    }
189
190
0
    sid->type = type;
191
192
0
    return 1;
193
0
}
194
195
int cms_SignerIdentifier_get0_signer_id(CMS_SignerIdentifier *sid,
196
                                        ASN1_OCTET_STRING **keyid,
197
                                        X509_NAME **issuer,
198
                                        ASN1_INTEGER **sno)
199
0
{
200
0
    if (sid->type == CMS_SIGNERINFO_ISSUER_SERIAL) {
201
0
        if (issuer)
202
0
            *issuer = sid->d.issuerAndSerialNumber->issuer;
203
0
        if (sno)
204
0
            *sno = sid->d.issuerAndSerialNumber->serialNumber;
205
0
    } else if (sid->type == CMS_SIGNERINFO_KEYIDENTIFIER) {
206
0
        if (keyid)
207
0
            *keyid = sid->d.subjectKeyIdentifier;
208
0
    } else
209
0
        return 0;
210
0
    return 1;
211
0
}
212
213
int cms_SignerIdentifier_cert_cmp(CMS_SignerIdentifier *sid, X509 *cert)
214
0
{
215
0
    if (sid->type == CMS_SIGNERINFO_ISSUER_SERIAL)
216
0
        return cms_ias_cert_cmp(sid->d.issuerAndSerialNumber, cert);
217
0
    else if (sid->type == CMS_SIGNERINFO_KEYIDENTIFIER)
218
0
        return cms_keyid_cert_cmp(sid->d.subjectKeyIdentifier, cert);
219
0
    else
220
0
        return -1;
221
0
}
222
223
static int cms_sd_asn1_ctrl(CMS_SignerInfo *si, int cmd)
224
0
{
225
0
    EVP_PKEY *pkey = si->pkey;
226
0
    int i;
227
0
    if (!pkey->ameth || !pkey->ameth->pkey_ctrl)
228
0
        return 1;
229
0
    i = pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_CMS_SIGN, cmd, si);
230
0
    if (i == -2) {
231
0
        CMSerr(CMS_F_CMS_SD_ASN1_CTRL, CMS_R_NOT_SUPPORTED_FOR_THIS_KEY_TYPE);
232
0
        return 0;
233
0
    }
234
0
    if (i <= 0) {
235
0
        CMSerr(CMS_F_CMS_SD_ASN1_CTRL, CMS_R_CTRL_FAILURE);
236
0
        return 0;
237
0
    }
238
0
    return 1;
239
0
}
240
241
CMS_SignerInfo *CMS_add1_signer(CMS_ContentInfo *cms,
242
                                X509 *signer, EVP_PKEY *pk, const EVP_MD *md,
243
                                unsigned int flags)
244
0
{
245
0
    CMS_SignedData *sd;
246
0
    CMS_SignerInfo *si = NULL;
247
0
    X509_ALGOR *alg;
248
0
    int i, type;
249
0
    if (!X509_check_private_key(signer, pk)) {
250
0
        CMSerr(CMS_F_CMS_ADD1_SIGNER,
251
0
               CMS_R_PRIVATE_KEY_DOES_NOT_MATCH_CERTIFICATE);
252
0
        return NULL;
253
0
    }
254
0
    sd = cms_signed_data_init(cms);
255
0
    if (!sd)
256
0
        goto err;
257
0
    si = M_ASN1_new_of(CMS_SignerInfo);
258
0
    if (!si)
259
0
        goto merr;
260
    /* Call for side-effect of computing hash and caching extensions */
261
0
    X509_check_purpose(signer, -1, -1);
262
263
0
    X509_up_ref(signer);
264
0
    EVP_PKEY_up_ref(pk);
265
266
0
    si->pkey = pk;
267
0
    si->signer = signer;
268
0
    si->mctx = EVP_MD_CTX_new();
269
0
    si->pctx = NULL;
270
271
0
    if (si->mctx == NULL) {
272
0
        CMSerr(CMS_F_CMS_ADD1_SIGNER, ERR_R_MALLOC_FAILURE);
273
0
        goto err;
274
0
    }
275
276
0
    if (flags & CMS_USE_KEYID) {
277
0
        si->version = 3;
278
0
        if (sd->version < 3)
279
0
            sd->version = 3;
280
0
        type = CMS_SIGNERINFO_KEYIDENTIFIER;
281
0
    } else {
282
0
        type = CMS_SIGNERINFO_ISSUER_SERIAL;
283
0
        si->version = 1;
284
0
    }
285
286
0
    if (!cms_set1_SignerIdentifier(si->sid, signer, type))
287
0
        goto err;
288
289
0
    if (md == NULL) {
290
0
        int def_nid;
291
0
        if (EVP_PKEY_get_default_digest_nid(pk, &def_nid) <= 0)
292
0
            goto err;
293
0
        md = EVP_get_digestbynid(def_nid);
294
0
        if (md == NULL) {
295
0
            CMSerr(CMS_F_CMS_ADD1_SIGNER, CMS_R_NO_DEFAULT_DIGEST);
296
0
            goto err;
297
0
        }
298
0
    }
299
300
0
    if (!md) {
301
0
        CMSerr(CMS_F_CMS_ADD1_SIGNER, CMS_R_NO_DIGEST_SET);
302
0
        goto err;
303
0
    }
304
305
0
    X509_ALGOR_set_md(si->digestAlgorithm, md);
306
307
    /* See if digest is present in digestAlgorithms */
308
0
    for (i = 0; i < sk_X509_ALGOR_num(sd->digestAlgorithms); i++) {
309
0
        const ASN1_OBJECT *aoid;
310
0
        alg = sk_X509_ALGOR_value(sd->digestAlgorithms, i);
311
0
        X509_ALGOR_get0(&aoid, NULL, NULL, alg);
312
0
        if (OBJ_obj2nid(aoid) == EVP_MD_type(md))
313
0
            break;
314
0
    }
315
316
0
    if (i == sk_X509_ALGOR_num(sd->digestAlgorithms)) {
317
0
        alg = X509_ALGOR_new();
318
0
        if (alg == NULL)
319
0
            goto merr;
320
0
        X509_ALGOR_set_md(alg, md);
321
0
        if (!sk_X509_ALGOR_push(sd->digestAlgorithms, alg)) {
322
0
            X509_ALGOR_free(alg);
323
0
            goto merr;
324
0
        }
325
0
    }
326
327
0
    if (!(flags & CMS_KEY_PARAM) && !cms_sd_asn1_ctrl(si, 0))
328
0
        goto err;
329
0
    if (!(flags & CMS_NOATTR)) {
330
        /*
331
         * Initialize signed attributes structure so other attributes
332
         * such as signing time etc are added later even if we add none here.
333
         */
334
0
        if (!si->signedAttrs) {
335
0
            si->signedAttrs = sk_X509_ATTRIBUTE_new_null();
336
0
            if (!si->signedAttrs)
337
0
                goto merr;
338
0
        }
339
340
0
        if (!(flags & CMS_NOSMIMECAP)) {
341
0
            STACK_OF(X509_ALGOR) *smcap = NULL;
342
0
            i = CMS_add_standard_smimecap(&smcap);
343
0
            if (i)
344
0
                i = CMS_add_smimecap(si, smcap);
345
0
            sk_X509_ALGOR_pop_free(smcap, X509_ALGOR_free);
346
0
            if (!i)
347
0
                goto merr;
348
0
        }
349
0
        if (flags & CMS_REUSE_DIGEST) {
350
0
            if (!cms_copy_messageDigest(cms, si))
351
0
                goto err;
352
0
            if (!cms_set_si_contentType_attr(cms, si))
353
0
                goto err;
354
0
            if (!(flags & (CMS_PARTIAL | CMS_KEY_PARAM)) &&
355
0
                !CMS_SignerInfo_sign(si))
356
0
                goto err;
357
0
        }
358
0
    }
359
360
0
    if (!(flags & CMS_NOCERTS)) {
361
        /* NB ignore -1 return for duplicate cert */
362
0
        if (!CMS_add1_cert(cms, signer))
363
0
            goto merr;
364
0
    }
365
366
0
    if (flags & CMS_KEY_PARAM) {
367
0
        if (flags & CMS_NOATTR) {
368
0
            si->pctx = EVP_PKEY_CTX_new(si->pkey, NULL);
369
0
            if (si->pctx == NULL)
370
0
                goto err;
371
0
            if (EVP_PKEY_sign_init(si->pctx) <= 0)
372
0
                goto err;
373
0
            if (EVP_PKEY_CTX_set_signature_md(si->pctx, md) <= 0)
374
0
                goto err;
375
0
        } else if (EVP_DigestSignInit(si->mctx, &si->pctx, md, NULL, pk) <=
376
0
                   0)
377
0
            goto err;
378
0
        else
379
0
            EVP_MD_CTX_set_flags(si->mctx, EVP_MD_CTX_FLAG_KEEP_PKEY_CTX);
380
0
    }
381
382
0
    if (!sd->signerInfos)
383
0
        sd->signerInfos = sk_CMS_SignerInfo_new_null();
384
0
    if (!sd->signerInfos || !sk_CMS_SignerInfo_push(sd->signerInfos, si))
385
0
        goto merr;
386
387
0
    return si;
388
389
0
 merr:
390
0
    CMSerr(CMS_F_CMS_ADD1_SIGNER, ERR_R_MALLOC_FAILURE);
391
0
 err:
392
0
    M_ASN1_free_of(si, CMS_SignerInfo);
393
0
    return NULL;
394
395
0
}
396
397
static int cms_add1_signingTime(CMS_SignerInfo *si, ASN1_TIME *t)
398
0
{
399
0
    ASN1_TIME *tt;
400
0
    int r = 0;
401
0
    if (t)
402
0
        tt = t;
403
0
    else
404
0
        tt = X509_gmtime_adj(NULL, 0);
405
406
0
    if (!tt)
407
0
        goto merr;
408
409
0
    if (CMS_signed_add1_attr_by_NID(si, NID_pkcs9_signingTime,
410
0
                                    tt->type, tt, -1) <= 0)
411
0
        goto merr;
412
413
0
    r = 1;
414
415
0
 merr:
416
417
0
    if (!t)
418
0
        ASN1_TIME_free(tt);
419
420
0
    if (!r)
421
0
        CMSerr(CMS_F_CMS_ADD1_SIGNINGTIME, ERR_R_MALLOC_FAILURE);
422
423
0
    return r;
424
425
0
}
426
427
EVP_PKEY_CTX *CMS_SignerInfo_get0_pkey_ctx(CMS_SignerInfo *si)
428
0
{
429
0
    return si->pctx;
430
0
}
431
432
EVP_MD_CTX *CMS_SignerInfo_get0_md_ctx(CMS_SignerInfo *si)
433
0
{
434
0
    return si->mctx;
435
0
}
436
437
STACK_OF(CMS_SignerInfo) *CMS_get0_SignerInfos(CMS_ContentInfo *cms)
438
0
{
439
0
    CMS_SignedData *sd;
440
0
    sd = cms_get0_signed(cms);
441
0
    if (!sd)
442
0
        return NULL;
443
0
    return sd->signerInfos;
444
0
}
445
446
STACK_OF(X509) *CMS_get0_signers(CMS_ContentInfo *cms)
447
0
{
448
0
    STACK_OF(X509) *signers = NULL;
449
0
    STACK_OF(CMS_SignerInfo) *sinfos;
450
0
    CMS_SignerInfo *si;
451
0
    int i;
452
0
    sinfos = CMS_get0_SignerInfos(cms);
453
0
    for (i = 0; i < sk_CMS_SignerInfo_num(sinfos); i++) {
454
0
        si = sk_CMS_SignerInfo_value(sinfos, i);
455
0
        if (si->signer) {
456
0
            if (!signers) {
457
0
                signers = sk_X509_new_null();
458
0
                if (!signers)
459
0
                    return NULL;
460
0
            }
461
0
            if (!sk_X509_push(signers, si->signer)) {
462
0
                sk_X509_free(signers);
463
0
                return NULL;
464
0
            }
465
0
        }
466
0
    }
467
0
    return signers;
468
0
}
469
470
void CMS_SignerInfo_set1_signer_cert(CMS_SignerInfo *si, X509 *signer)
471
0
{
472
0
    if (signer) {
473
0
        X509_up_ref(signer);
474
0
        EVP_PKEY_free(si->pkey);
475
0
        si->pkey = X509_get_pubkey(signer);
476
0
    }
477
0
    X509_free(si->signer);
478
0
    si->signer = signer;
479
0
}
480
481
int CMS_SignerInfo_get0_signer_id(CMS_SignerInfo *si,
482
                                  ASN1_OCTET_STRING **keyid,
483
                                  X509_NAME **issuer, ASN1_INTEGER **sno)
484
0
{
485
0
    return cms_SignerIdentifier_get0_signer_id(si->sid, keyid, issuer, sno);
486
0
}
487
488
int CMS_SignerInfo_cert_cmp(CMS_SignerInfo *si, X509 *cert)
489
0
{
490
0
    return cms_SignerIdentifier_cert_cmp(si->sid, cert);
491
0
}
492
493
int CMS_set1_signers_certs(CMS_ContentInfo *cms, STACK_OF(X509) *scerts,
494
                           unsigned int flags)
495
0
{
496
0
    CMS_SignedData *sd;
497
0
    CMS_SignerInfo *si;
498
0
    CMS_CertificateChoices *cch;
499
0
    STACK_OF(CMS_CertificateChoices) *certs;
500
0
    X509 *x;
501
0
    int i, j;
502
0
    int ret = 0;
503
0
    sd = cms_get0_signed(cms);
504
0
    if (!sd)
505
0
        return -1;
506
0
    certs = sd->certificates;
507
0
    for (i = 0; i < sk_CMS_SignerInfo_num(sd->signerInfos); i++) {
508
0
        si = sk_CMS_SignerInfo_value(sd->signerInfos, i);
509
0
        if (si->signer)
510
0
            continue;
511
512
0
        for (j = 0; j < sk_X509_num(scerts); j++) {
513
0
            x = sk_X509_value(scerts, j);
514
0
            if (CMS_SignerInfo_cert_cmp(si, x) == 0) {
515
0
                CMS_SignerInfo_set1_signer_cert(si, x);
516
0
                ret++;
517
0
                break;
518
0
            }
519
0
        }
520
521
0
        if (si->signer || (flags & CMS_NOINTERN))
522
0
            continue;
523
524
0
        for (j = 0; j < sk_CMS_CertificateChoices_num(certs); j++) {
525
0
            cch = sk_CMS_CertificateChoices_value(certs, j);
526
0
            if (cch->type != 0)
527
0
                continue;
528
0
            x = cch->d.certificate;
529
0
            if (CMS_SignerInfo_cert_cmp(si, x) == 0) {
530
0
                CMS_SignerInfo_set1_signer_cert(si, x);
531
0
                ret++;
532
0
                break;
533
0
            }
534
0
        }
535
0
    }
536
0
    return ret;
537
0
}
538
539
void CMS_SignerInfo_get0_algs(CMS_SignerInfo *si, EVP_PKEY **pk,
540
                              X509 **signer, X509_ALGOR **pdig,
541
                              X509_ALGOR **psig)
542
0
{
543
0
    if (pk)
544
0
        *pk = si->pkey;
545
0
    if (signer)
546
0
        *signer = si->signer;
547
0
    if (pdig)
548
0
        *pdig = si->digestAlgorithm;
549
0
    if (psig)
550
0
        *psig = si->signatureAlgorithm;
551
0
}
552
553
ASN1_OCTET_STRING *CMS_SignerInfo_get0_signature(CMS_SignerInfo *si)
554
0
{
555
0
    return si->signature;
556
0
}
557
558
static int cms_SignerInfo_content_sign(CMS_ContentInfo *cms,
559
                                       CMS_SignerInfo *si, BIO *chain)
560
0
{
561
0
    EVP_MD_CTX *mctx = EVP_MD_CTX_new();
562
0
    int r = 0;
563
0
    EVP_PKEY_CTX *pctx = NULL;
564
565
0
    if (mctx == NULL) {
566
0
        CMSerr(CMS_F_CMS_SIGNERINFO_CONTENT_SIGN, ERR_R_MALLOC_FAILURE);
567
0
        return 0;
568
0
    }
569
570
0
    if (!si->pkey) {
571
0
        CMSerr(CMS_F_CMS_SIGNERINFO_CONTENT_SIGN, CMS_R_NO_PRIVATE_KEY);
572
0
        goto err;
573
0
    }
574
575
0
    if (!cms_DigestAlgorithm_find_ctx(mctx, chain, si->digestAlgorithm))
576
0
        goto err;
577
    /* Set SignerInfo algorithm details if we used custom parameter */
578
0
    if (si->pctx && !cms_sd_asn1_ctrl(si, 0))
579
0
        goto err;
580
581
    /*
582
     * If any signed attributes calculate and add messageDigest attribute
583
     */
584
585
0
    if (CMS_signed_get_attr_count(si) >= 0) {
586
0
        unsigned char md[EVP_MAX_MD_SIZE];
587
0
        unsigned int mdlen;
588
0
        if (!EVP_DigestFinal_ex(mctx, md, &mdlen))
589
0
            goto err;
590
0
        if (!CMS_signed_add1_attr_by_NID(si, NID_pkcs9_messageDigest,
591
0
                                         V_ASN1_OCTET_STRING, md, mdlen))
592
0
            goto err;
593
        /* Copy content type across */
594
0
        if (!cms_set_si_contentType_attr(cms, si))
595
0
            goto err;
596
597
0
        if (!CMS_SignerInfo_sign(si))
598
0
            goto err;
599
0
    } else if (si->pctx) {
600
0
        unsigned char *sig;
601
0
        size_t siglen;
602
0
        unsigned char md[EVP_MAX_MD_SIZE];
603
0
        unsigned int mdlen;
604
0
        pctx = si->pctx;
605
0
        si->pctx = NULL;
606
0
        if (!EVP_DigestFinal_ex(mctx, md, &mdlen))
607
0
            goto err;
608
0
        siglen = EVP_PKEY_size(si->pkey);
609
0
        sig = OPENSSL_malloc(siglen);
610
0
        if (sig == NULL) {
611
0
            CMSerr(CMS_F_CMS_SIGNERINFO_CONTENT_SIGN, ERR_R_MALLOC_FAILURE);
612
0
            goto err;
613
0
        }
614
0
        if (EVP_PKEY_sign(pctx, sig, &siglen, md, mdlen) <= 0) {
615
0
            OPENSSL_free(sig);
616
0
            goto err;
617
0
        }
618
0
        ASN1_STRING_set0(si->signature, sig, siglen);
619
0
    } else {
620
0
        unsigned char *sig;
621
0
        unsigned int siglen;
622
0
        sig = OPENSSL_malloc(EVP_PKEY_size(si->pkey));
623
0
        if (sig == NULL) {
624
0
            CMSerr(CMS_F_CMS_SIGNERINFO_CONTENT_SIGN, ERR_R_MALLOC_FAILURE);
625
0
            goto err;
626
0
        }
627
0
        if (!EVP_SignFinal(mctx, sig, &siglen, si->pkey)) {
628
0
            CMSerr(CMS_F_CMS_SIGNERINFO_CONTENT_SIGN, CMS_R_SIGNFINAL_ERROR);
629
0
            OPENSSL_free(sig);
630
0
            goto err;
631
0
        }
632
0
        ASN1_STRING_set0(si->signature, sig, siglen);
633
0
    }
634
635
0
    r = 1;
636
637
0
 err:
638
0
    EVP_MD_CTX_free(mctx);
639
0
    EVP_PKEY_CTX_free(pctx);
640
0
    return r;
641
642
0
}
643
644
int cms_SignedData_final(CMS_ContentInfo *cms, BIO *chain)
645
0
{
646
0
    STACK_OF(CMS_SignerInfo) *sinfos;
647
0
    CMS_SignerInfo *si;
648
0
    int i;
649
0
    sinfos = CMS_get0_SignerInfos(cms);
650
0
    for (i = 0; i < sk_CMS_SignerInfo_num(sinfos); i++) {
651
0
        si = sk_CMS_SignerInfo_value(sinfos, i);
652
0
        if (!cms_SignerInfo_content_sign(cms, si, chain))
653
0
            return 0;
654
0
    }
655
0
    cms->d.signedData->encapContentInfo->partial = 0;
656
0
    return 1;
657
0
}
658
659
int CMS_SignerInfo_sign(CMS_SignerInfo *si)
660
0
{
661
0
    EVP_MD_CTX *mctx = si->mctx;
662
0
    EVP_PKEY_CTX *pctx = NULL;
663
0
    unsigned char *abuf = NULL;
664
0
    int alen;
665
0
    size_t siglen;
666
0
    const EVP_MD *md = NULL;
667
668
0
    md = EVP_get_digestbyobj(si->digestAlgorithm->algorithm);
669
0
    if (md == NULL)
670
0
        return 0;
671
672
0
    if (CMS_signed_get_attr_by_NID(si, NID_pkcs9_signingTime, -1) < 0) {
673
0
        if (!cms_add1_signingTime(si, NULL))
674
0
            goto err;
675
0
    }
676
677
0
    if (!CMS_si_check_attributes(si))
678
0
        goto err;
679
680
0
    if (si->pctx)
681
0
        pctx = si->pctx;
682
0
    else {
683
0
        EVP_MD_CTX_reset(mctx);
684
0
        if (EVP_DigestSignInit(mctx, &pctx, md, NULL, si->pkey) <= 0)
685
0
            goto err;
686
0
        EVP_MD_CTX_set_flags(mctx, EVP_MD_CTX_FLAG_KEEP_PKEY_CTX);
687
0
        si->pctx = pctx;
688
0
    }
689
690
0
    if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_SIGN,
691
0
                          EVP_PKEY_CTRL_CMS_SIGN, 0, si) <= 0) {
692
0
        CMSerr(CMS_F_CMS_SIGNERINFO_SIGN, CMS_R_CTRL_ERROR);
693
0
        goto err;
694
0
    }
695
696
0
    alen = ASN1_item_i2d((ASN1_VALUE *)si->signedAttrs, &abuf,
697
0
                         ASN1_ITEM_rptr(CMS_Attributes_Sign));
698
0
    if (!abuf)
699
0
        goto err;
700
0
    if (EVP_DigestSignUpdate(mctx, abuf, alen) <= 0)
701
0
        goto err;
702
0
    if (EVP_DigestSignFinal(mctx, NULL, &siglen) <= 0)
703
0
        goto err;
704
0
    OPENSSL_free(abuf);
705
0
    abuf = OPENSSL_malloc(siglen);
706
0
    if (abuf == NULL)
707
0
        goto err;
708
0
    if (EVP_DigestSignFinal(mctx, abuf, &siglen) <= 0)
709
0
        goto err;
710
711
0
    if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_SIGN,
712
0
                          EVP_PKEY_CTRL_CMS_SIGN, 1, si) <= 0) {
713
0
        CMSerr(CMS_F_CMS_SIGNERINFO_SIGN, CMS_R_CTRL_ERROR);
714
0
        goto err;
715
0
    }
716
717
0
    EVP_MD_CTX_reset(mctx);
718
719
0
    ASN1_STRING_set0(si->signature, abuf, siglen);
720
721
0
    return 1;
722
723
0
 err:
724
0
    OPENSSL_free(abuf);
725
0
    EVP_MD_CTX_reset(mctx);
726
0
    return 0;
727
0
}
728
729
int CMS_SignerInfo_verify(CMS_SignerInfo *si)
730
0
{
731
0
    EVP_MD_CTX *mctx = NULL;
732
0
    unsigned char *abuf = NULL;
733
0
    int alen, r = -1;
734
0
    const EVP_MD *md = NULL;
735
736
0
    if (!si->pkey) {
737
0
        CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY, CMS_R_NO_PUBLIC_KEY);
738
0
        return -1;
739
0
    }
740
741
0
    if (!CMS_si_check_attributes(si))
742
0
        return -1;
743
744
0
    md = EVP_get_digestbyobj(si->digestAlgorithm->algorithm);
745
0
    if (md == NULL)
746
0
        return -1;
747
0
    if (si->mctx == NULL && (si->mctx = EVP_MD_CTX_new()) == NULL) {
748
0
        CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY, ERR_R_MALLOC_FAILURE);
749
0
        return -1;
750
0
    }
751
0
    mctx = si->mctx;
752
0
    if (si->pctx != NULL) {
753
0
        EVP_PKEY_CTX_free(si->pctx);
754
0
        si->pctx = NULL;
755
0
    }
756
0
    if (EVP_DigestVerifyInit(mctx, &si->pctx, md, NULL, si->pkey) <= 0)
757
0
        goto err;
758
0
    EVP_MD_CTX_set_flags(mctx, EVP_MD_CTX_FLAG_KEEP_PKEY_CTX);
759
760
0
    if (!cms_sd_asn1_ctrl(si, 1))
761
0
        goto err;
762
763
0
    alen = ASN1_item_i2d((ASN1_VALUE *)si->signedAttrs, &abuf,
764
0
                         ASN1_ITEM_rptr(CMS_Attributes_Verify));
765
0
    if (!abuf)
766
0
        goto err;
767
0
    r = EVP_DigestVerifyUpdate(mctx, abuf, alen);
768
0
    OPENSSL_free(abuf);
769
0
    if (r <= 0) {
770
0
        r = -1;
771
0
        goto err;
772
0
    }
773
0
    r = EVP_DigestVerifyFinal(mctx,
774
0
                              si->signature->data, si->signature->length);
775
0
    if (r <= 0)
776
0
        CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY, CMS_R_VERIFICATION_FAILURE);
777
0
 err:
778
0
    EVP_MD_CTX_reset(mctx);
779
0
    return r;
780
0
}
781
782
/* Create a chain of digest BIOs from a CMS ContentInfo */
783
784
BIO *cms_SignedData_init_bio(CMS_ContentInfo *cms)
785
0
{
786
0
    int i;
787
0
    CMS_SignedData *sd;
788
0
    BIO *chain = NULL;
789
0
    sd = cms_get0_signed(cms);
790
0
    if (!sd)
791
0
        return NULL;
792
0
    if (cms->d.signedData->encapContentInfo->partial)
793
0
        cms_sd_set_version(sd);
794
0
    for (i = 0; i < sk_X509_ALGOR_num(sd->digestAlgorithms); i++) {
795
0
        X509_ALGOR *digestAlgorithm;
796
0
        BIO *mdbio;
797
0
        digestAlgorithm = sk_X509_ALGOR_value(sd->digestAlgorithms, i);
798
0
        mdbio = cms_DigestAlgorithm_init_bio(digestAlgorithm);
799
0
        if (!mdbio)
800
0
            goto err;
801
0
        if (chain)
802
0
            BIO_push(chain, mdbio);
803
0
        else
804
0
            chain = mdbio;
805
0
    }
806
0
    return chain;
807
0
 err:
808
0
    BIO_free_all(chain);
809
0
    return NULL;
810
0
}
811
812
int CMS_SignerInfo_verify_content(CMS_SignerInfo *si, BIO *chain)
813
0
{
814
0
    ASN1_OCTET_STRING *os = NULL;
815
0
    EVP_MD_CTX *mctx = EVP_MD_CTX_new();
816
0
    EVP_PKEY_CTX *pkctx = NULL;
817
0
    int r = -1;
818
0
    unsigned char mval[EVP_MAX_MD_SIZE];
819
0
    unsigned int mlen;
820
821
0
    if (mctx == NULL) {
822
0
        CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY_CONTENT, ERR_R_MALLOC_FAILURE);
823
0
        goto err;
824
0
    }
825
    /* If we have any signed attributes look for messageDigest value */
826
0
    if (CMS_signed_get_attr_count(si) >= 0) {
827
0
        os = CMS_signed_get0_data_by_OBJ(si,
828
0
                                         OBJ_nid2obj(NID_pkcs9_messageDigest),
829
0
                                         -3, V_ASN1_OCTET_STRING);
830
0
        if (!os) {
831
0
            CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY_CONTENT,
832
0
                   CMS_R_ERROR_READING_MESSAGEDIGEST_ATTRIBUTE);
833
0
            goto err;
834
0
        }
835
0
    }
836
837
0
    if (!cms_DigestAlgorithm_find_ctx(mctx, chain, si->digestAlgorithm))
838
0
        goto err;
839
840
0
    if (EVP_DigestFinal_ex(mctx, mval, &mlen) <= 0) {
841
0
        CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY_CONTENT,
842
0
               CMS_R_UNABLE_TO_FINALIZE_CONTEXT);
843
0
        goto err;
844
0
    }
845
846
    /* If messageDigest found compare it */
847
848
0
    if (os) {
849
0
        if (mlen != (unsigned int)os->length) {
850
0
            CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY_CONTENT,
851
0
                   CMS_R_MESSAGEDIGEST_ATTRIBUTE_WRONG_LENGTH);
852
0
            goto err;
853
0
        }
854
855
0
        if (memcmp(mval, os->data, mlen)) {
856
0
            CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY_CONTENT,
857
0
                   CMS_R_VERIFICATION_FAILURE);
858
0
            r = 0;
859
0
        } else
860
0
            r = 1;
861
0
    } else {
862
0
        const EVP_MD *md = EVP_MD_CTX_md(mctx);
863
0
        pkctx = EVP_PKEY_CTX_new(si->pkey, NULL);
864
0
        if (pkctx == NULL)
865
0
            goto err;
866
0
        if (EVP_PKEY_verify_init(pkctx) <= 0)
867
0
            goto err;
868
0
        if (EVP_PKEY_CTX_set_signature_md(pkctx, md) <= 0)
869
0
            goto err;
870
0
        si->pctx = pkctx;
871
0
        if (!cms_sd_asn1_ctrl(si, 1)) {
872
0
            si->pctx = NULL;
873
0
            goto err;
874
0
        }
875
0
        si->pctx = NULL;
876
0
        r = EVP_PKEY_verify(pkctx, si->signature->data,
877
0
                            si->signature->length, mval, mlen);
878
0
        if (r <= 0) {
879
0
            CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY_CONTENT,
880
0
                   CMS_R_VERIFICATION_FAILURE);
881
0
            r = 0;
882
0
        }
883
0
    }
884
885
0
 err:
886
0
    EVP_PKEY_CTX_free(pkctx);
887
0
    EVP_MD_CTX_free(mctx);
888
0
    return r;
889
890
0
}
891
892
int CMS_add_smimecap(CMS_SignerInfo *si, STACK_OF(X509_ALGOR) *algs)
893
0
{
894
0
    unsigned char *smder = NULL;
895
0
    int smderlen, r;
896
0
    smderlen = i2d_X509_ALGORS(algs, &smder);
897
0
    if (smderlen <= 0)
898
0
        return 0;
899
0
    r = CMS_signed_add1_attr_by_NID(si, NID_SMIMECapabilities,
900
0
                                    V_ASN1_SEQUENCE, smder, smderlen);
901
0
    OPENSSL_free(smder);
902
0
    return r;
903
0
}
904
905
int CMS_add_simple_smimecap(STACK_OF(X509_ALGOR) **algs,
906
                            int algnid, int keysize)
907
0
{
908
0
    X509_ALGOR *alg;
909
0
    ASN1_INTEGER *key = NULL;
910
0
    if (keysize > 0) {
911
0
        key = ASN1_INTEGER_new();
912
0
        if (key == NULL || !ASN1_INTEGER_set(key, keysize)) {
913
0
            ASN1_INTEGER_free(key);
914
0
            return 0;
915
0
        }
916
0
    }
917
0
    alg = X509_ALGOR_new();
918
0
    if (alg == NULL) {
919
0
        ASN1_INTEGER_free(key);
920
0
        return 0;
921
0
    }
922
923
0
    X509_ALGOR_set0(alg, OBJ_nid2obj(algnid),
924
0
                    key ? V_ASN1_INTEGER : V_ASN1_UNDEF, key);
925
0
    if (*algs == NULL)
926
0
        *algs = sk_X509_ALGOR_new_null();
927
0
    if (*algs == NULL || !sk_X509_ALGOR_push(*algs, alg)) {
928
0
        X509_ALGOR_free(alg);
929
0
        return 0;
930
0
    }
931
0
    return 1;
932
0
}
933
934
/* Check to see if a cipher exists and if so add S/MIME capabilities */
935
936
static int cms_add_cipher_smcap(STACK_OF(X509_ALGOR) **sk, int nid, int arg)
937
0
{
938
0
    if (EVP_get_cipherbynid(nid))
939
0
        return CMS_add_simple_smimecap(sk, nid, arg);
940
0
    return 1;
941
0
}
942
943
static int cms_add_digest_smcap(STACK_OF(X509_ALGOR) **sk, int nid, int arg)
944
0
{
945
0
    if (EVP_get_digestbynid(nid))
946
0
        return CMS_add_simple_smimecap(sk, nid, arg);
947
0
    return 1;
948
0
}
949
950
int CMS_add_standard_smimecap(STACK_OF(X509_ALGOR) **smcap)
951
0
{
952
0
    if (!cms_add_cipher_smcap(smcap, NID_aes_256_cbc, -1)
953
0
        || !cms_add_digest_smcap(smcap, NID_id_GostR3411_2012_256, -1)
954
0
        || !cms_add_digest_smcap(smcap, NID_id_GostR3411_2012_512, -1)
955
0
        || !cms_add_digest_smcap(smcap, NID_id_GostR3411_94, -1)
956
0
        || !cms_add_cipher_smcap(smcap, NID_id_Gost28147_89, -1)
957
0
        || !cms_add_cipher_smcap(smcap, NID_aes_192_cbc, -1)
958
0
        || !cms_add_cipher_smcap(smcap, NID_aes_128_cbc, -1)
959
0
        || !cms_add_cipher_smcap(smcap, NID_des_ede3_cbc, -1)
960
0
        || !cms_add_cipher_smcap(smcap, NID_rc2_cbc, 128)
961
0
        || !cms_add_cipher_smcap(smcap, NID_rc2_cbc, 64)
962
0
        || !cms_add_cipher_smcap(smcap, NID_des_cbc, -1)
963
0
        || !cms_add_cipher_smcap(smcap, NID_rc2_cbc, 40))
964
0
        return 0;
965
0
    return 1;
966
0
}