Coverage Report

Created: 2022-11-30 06:20

/src/openssl/crypto/pkcs7/pk7_doit.c
Line
Count
Source (jump to first uncovered line)
1
/* crypto/pkcs7/pk7_doit.c */
2
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3
 * All rights reserved.
4
 *
5
 * This package is an SSL implementation written
6
 * by Eric Young (eay@cryptsoft.com).
7
 * The implementation was written so as to conform with Netscapes SSL.
8
 *
9
 * This library is free for commercial and non-commercial use as long as
10
 * the following conditions are aheared to.  The following conditions
11
 * apply to all code found in this distribution, be it the RC4, RSA,
12
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13
 * included with this distribution is covered by the same copyright terms
14
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15
 *
16
 * Copyright remains Eric Young's, and as such any Copyright notices in
17
 * the code are not to be removed.
18
 * If this package is used in a product, Eric Young should be given attribution
19
 * as the author of the parts of the library used.
20
 * This can be in the form of a textual message at program startup or
21
 * in documentation (online or textual) provided with the package.
22
 *
23
 * Redistribution and use in source and binary forms, with or without
24
 * modification, are permitted provided that the following conditions
25
 * are met:
26
 * 1. Redistributions of source code must retain the copyright
27
 *    notice, this list of conditions and the following disclaimer.
28
 * 2. Redistributions in binary form must reproduce the above copyright
29
 *    notice, this list of conditions and the following disclaimer in the
30
 *    documentation and/or other materials provided with the distribution.
31
 * 3. All advertising materials mentioning features or use of this software
32
 *    must display the following acknowledgement:
33
 *    "This product includes cryptographic software written by
34
 *     Eric Young (eay@cryptsoft.com)"
35
 *    The word 'cryptographic' can be left out if the rouines from the library
36
 *    being used are not cryptographic related :-).
37
 * 4. If you include any Windows specific code (or a derivative thereof) from
38
 *    the apps directory (application code) you must include an acknowledgement:
39
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40
 *
41
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51
 * SUCH DAMAGE.
52
 *
53
 * The licence and distribution terms for any publically available version or
54
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
55
 * copied and put under another distribution licence
56
 * [including the GNU Public Licence.]
57
 */
58
59
#include <stdio.h>
60
#include "cryptlib.h"
61
#include <openssl/rand.h>
62
#include <openssl/objects.h>
63
#include <openssl/x509.h>
64
#include <openssl/x509v3.h>
65
#include <openssl/err.h>
66
67
static int add_attribute(STACK_OF(X509_ATTRIBUTE) **sk, int nid, int atrtype,
68
                         void *value);
69
static ASN1_TYPE *get_attribute(STACK_OF(X509_ATTRIBUTE) *sk, int nid);
70
71
static int PKCS7_type_is_other(PKCS7 *p7)
72
0
{
73
0
    int isOther = 1;
74
75
0
    int nid = OBJ_obj2nid(p7->type);
76
77
0
    switch (nid) {
78
0
    case NID_pkcs7_data:
79
0
    case NID_pkcs7_signed:
80
0
    case NID_pkcs7_enveloped:
81
0
    case NID_pkcs7_signedAndEnveloped:
82
0
    case NID_pkcs7_digest:
83
0
    case NID_pkcs7_encrypted:
84
0
        isOther = 0;
85
0
        break;
86
0
    default:
87
0
        isOther = 1;
88
0
    }
89
90
0
    return isOther;
91
92
0
}
93
94
static ASN1_OCTET_STRING *PKCS7_get_octet_string(PKCS7 *p7)
95
0
{
96
0
    if (PKCS7_type_is_data(p7))
97
0
        return p7->d.data;
98
0
    if (PKCS7_type_is_other(p7) && p7->d.other
99
0
        && (p7->d.other->type == V_ASN1_OCTET_STRING))
100
0
        return p7->d.other->value.octet_string;
101
0
    return NULL;
102
0
}
103
104
static int PKCS7_bio_add_digest(BIO **pbio, X509_ALGOR *alg)
105
0
{
106
0
    BIO *btmp;
107
0
    const EVP_MD *md;
108
0
    if ((btmp = BIO_new(BIO_f_md())) == NULL) {
109
0
        PKCS7err(PKCS7_F_PKCS7_BIO_ADD_DIGEST, ERR_R_BIO_LIB);
110
0
        goto err;
111
0
    }
112
113
0
    md = EVP_get_digestbyobj(alg->algorithm);
114
0
    if (md == NULL) {
115
0
        PKCS7err(PKCS7_F_PKCS7_BIO_ADD_DIGEST, PKCS7_R_UNKNOWN_DIGEST_TYPE);
116
0
        goto err;
117
0
    }
118
119
0
    BIO_set_md(btmp, md);
120
0
    if (*pbio == NULL)
121
0
        *pbio = btmp;
122
0
    else if (!BIO_push(*pbio, btmp)) {
123
0
        PKCS7err(PKCS7_F_PKCS7_BIO_ADD_DIGEST, ERR_R_BIO_LIB);
124
0
        goto err;
125
0
    }
126
0
    btmp = NULL;
127
128
0
    return 1;
129
130
0
 err:
131
0
    if (btmp)
132
0
        BIO_free(btmp);
133
0
    return 0;
134
135
0
}
136
137
static int pkcs7_encode_rinfo(PKCS7_RECIP_INFO *ri,
138
                              unsigned char *key, int keylen)
139
0
{
140
0
    EVP_PKEY_CTX *pctx = NULL;
141
0
    EVP_PKEY *pkey = NULL;
142
0
    unsigned char *ek = NULL;
143
0
    int ret = 0;
144
0
    size_t eklen;
145
146
0
    pkey = X509_get_pubkey(ri->cert);
147
148
0
    if (!pkey)
149
0
        return 0;
150
151
0
    pctx = EVP_PKEY_CTX_new(pkey, NULL);
152
0
    if (!pctx)
153
0
        return 0;
154
155
0
    if (EVP_PKEY_encrypt_init(pctx) <= 0)
156
0
        goto err;
157
158
0
    if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_ENCRYPT,
159
0
                          EVP_PKEY_CTRL_PKCS7_ENCRYPT, 0, ri) <= 0) {
160
0
        PKCS7err(PKCS7_F_PKCS7_ENCODE_RINFO, PKCS7_R_CTRL_ERROR);
161
0
        goto err;
162
0
    }
163
164
0
    if (EVP_PKEY_encrypt(pctx, NULL, &eklen, key, keylen) <= 0)
165
0
        goto err;
166
167
0
    ek = OPENSSL_malloc(eklen);
168
169
0
    if (ek == NULL) {
170
0
        PKCS7err(PKCS7_F_PKCS7_ENCODE_RINFO, ERR_R_MALLOC_FAILURE);
171
0
        goto err;
172
0
    }
173
174
0
    if (EVP_PKEY_encrypt(pctx, ek, &eklen, key, keylen) <= 0)
175
0
        goto err;
176
177
0
    ASN1_STRING_set0(ri->enc_key, ek, eklen);
178
0
    ek = NULL;
179
180
0
    ret = 1;
181
182
0
 err:
183
0
    if (pkey)
184
0
        EVP_PKEY_free(pkey);
185
0
    if (pctx)
186
0
        EVP_PKEY_CTX_free(pctx);
187
0
    if (ek)
188
0
        OPENSSL_free(ek);
189
0
    return ret;
190
191
0
}
192
193
static int pkcs7_decrypt_rinfo(unsigned char **pek, int *peklen,
194
                               PKCS7_RECIP_INFO *ri, EVP_PKEY *pkey)
195
0
{
196
0
    EVP_PKEY_CTX *pctx = NULL;
197
0
    unsigned char *ek = NULL;
198
0
    size_t eklen;
199
200
0
    int ret = -1;
201
202
0
    pctx = EVP_PKEY_CTX_new(pkey, NULL);
203
0
    if (!pctx)
204
0
        return -1;
205
206
0
    if (EVP_PKEY_decrypt_init(pctx) <= 0)
207
0
        goto err;
208
209
0
    if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_DECRYPT,
210
0
                          EVP_PKEY_CTRL_PKCS7_DECRYPT, 0, ri) <= 0) {
211
0
        PKCS7err(PKCS7_F_PKCS7_DECRYPT_RINFO, PKCS7_R_CTRL_ERROR);
212
0
        goto err;
213
0
    }
214
215
0
    if (EVP_PKEY_decrypt(pctx, NULL, &eklen,
216
0
                         ri->enc_key->data, ri->enc_key->length) <= 0)
217
0
        goto err;
218
219
0
    ek = OPENSSL_malloc(eklen);
220
221
0
    if (ek == NULL) {
222
0
        PKCS7err(PKCS7_F_PKCS7_DECRYPT_RINFO, ERR_R_MALLOC_FAILURE);
223
0
        goto err;
224
0
    }
225
226
0
    if (EVP_PKEY_decrypt(pctx, ek, &eklen,
227
0
                         ri->enc_key->data, ri->enc_key->length) <= 0) {
228
0
        ret = 0;
229
0
        PKCS7err(PKCS7_F_PKCS7_DECRYPT_RINFO, ERR_R_EVP_LIB);
230
0
        goto err;
231
0
    }
232
233
0
    ret = 1;
234
235
0
    if (*pek) {
236
0
        OPENSSL_cleanse(*pek, *peklen);
237
0
        OPENSSL_free(*pek);
238
0
    }
239
240
0
    *pek = ek;
241
0
    *peklen = eklen;
242
243
0
 err:
244
0
    if (pctx)
245
0
        EVP_PKEY_CTX_free(pctx);
246
0
    if (!ret && ek)
247
0
        OPENSSL_free(ek);
248
249
0
    return ret;
250
0
}
251
252
BIO *PKCS7_dataInit(PKCS7 *p7, BIO *bio)
253
0
{
254
0
    int i;
255
0
    BIO *out = NULL, *btmp = NULL;
256
0
    X509_ALGOR *xa = NULL;
257
0
    const EVP_CIPHER *evp_cipher = NULL;
258
0
    STACK_OF(X509_ALGOR) *md_sk = NULL;
259
0
    STACK_OF(PKCS7_RECIP_INFO) *rsk = NULL;
260
0
    X509_ALGOR *xalg = NULL;
261
0
    PKCS7_RECIP_INFO *ri = NULL;
262
0
    ASN1_OCTET_STRING *os = NULL;
263
264
0
    if (p7 == NULL) {
265
0
        PKCS7err(PKCS7_F_PKCS7_DATAINIT, PKCS7_R_INVALID_NULL_POINTER);
266
0
        return NULL;
267
0
    }
268
    /*
269
     * The content field in the PKCS7 ContentInfo is optional, but that really
270
     * only applies to inner content (precisely, detached signatures).
271
     *
272
     * When reading content, missing outer content is therefore treated as an
273
     * error.
274
     *
275
     * When creating content, PKCS7_content_new() must be called before
276
     * calling this method, so a NULL p7->d is always an error.
277
     */
278
0
    if (p7->d.ptr == NULL) {
279
0
        PKCS7err(PKCS7_F_PKCS7_DATAINIT, PKCS7_R_NO_CONTENT);
280
0
        return NULL;
281
0
    }
282
283
0
    i = OBJ_obj2nid(p7->type);
284
0
    p7->state = PKCS7_S_HEADER;
285
286
0
    switch (i) {
287
0
    case NID_pkcs7_signed:
288
0
        md_sk = p7->d.sign->md_algs;
289
0
        os = PKCS7_get_octet_string(p7->d.sign->contents);
290
0
        break;
291
0
    case NID_pkcs7_signedAndEnveloped:
292
0
        rsk = p7->d.signed_and_enveloped->recipientinfo;
293
0
        md_sk = p7->d.signed_and_enveloped->md_algs;
294
0
        xalg = p7->d.signed_and_enveloped->enc_data->algorithm;
295
0
        evp_cipher = p7->d.signed_and_enveloped->enc_data->cipher;
296
0
        if (evp_cipher == NULL) {
297
0
            PKCS7err(PKCS7_F_PKCS7_DATAINIT, PKCS7_R_CIPHER_NOT_INITIALIZED);
298
0
            goto err;
299
0
        }
300
0
        break;
301
0
    case NID_pkcs7_enveloped:
302
0
        rsk = p7->d.enveloped->recipientinfo;
303
0
        xalg = p7->d.enveloped->enc_data->algorithm;
304
0
        evp_cipher = p7->d.enveloped->enc_data->cipher;
305
0
        if (evp_cipher == NULL) {
306
0
            PKCS7err(PKCS7_F_PKCS7_DATAINIT, PKCS7_R_CIPHER_NOT_INITIALIZED);
307
0
            goto err;
308
0
        }
309
0
        break;
310
0
    case NID_pkcs7_digest:
311
0
        xa = p7->d.digest->md;
312
0
        os = PKCS7_get_octet_string(p7->d.digest->contents);
313
0
        break;
314
0
    case NID_pkcs7_data:
315
0
        break;
316
0
    default:
317
0
        PKCS7err(PKCS7_F_PKCS7_DATAINIT, PKCS7_R_UNSUPPORTED_CONTENT_TYPE);
318
0
        goto err;
319
0
    }
320
321
0
    for (i = 0; i < sk_X509_ALGOR_num(md_sk); i++)
322
0
        if (!PKCS7_bio_add_digest(&out, sk_X509_ALGOR_value(md_sk, i)))
323
0
            goto err;
324
325
0
    if (xa && !PKCS7_bio_add_digest(&out, xa))
326
0
        goto err;
327
328
0
    if (evp_cipher != NULL) {
329
0
        unsigned char key[EVP_MAX_KEY_LENGTH];
330
0
        unsigned char iv[EVP_MAX_IV_LENGTH];
331
0
        int keylen, ivlen;
332
0
        EVP_CIPHER_CTX *ctx;
333
334
0
        if ((btmp = BIO_new(BIO_f_cipher())) == NULL) {
335
0
            PKCS7err(PKCS7_F_PKCS7_DATAINIT, ERR_R_BIO_LIB);
336
0
            goto err;
337
0
        }
338
0
        BIO_get_cipher_ctx(btmp, &ctx);
339
0
        keylen = EVP_CIPHER_key_length(evp_cipher);
340
0
        ivlen = EVP_CIPHER_iv_length(evp_cipher);
341
0
        xalg->algorithm = OBJ_nid2obj(EVP_CIPHER_type(evp_cipher));
342
0
        if (ivlen > 0)
343
0
            if (RAND_bytes(iv, ivlen) <= 0)
344
0
                goto err;
345
0
        if (EVP_CipherInit_ex(ctx, evp_cipher, NULL, NULL, NULL, 1) <= 0)
346
0
            goto err;
347
0
        if (EVP_CIPHER_CTX_rand_key(ctx, key) <= 0)
348
0
            goto err;
349
0
        if (EVP_CipherInit_ex(ctx, NULL, NULL, key, iv, 1) <= 0)
350
0
            goto err;
351
352
0
        if (ivlen > 0) {
353
0
            if (xalg->parameter == NULL) {
354
0
                xalg->parameter = ASN1_TYPE_new();
355
0
                if (xalg->parameter == NULL)
356
0
                    goto err;
357
0
            }
358
0
            if (EVP_CIPHER_param_to_asn1(ctx, xalg->parameter) < 0)
359
0
                goto err;
360
0
        }
361
362
        /* Lets do the pub key stuff :-) */
363
0
        for (i = 0; i < sk_PKCS7_RECIP_INFO_num(rsk); i++) {
364
0
            ri = sk_PKCS7_RECIP_INFO_value(rsk, i);
365
0
            if (pkcs7_encode_rinfo(ri, key, keylen) <= 0)
366
0
                goto err;
367
0
        }
368
0
        OPENSSL_cleanse(key, keylen);
369
370
0
        if (out == NULL)
371
0
            out = btmp;
372
0
        else
373
0
            BIO_push(out, btmp);
374
0
        btmp = NULL;
375
0
    }
376
377
0
    if (bio == NULL) {
378
0
        if (PKCS7_is_detached(p7))
379
0
            bio = BIO_new(BIO_s_null());
380
0
        else if (os && os->length > 0)
381
0
            bio = BIO_new_mem_buf(os->data, os->length);
382
0
        if (bio == NULL) {
383
0
            bio = BIO_new(BIO_s_mem());
384
0
            if (bio == NULL)
385
0
                goto err;
386
0
            BIO_set_mem_eof_return(bio, 0);
387
0
        }
388
0
    }
389
0
    if (out)
390
0
        BIO_push(out, bio);
391
0
    else
392
0
        out = bio;
393
0
    bio = NULL;
394
0
    if (0) {
395
0
 err:
396
0
        if (out != NULL)
397
0
            BIO_free_all(out);
398
0
        if (btmp != NULL)
399
0
            BIO_free_all(btmp);
400
0
        out = NULL;
401
0
    }
402
0
    return (out);
403
0
}
404
405
static int pkcs7_cmp_ri(PKCS7_RECIP_INFO *ri, X509 *pcert)
406
0
{
407
0
    int ret;
408
0
    ret = X509_NAME_cmp(ri->issuer_and_serial->issuer,
409
0
                        pcert->cert_info->issuer);
410
0
    if (ret)
411
0
        return ret;
412
0
    return M_ASN1_INTEGER_cmp(pcert->cert_info->serialNumber,
413
0
                              ri->issuer_and_serial->serial);
414
0
}
415
416
/* int */
417
BIO *PKCS7_dataDecode(PKCS7 *p7, EVP_PKEY *pkey, BIO *in_bio, X509 *pcert)
418
0
{
419
0
    int i, j;
420
0
    BIO *out = NULL, *btmp = NULL, *etmp = NULL, *bio = NULL;
421
0
    X509_ALGOR *xa;
422
0
    ASN1_OCTET_STRING *data_body = NULL;
423
0
    const EVP_MD *evp_md;
424
0
    const EVP_CIPHER *evp_cipher = NULL;
425
0
    EVP_CIPHER_CTX *evp_ctx = NULL;
426
0
    X509_ALGOR *enc_alg = NULL;
427
0
    STACK_OF(X509_ALGOR) *md_sk = NULL;
428
0
    STACK_OF(PKCS7_RECIP_INFO) *rsk = NULL;
429
0
    PKCS7_RECIP_INFO *ri = NULL;
430
0
    unsigned char *ek = NULL, *tkey = NULL;
431
0
    int eklen = 0, tkeylen = 0;
432
433
0
    if (p7 == NULL) {
434
0
        PKCS7err(PKCS7_F_PKCS7_DATADECODE, PKCS7_R_INVALID_NULL_POINTER);
435
0
        return NULL;
436
0
    }
437
438
0
    if (p7->d.ptr == NULL) {
439
0
        PKCS7err(PKCS7_F_PKCS7_DATADECODE, PKCS7_R_NO_CONTENT);
440
0
        return NULL;
441
0
    }
442
443
0
    i = OBJ_obj2nid(p7->type);
444
0
    p7->state = PKCS7_S_HEADER;
445
446
0
    switch (i) {
447
0
    case NID_pkcs7_signed:
448
        /*
449
         * p7->d.sign->contents is a PKCS7 structure consisting of a contentType
450
         * field and optional content.
451
         * data_body is NULL if that structure has no (=detached) content
452
         * or if the contentType is wrong (i.e., not "data").
453
         */
454
0
        data_body = PKCS7_get_octet_string(p7->d.sign->contents);
455
0
        if (!PKCS7_is_detached(p7) && data_body == NULL) {
456
0
            PKCS7err(PKCS7_F_PKCS7_DATADECODE,
457
0
                     PKCS7_R_INVALID_SIGNED_DATA_TYPE);
458
0
            goto err;
459
0
        }
460
0
        md_sk = p7->d.sign->md_algs;
461
0
        break;
462
0
    case NID_pkcs7_signedAndEnveloped:
463
0
        rsk = p7->d.signed_and_enveloped->recipientinfo;
464
0
        md_sk = p7->d.signed_and_enveloped->md_algs;
465
        /* data_body is NULL if the optional EncryptedContent is missing. */
466
0
        data_body = p7->d.signed_and_enveloped->enc_data->enc_data;
467
0
        enc_alg = p7->d.signed_and_enveloped->enc_data->algorithm;
468
0
        evp_cipher = EVP_get_cipherbyobj(enc_alg->algorithm);
469
0
        if (evp_cipher == NULL) {
470
0
            PKCS7err(PKCS7_F_PKCS7_DATADECODE,
471
0
                     PKCS7_R_UNSUPPORTED_CIPHER_TYPE);
472
0
            goto err;
473
0
        }
474
0
        break;
475
0
    case NID_pkcs7_enveloped:
476
0
        rsk = p7->d.enveloped->recipientinfo;
477
0
        enc_alg = p7->d.enveloped->enc_data->algorithm;
478
        /* data_body is NULL if the optional EncryptedContent is missing. */
479
0
        data_body = p7->d.enveloped->enc_data->enc_data;
480
0
        evp_cipher = EVP_get_cipherbyobj(enc_alg->algorithm);
481
0
        if (evp_cipher == NULL) {
482
0
            PKCS7err(PKCS7_F_PKCS7_DATADECODE,
483
0
                     PKCS7_R_UNSUPPORTED_CIPHER_TYPE);
484
0
            goto err;
485
0
        }
486
0
        break;
487
0
    default:
488
0
        PKCS7err(PKCS7_F_PKCS7_DATADECODE, PKCS7_R_UNSUPPORTED_CONTENT_TYPE);
489
0
        goto err;
490
0
    }
491
492
    /* Detached content must be supplied via in_bio instead. */
493
0
    if (data_body == NULL && in_bio == NULL) {
494
0
        PKCS7err(PKCS7_F_PKCS7_DATADECODE, PKCS7_R_NO_CONTENT);
495
0
        goto err;
496
0
    }
497
498
    /* We will be checking the signature */
499
0
    if (md_sk != NULL) {
500
0
        for (i = 0; i < sk_X509_ALGOR_num(md_sk); i++) {
501
0
            xa = sk_X509_ALGOR_value(md_sk, i);
502
0
            if ((btmp = BIO_new(BIO_f_md())) == NULL) {
503
0
                PKCS7err(PKCS7_F_PKCS7_DATADECODE, ERR_R_BIO_LIB);
504
0
                goto err;
505
0
            }
506
507
0
            j = OBJ_obj2nid(xa->algorithm);
508
0
            evp_md = EVP_get_digestbynid(j);
509
0
            if (evp_md == NULL) {
510
0
                PKCS7err(PKCS7_F_PKCS7_DATADECODE,
511
0
                         PKCS7_R_UNKNOWN_DIGEST_TYPE);
512
0
                goto err;
513
0
            }
514
515
0
            BIO_set_md(btmp, evp_md);
516
0
            if (out == NULL)
517
0
                out = btmp;
518
0
            else
519
0
                BIO_push(out, btmp);
520
0
            btmp = NULL;
521
0
        }
522
0
    }
523
524
0
    if (evp_cipher != NULL) {
525
#if 0
526
        unsigned char key[EVP_MAX_KEY_LENGTH];
527
        unsigned char iv[EVP_MAX_IV_LENGTH];
528
        unsigned char *p;
529
        int keylen, ivlen;
530
        int max;
531
        X509_OBJECT ret;
532
#endif
533
534
0
        if ((etmp = BIO_new(BIO_f_cipher())) == NULL) {
535
0
            PKCS7err(PKCS7_F_PKCS7_DATADECODE, ERR_R_BIO_LIB);
536
0
            goto err;
537
0
        }
538
539
        /*
540
         * It was encrypted, we need to decrypt the secret key with the
541
         * private key
542
         */
543
544
        /*
545
         * Find the recipientInfo which matches the passed certificate (if
546
         * any)
547
         */
548
549
0
        if (pcert) {
550
0
            for (i = 0; i < sk_PKCS7_RECIP_INFO_num(rsk); i++) {
551
0
                ri = sk_PKCS7_RECIP_INFO_value(rsk, i);
552
0
                if (!pkcs7_cmp_ri(ri, pcert))
553
0
                    break;
554
0
                ri = NULL;
555
0
            }
556
0
            if (ri == NULL) {
557
0
                PKCS7err(PKCS7_F_PKCS7_DATADECODE,
558
0
                         PKCS7_R_NO_RECIPIENT_MATCHES_CERTIFICATE);
559
0
                goto err;
560
0
            }
561
0
        }
562
563
        /* If we haven't got a certificate try each ri in turn */
564
0
        if (pcert == NULL) {
565
            /*
566
             * Always attempt to decrypt all rinfo even after sucess as a
567
             * defence against MMA timing attacks.
568
             */
569
0
            for (i = 0; i < sk_PKCS7_RECIP_INFO_num(rsk); i++) {
570
0
                ri = sk_PKCS7_RECIP_INFO_value(rsk, i);
571
572
0
                if (pkcs7_decrypt_rinfo(&ek, &eklen, ri, pkey) < 0)
573
0
                    goto err;
574
0
                ERR_clear_error();
575
0
            }
576
0
        } else {
577
            /* Only exit on fatal errors, not decrypt failure */
578
0
            if (pkcs7_decrypt_rinfo(&ek, &eklen, ri, pkey) < 0)
579
0
                goto err;
580
0
            ERR_clear_error();
581
0
        }
582
583
0
        evp_ctx = NULL;
584
0
        BIO_get_cipher_ctx(etmp, &evp_ctx);
585
0
        if (EVP_CipherInit_ex(evp_ctx, evp_cipher, NULL, NULL, NULL, 0) <= 0)
586
0
            goto err;
587
0
        if (EVP_CIPHER_asn1_to_param(evp_ctx, enc_alg->parameter) < 0)
588
0
            goto err;
589
        /* Generate random key as MMA defence */
590
0
        tkeylen = EVP_CIPHER_CTX_key_length(evp_ctx);
591
0
        tkey = OPENSSL_malloc(tkeylen);
592
0
        if (!tkey)
593
0
            goto err;
594
0
        if (EVP_CIPHER_CTX_rand_key(evp_ctx, tkey) <= 0)
595
0
            goto err;
596
0
        if (ek == NULL) {
597
0
            ek = tkey;
598
0
            eklen = tkeylen;
599
0
            tkey = NULL;
600
0
        }
601
602
0
        if (eklen != EVP_CIPHER_CTX_key_length(evp_ctx)) {
603
            /*
604
             * Some S/MIME clients don't use the same key and effective key
605
             * length. The key length is determined by the size of the
606
             * decrypted RSA key.
607
             */
608
0
            if (!EVP_CIPHER_CTX_set_key_length(evp_ctx, eklen)) {
609
                /* Use random key as MMA defence */
610
0
                OPENSSL_cleanse(ek, eklen);
611
0
                OPENSSL_free(ek);
612
0
                ek = tkey;
613
0
                eklen = tkeylen;
614
0
                tkey = NULL;
615
0
            }
616
0
        }
617
        /* Clear errors so we don't leak information useful in MMA */
618
0
        ERR_clear_error();
619
0
        if (EVP_CipherInit_ex(evp_ctx, NULL, NULL, ek, NULL, 0) <= 0)
620
0
            goto err;
621
622
0
        if (ek) {
623
0
            OPENSSL_cleanse(ek, eklen);
624
0
            OPENSSL_free(ek);
625
0
            ek = NULL;
626
0
        }
627
0
        if (tkey) {
628
0
            OPENSSL_cleanse(tkey, tkeylen);
629
0
            OPENSSL_free(tkey);
630
0
            tkey = NULL;
631
0
        }
632
633
0
        if (out == NULL)
634
0
            out = etmp;
635
0
        else
636
0
            BIO_push(out, etmp);
637
0
        etmp = NULL;
638
0
    }
639
0
#if 1
640
0
    if (in_bio != NULL) {
641
0
        bio = in_bio;
642
0
    } else {
643
# if 0
644
        bio = BIO_new(BIO_s_mem());
645
        if (bio == NULL)
646
            goto err;
647
        /*
648
         * We need to set this so that when we have read all the data, the
649
         * encrypt BIO, if present, will read EOF and encode the last few
650
         * bytes
651
         */
652
        BIO_set_mem_eof_return(bio, 0);
653
654
        if (data_body->length > 0)
655
            BIO_write(bio, (char *)data_body->data, data_body->length);
656
# else
657
0
        if (data_body->length > 0)
658
0
            bio = BIO_new_mem_buf(data_body->data, data_body->length);
659
0
        else {
660
0
            bio = BIO_new(BIO_s_mem());
661
0
            if (bio == NULL)
662
0
                goto err;
663
0
            BIO_set_mem_eof_return(bio, 0);
664
0
        }
665
0
        if (bio == NULL)
666
0
            goto err;
667
0
# endif
668
0
    }
669
0
    BIO_push(out, bio);
670
0
    bio = NULL;
671
0
#endif
672
0
    if (0) {
673
0
 err:
674
0
        if (ek) {
675
0
            OPENSSL_cleanse(ek, eklen);
676
0
            OPENSSL_free(ek);
677
0
        }
678
0
        if (tkey) {
679
0
            OPENSSL_cleanse(tkey, tkeylen);
680
0
            OPENSSL_free(tkey);
681
0
        }
682
0
        if (out != NULL)
683
0
            BIO_free_all(out);
684
0
        if (btmp != NULL)
685
0
            BIO_free_all(btmp);
686
0
        if (etmp != NULL)
687
0
            BIO_free_all(etmp);
688
0
        if (bio != NULL)
689
0
            BIO_free_all(bio);
690
0
        out = NULL;
691
0
    }
692
0
    return (out);
693
0
}
694
695
static BIO *PKCS7_find_digest(EVP_MD_CTX **pmd, BIO *bio, int nid)
696
0
{
697
0
    for (;;) {
698
0
        bio = BIO_find_type(bio, BIO_TYPE_MD);
699
0
        if (bio == NULL) {
700
0
            PKCS7err(PKCS7_F_PKCS7_FIND_DIGEST,
701
0
                     PKCS7_R_UNABLE_TO_FIND_MESSAGE_DIGEST);
702
0
            return NULL;
703
0
        }
704
0
        BIO_get_md_ctx(bio, pmd);
705
0
        if (*pmd == NULL) {
706
0
            PKCS7err(PKCS7_F_PKCS7_FIND_DIGEST, ERR_R_INTERNAL_ERROR);
707
0
            return NULL;
708
0
        }
709
0
        if (EVP_MD_CTX_type(*pmd) == nid)
710
0
            return bio;
711
0
        bio = BIO_next(bio);
712
0
    }
713
0
    return NULL;
714
0
}
715
716
static int do_pkcs7_signed_attrib(PKCS7_SIGNER_INFO *si, EVP_MD_CTX *mctx)
717
0
{
718
0
    unsigned char md_data[EVP_MAX_MD_SIZE];
719
0
    unsigned int md_len;
720
721
    /* Add signing time if not already present */
722
0
    if (!PKCS7_get_signed_attribute(si, NID_pkcs9_signingTime)) {
723
0
        if (!PKCS7_add0_attrib_signing_time(si, NULL)) {
724
0
            PKCS7err(PKCS7_F_DO_PKCS7_SIGNED_ATTRIB, ERR_R_MALLOC_FAILURE);
725
0
            return 0;
726
0
        }
727
0
    }
728
729
    /* Add digest */
730
0
    if (!EVP_DigestFinal_ex(mctx, md_data, &md_len)) {
731
0
        PKCS7err(PKCS7_F_DO_PKCS7_SIGNED_ATTRIB, ERR_R_EVP_LIB);
732
0
        return 0;
733
0
    }
734
0
    if (!PKCS7_add1_attrib_digest(si, md_data, md_len)) {
735
0
        PKCS7err(PKCS7_F_DO_PKCS7_SIGNED_ATTRIB, ERR_R_MALLOC_FAILURE);
736
0
        return 0;
737
0
    }
738
739
    /* Now sign the attributes */
740
0
    if (!PKCS7_SIGNER_INFO_sign(si))
741
0
        return 0;
742
743
0
    return 1;
744
0
}
745
746
int PKCS7_dataFinal(PKCS7 *p7, BIO *bio)
747
0
{
748
0
    int ret = 0;
749
0
    int i, j;
750
0
    BIO *btmp;
751
0
    PKCS7_SIGNER_INFO *si;
752
0
    EVP_MD_CTX *mdc, ctx_tmp;
753
0
    STACK_OF(X509_ATTRIBUTE) *sk;
754
0
    STACK_OF(PKCS7_SIGNER_INFO) *si_sk = NULL;
755
0
    ASN1_OCTET_STRING *os = NULL;
756
757
0
    if (p7 == NULL) {
758
0
        PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_INVALID_NULL_POINTER);
759
0
        return 0;
760
0
    }
761
762
0
    if (p7->d.ptr == NULL) {
763
0
        PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_NO_CONTENT);
764
0
        return 0;
765
0
    }
766
767
0
    EVP_MD_CTX_init(&ctx_tmp);
768
0
    i = OBJ_obj2nid(p7->type);
769
0
    p7->state = PKCS7_S_HEADER;
770
771
0
    switch (i) {
772
0
    case NID_pkcs7_data:
773
0
        os = p7->d.data;
774
0
        break;
775
0
    case NID_pkcs7_signedAndEnveloped:
776
        /* XXXXXXXXXXXXXXXX */
777
0
        si_sk = p7->d.signed_and_enveloped->signer_info;
778
0
        os = p7->d.signed_and_enveloped->enc_data->enc_data;
779
0
        if (!os) {
780
0
            os = M_ASN1_OCTET_STRING_new();
781
0
            if (!os) {
782
0
                PKCS7err(PKCS7_F_PKCS7_DATAFINAL, ERR_R_MALLOC_FAILURE);
783
0
                goto err;
784
0
            }
785
0
            p7->d.signed_and_enveloped->enc_data->enc_data = os;
786
0
        }
787
0
        break;
788
0
    case NID_pkcs7_enveloped:
789
        /* XXXXXXXXXXXXXXXX */
790
0
        os = p7->d.enveloped->enc_data->enc_data;
791
0
        if (!os) {
792
0
            os = M_ASN1_OCTET_STRING_new();
793
0
            if (!os) {
794
0
                PKCS7err(PKCS7_F_PKCS7_DATAFINAL, ERR_R_MALLOC_FAILURE);
795
0
                goto err;
796
0
            }
797
0
            p7->d.enveloped->enc_data->enc_data = os;
798
0
        }
799
0
        break;
800
0
    case NID_pkcs7_signed:
801
0
        si_sk = p7->d.sign->signer_info;
802
0
        os = PKCS7_get_octet_string(p7->d.sign->contents);
803
        /* If detached data then the content is excluded */
804
0
        if (PKCS7_type_is_data(p7->d.sign->contents) && p7->detached) {
805
0
            M_ASN1_OCTET_STRING_free(os);
806
0
            os = NULL;
807
0
            p7->d.sign->contents->d.data = NULL;
808
0
        }
809
0
        break;
810
811
0
    case NID_pkcs7_digest:
812
0
        os = PKCS7_get_octet_string(p7->d.digest->contents);
813
        /* If detached data then the content is excluded */
814
0
        if (PKCS7_type_is_data(p7->d.digest->contents) && p7->detached) {
815
0
            M_ASN1_OCTET_STRING_free(os);
816
0
            os = NULL;
817
0
            p7->d.digest->contents->d.data = NULL;
818
0
        }
819
0
        break;
820
821
0
    default:
822
0
        PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_UNSUPPORTED_CONTENT_TYPE);
823
0
        goto err;
824
0
    }
825
826
0
    if (si_sk != NULL) {
827
0
        for (i = 0; i < sk_PKCS7_SIGNER_INFO_num(si_sk); i++) {
828
0
            si = sk_PKCS7_SIGNER_INFO_value(si_sk, i);
829
0
            if (si->pkey == NULL)
830
0
                continue;
831
832
0
            j = OBJ_obj2nid(si->digest_alg->algorithm);
833
834
0
            btmp = bio;
835
836
0
            btmp = PKCS7_find_digest(&mdc, btmp, j);
837
838
0
            if (btmp == NULL)
839
0
                goto err;
840
841
            /*
842
             * We now have the EVP_MD_CTX, lets do the signing.
843
             */
844
0
            if (!EVP_MD_CTX_copy_ex(&ctx_tmp, mdc))
845
0
                goto err;
846
847
0
            sk = si->auth_attr;
848
849
            /*
850
             * If there are attributes, we add the digest attribute and only
851
             * sign the attributes
852
             */
853
0
            if (sk_X509_ATTRIBUTE_num(sk) > 0) {
854
0
                if (!do_pkcs7_signed_attrib(si, &ctx_tmp))
855
0
                    goto err;
856
0
            } else {
857
0
                unsigned char *abuf = NULL;
858
0
                unsigned int abuflen;
859
0
                abuflen = EVP_PKEY_size(si->pkey);
860
0
                abuf = OPENSSL_malloc(abuflen);
861
0
                if (!abuf)
862
0
                    goto err;
863
864
0
                if (!EVP_SignFinal(&ctx_tmp, abuf, &abuflen, si->pkey)) {
865
0
                    PKCS7err(PKCS7_F_PKCS7_DATAFINAL, ERR_R_EVP_LIB);
866
0
                    goto err;
867
0
                }
868
0
                ASN1_STRING_set0(si->enc_digest, abuf, abuflen);
869
0
            }
870
0
        }
871
0
    } else if (i == NID_pkcs7_digest) {
872
0
        unsigned char md_data[EVP_MAX_MD_SIZE];
873
0
        unsigned int md_len;
874
0
        if (!PKCS7_find_digest(&mdc, bio,
875
0
                               OBJ_obj2nid(p7->d.digest->md->algorithm)))
876
0
            goto err;
877
0
        if (!EVP_DigestFinal_ex(mdc, md_data, &md_len))
878
0
            goto err;
879
0
        M_ASN1_OCTET_STRING_set(p7->d.digest->digest, md_data, md_len);
880
0
    }
881
882
0
    if (!PKCS7_is_detached(p7)) {
883
        /*
884
         * NOTE(emilia): I think we only reach os == NULL here because detached
885
         * digested data support is broken.
886
         */
887
0
        if (os == NULL)
888
0
            goto err;
889
0
        if (!(os->flags & ASN1_STRING_FLAG_NDEF)) {
890
0
            char *cont;
891
0
            long contlen;
892
0
            btmp = BIO_find_type(bio, BIO_TYPE_MEM);
893
0
            if (btmp == NULL) {
894
0
                PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_UNABLE_TO_FIND_MEM_BIO);
895
0
                goto err;
896
0
            }
897
0
            contlen = BIO_get_mem_data(btmp, &cont);
898
            /*
899
             * Mark the BIO read only then we can use its copy of the data
900
             * instead of making an extra copy.
901
             */
902
0
            BIO_set_flags(btmp, BIO_FLAGS_MEM_RDONLY);
903
0
            BIO_set_mem_eof_return(btmp, 0);
904
0
            ASN1_STRING_set0(os, (unsigned char *)cont, contlen);
905
0
        }
906
0
    }
907
0
    ret = 1;
908
0
 err:
909
0
    EVP_MD_CTX_cleanup(&ctx_tmp);
910
0
    return (ret);
911
0
}
912
913
int PKCS7_SIGNER_INFO_sign(PKCS7_SIGNER_INFO *si)
914
0
{
915
0
    EVP_MD_CTX mctx;
916
0
    EVP_PKEY_CTX *pctx;
917
0
    unsigned char *abuf = NULL;
918
0
    int alen;
919
0
    size_t siglen;
920
0
    const EVP_MD *md = NULL;
921
922
0
    md = EVP_get_digestbyobj(si->digest_alg->algorithm);
923
0
    if (md == NULL)
924
0
        return 0;
925
926
0
    EVP_MD_CTX_init(&mctx);
927
0
    if (EVP_DigestSignInit(&mctx, &pctx, md, NULL, si->pkey) <= 0)
928
0
        goto err;
929
930
0
    if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_SIGN,
931
0
                          EVP_PKEY_CTRL_PKCS7_SIGN, 0, si) <= 0) {
932
0
        PKCS7err(PKCS7_F_PKCS7_SIGNER_INFO_SIGN, PKCS7_R_CTRL_ERROR);
933
0
        goto err;
934
0
    }
935
936
0
    alen = ASN1_item_i2d((ASN1_VALUE *)si->auth_attr, &abuf,
937
0
                         ASN1_ITEM_rptr(PKCS7_ATTR_SIGN));
938
0
    if (!abuf)
939
0
        goto err;
940
0
    if (EVP_DigestSignUpdate(&mctx, abuf, alen) <= 0)
941
0
        goto err;
942
0
    OPENSSL_free(abuf);
943
0
    abuf = NULL;
944
0
    if (EVP_DigestSignFinal(&mctx, NULL, &siglen) <= 0)
945
0
        goto err;
946
0
    abuf = OPENSSL_malloc(siglen);
947
0
    if (!abuf)
948
0
        goto err;
949
0
    if (EVP_DigestSignFinal(&mctx, abuf, &siglen) <= 0)
950
0
        goto err;
951
952
0
    if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_SIGN,
953
0
                          EVP_PKEY_CTRL_PKCS7_SIGN, 1, si) <= 0) {
954
0
        PKCS7err(PKCS7_F_PKCS7_SIGNER_INFO_SIGN, PKCS7_R_CTRL_ERROR);
955
0
        goto err;
956
0
    }
957
958
0
    EVP_MD_CTX_cleanup(&mctx);
959
960
0
    ASN1_STRING_set0(si->enc_digest, abuf, siglen);
961
962
0
    return 1;
963
964
0
 err:
965
0
    if (abuf)
966
0
        OPENSSL_free(abuf);
967
0
    EVP_MD_CTX_cleanup(&mctx);
968
0
    return 0;
969
970
0
}
971
972
int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx, BIO *bio,
973
                     PKCS7 *p7, PKCS7_SIGNER_INFO *si)
974
0
{
975
0
    PKCS7_ISSUER_AND_SERIAL *ias;
976
0
    int ret = 0, i;
977
0
    STACK_OF(X509) *cert;
978
0
    X509 *x509;
979
980
0
    if (p7 == NULL) {
981
0
        PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, PKCS7_R_INVALID_NULL_POINTER);
982
0
        return 0;
983
0
    }
984
985
0
    if (p7->d.ptr == NULL) {
986
0
        PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, PKCS7_R_NO_CONTENT);
987
0
        return 0;
988
0
    }
989
990
0
    if (PKCS7_type_is_signed(p7)) {
991
0
        cert = p7->d.sign->cert;
992
0
    } else if (PKCS7_type_is_signedAndEnveloped(p7)) {
993
0
        cert = p7->d.signed_and_enveloped->cert;
994
0
    } else {
995
0
        PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, PKCS7_R_WRONG_PKCS7_TYPE);
996
0
        goto err;
997
0
    }
998
    /* XXXXXXXXXXXXXXXXXXXXXXX */
999
0
    ias = si->issuer_and_serial;
1000
1001
0
    x509 = X509_find_by_issuer_and_serial(cert, ias->issuer, ias->serial);
1002
1003
    /* were we able to find the cert in passed to us */
1004
0
    if (x509 == NULL) {
1005
0
        PKCS7err(PKCS7_F_PKCS7_DATAVERIFY,
1006
0
                 PKCS7_R_UNABLE_TO_FIND_CERTIFICATE);
1007
0
        goto err;
1008
0
    }
1009
1010
    /* Lets verify */
1011
0
    if (!X509_STORE_CTX_init(ctx, cert_store, x509, cert)) {
1012
0
        PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, ERR_R_X509_LIB);
1013
0
        goto err;
1014
0
    }
1015
0
    X509_STORE_CTX_set_purpose(ctx, X509_PURPOSE_SMIME_SIGN);
1016
0
    i = X509_verify_cert(ctx);
1017
0
    if (i <= 0) {
1018
0
        PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, ERR_R_X509_LIB);
1019
0
        X509_STORE_CTX_cleanup(ctx);
1020
0
        goto err;
1021
0
    }
1022
0
    X509_STORE_CTX_cleanup(ctx);
1023
1024
0
    return PKCS7_signatureVerify(bio, p7, si, x509);
1025
0
 err:
1026
0
    return ret;
1027
0
}
1028
1029
int PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si,
1030
                          X509 *x509)
1031
0
{
1032
0
    ASN1_OCTET_STRING *os;
1033
0
    EVP_MD_CTX mdc_tmp, *mdc;
1034
0
    int ret = 0, i;
1035
0
    int md_type;
1036
0
    STACK_OF(X509_ATTRIBUTE) *sk;
1037
0
    BIO *btmp;
1038
0
    EVP_PKEY *pkey;
1039
1040
0
    EVP_MD_CTX_init(&mdc_tmp);
1041
1042
0
    if (!PKCS7_type_is_signed(p7) && !PKCS7_type_is_signedAndEnveloped(p7)) {
1043
0
        PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, PKCS7_R_WRONG_PKCS7_TYPE);
1044
0
        goto err;
1045
0
    }
1046
1047
0
    md_type = OBJ_obj2nid(si->digest_alg->algorithm);
1048
1049
0
    btmp = bio;
1050
0
    for (;;) {
1051
0
        if ((btmp == NULL) ||
1052
0
            ((btmp = BIO_find_type(btmp, BIO_TYPE_MD)) == NULL)) {
1053
0
            PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY,
1054
0
                     PKCS7_R_UNABLE_TO_FIND_MESSAGE_DIGEST);
1055
0
            goto err;
1056
0
        }
1057
0
        BIO_get_md_ctx(btmp, &mdc);
1058
0
        if (mdc == NULL) {
1059
0
            PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, ERR_R_INTERNAL_ERROR);
1060
0
            goto err;
1061
0
        }
1062
0
        if (EVP_MD_CTX_type(mdc) == md_type)
1063
0
            break;
1064
        /*
1065
         * Workaround for some broken clients that put the signature OID
1066
         * instead of the digest OID in digest_alg->algorithm
1067
         */
1068
0
        if (EVP_MD_pkey_type(EVP_MD_CTX_md(mdc)) == md_type)
1069
0
            break;
1070
0
        btmp = BIO_next(btmp);
1071
0
    }
1072
1073
    /*
1074
     * mdc is the digest ctx that we want, unless there are attributes, in
1075
     * which case the digest is the signed attributes
1076
     */
1077
0
    if (!EVP_MD_CTX_copy_ex(&mdc_tmp, mdc))
1078
0
        goto err;
1079
1080
0
    sk = si->auth_attr;
1081
0
    if ((sk != NULL) && (sk_X509_ATTRIBUTE_num(sk) != 0)) {
1082
0
        unsigned char md_dat[EVP_MAX_MD_SIZE], *abuf = NULL;
1083
0
        unsigned int md_len;
1084
0
        int alen;
1085
0
        ASN1_OCTET_STRING *message_digest;
1086
1087
0
        if (!EVP_DigestFinal_ex(&mdc_tmp, md_dat, &md_len))
1088
0
            goto err;
1089
0
        message_digest = PKCS7_digest_from_attributes(sk);
1090
0
        if (!message_digest) {
1091
0
            PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY,
1092
0
                     PKCS7_R_UNABLE_TO_FIND_MESSAGE_DIGEST);
1093
0
            goto err;
1094
0
        }
1095
0
        if ((message_digest->length != (int)md_len) ||
1096
0
            (memcmp(message_digest->data, md_dat, md_len))) {
1097
#if 0
1098
            {
1099
                int ii;
1100
                for (ii = 0; ii < message_digest->length; ii++)
1101
                    printf("%02X", message_digest->data[ii]);
1102
                printf(" sent\n");
1103
                for (ii = 0; ii < md_len; ii++)
1104
                    printf("%02X", md_dat[ii]);
1105
                printf(" calc\n");
1106
            }
1107
#endif
1108
0
            PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, PKCS7_R_DIGEST_FAILURE);
1109
0
            ret = -1;
1110
0
            goto err;
1111
0
        }
1112
1113
0
        if (!EVP_VerifyInit_ex(&mdc_tmp, EVP_get_digestbynid(md_type), NULL))
1114
0
            goto err;
1115
1116
0
        alen = ASN1_item_i2d((ASN1_VALUE *)sk, &abuf,
1117
0
                             ASN1_ITEM_rptr(PKCS7_ATTR_VERIFY));
1118
0
        if (alen <= 0) {
1119
0
            PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, ERR_R_ASN1_LIB);
1120
0
            ret = -1;
1121
0
            goto err;
1122
0
        }
1123
0
        if (!EVP_VerifyUpdate(&mdc_tmp, abuf, alen))
1124
0
            goto err;
1125
1126
0
        OPENSSL_free(abuf);
1127
0
    }
1128
1129
0
    os = si->enc_digest;
1130
0
    pkey = X509_get_pubkey(x509);
1131
0
    if (!pkey) {
1132
0
        ret = -1;
1133
0
        goto err;
1134
0
    }
1135
1136
0
    i = EVP_VerifyFinal(&mdc_tmp, os->data, os->length, pkey);
1137
0
    EVP_PKEY_free(pkey);
1138
0
    if (i <= 0) {
1139
0
        PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, PKCS7_R_SIGNATURE_FAILURE);
1140
0
        ret = -1;
1141
0
        goto err;
1142
0
    } else
1143
0
        ret = 1;
1144
0
 err:
1145
0
    EVP_MD_CTX_cleanup(&mdc_tmp);
1146
0
    return (ret);
1147
0
}
1148
1149
PKCS7_ISSUER_AND_SERIAL *PKCS7_get_issuer_and_serial(PKCS7 *p7, int idx)
1150
0
{
1151
0
    STACK_OF(PKCS7_RECIP_INFO) *rsk;
1152
0
    PKCS7_RECIP_INFO *ri;
1153
0
    int i;
1154
1155
0
    i = OBJ_obj2nid(p7->type);
1156
0
    if (i != NID_pkcs7_signedAndEnveloped)
1157
0
        return NULL;
1158
0
    if (p7->d.signed_and_enveloped == NULL)
1159
0
        return NULL;
1160
0
    rsk = p7->d.signed_and_enveloped->recipientinfo;
1161
0
    if (rsk == NULL)
1162
0
        return NULL;
1163
0
    if (sk_PKCS7_RECIP_INFO_num(rsk) <= idx)
1164
0
        return (NULL);
1165
0
    ri = sk_PKCS7_RECIP_INFO_value(rsk, idx);
1166
0
    return (ri->issuer_and_serial);
1167
0
}
1168
1169
ASN1_TYPE *PKCS7_get_signed_attribute(PKCS7_SIGNER_INFO *si, int nid)
1170
0
{
1171
0
    return (get_attribute(si->auth_attr, nid));
1172
0
}
1173
1174
ASN1_TYPE *PKCS7_get_attribute(PKCS7_SIGNER_INFO *si, int nid)
1175
0
{
1176
0
    return (get_attribute(si->unauth_attr, nid));
1177
0
}
1178
1179
static ASN1_TYPE *get_attribute(STACK_OF(X509_ATTRIBUTE) *sk, int nid)
1180
0
{
1181
0
    int i;
1182
0
    X509_ATTRIBUTE *xa;
1183
0
    ASN1_OBJECT *o;
1184
1185
0
    o = OBJ_nid2obj(nid);
1186
0
    if (!o || !sk)
1187
0
        return (NULL);
1188
0
    for (i = 0; i < sk_X509_ATTRIBUTE_num(sk); i++) {
1189
0
        xa = sk_X509_ATTRIBUTE_value(sk, i);
1190
0
        if (OBJ_cmp(xa->object, o) == 0) {
1191
0
            if (!xa->single && sk_ASN1_TYPE_num(xa->value.set))
1192
0
                return (sk_ASN1_TYPE_value(xa->value.set, 0));
1193
0
            else
1194
0
                return (NULL);
1195
0
        }
1196
0
    }
1197
0
    return (NULL);
1198
0
}
1199
1200
ASN1_OCTET_STRING *PKCS7_digest_from_attributes(STACK_OF(X509_ATTRIBUTE) *sk)
1201
0
{
1202
0
    ASN1_TYPE *astype;
1203
0
    if (!(astype = get_attribute(sk, NID_pkcs9_messageDigest)))
1204
0
        return NULL;
1205
0
    return astype->value.octet_string;
1206
0
}
1207
1208
int PKCS7_set_signed_attributes(PKCS7_SIGNER_INFO *p7si,
1209
                                STACK_OF(X509_ATTRIBUTE) *sk)
1210
0
{
1211
0
    int i;
1212
1213
0
    if (p7si->auth_attr != NULL)
1214
0
        sk_X509_ATTRIBUTE_pop_free(p7si->auth_attr, X509_ATTRIBUTE_free);
1215
0
    p7si->auth_attr = sk_X509_ATTRIBUTE_dup(sk);
1216
0
    if (p7si->auth_attr == NULL)
1217
0
        return 0;
1218
0
    for (i = 0; i < sk_X509_ATTRIBUTE_num(sk); i++) {
1219
0
        if ((sk_X509_ATTRIBUTE_set(p7si->auth_attr, i,
1220
0
                                   X509_ATTRIBUTE_dup(sk_X509_ATTRIBUTE_value
1221
0
                                                      (sk, i))))
1222
0
            == NULL)
1223
0
            return (0);
1224
0
    }
1225
0
    return (1);
1226
0
}
1227
1228
int PKCS7_set_attributes(PKCS7_SIGNER_INFO *p7si,
1229
                         STACK_OF(X509_ATTRIBUTE) *sk)
1230
0
{
1231
0
    int i;
1232
1233
0
    if (p7si->unauth_attr != NULL)
1234
0
        sk_X509_ATTRIBUTE_pop_free(p7si->unauth_attr, X509_ATTRIBUTE_free);
1235
0
    p7si->unauth_attr = sk_X509_ATTRIBUTE_dup(sk);
1236
0
    if (p7si->unauth_attr == NULL)
1237
0
        return 0;
1238
0
    for (i = 0; i < sk_X509_ATTRIBUTE_num(sk); i++) {
1239
0
        if ((sk_X509_ATTRIBUTE_set(p7si->unauth_attr, i,
1240
0
                                   X509_ATTRIBUTE_dup(sk_X509_ATTRIBUTE_value
1241
0
                                                      (sk, i))))
1242
0
            == NULL)
1243
0
            return (0);
1244
0
    }
1245
0
    return (1);
1246
0
}
1247
1248
int PKCS7_add_signed_attribute(PKCS7_SIGNER_INFO *p7si, int nid, int atrtype,
1249
                               void *value)
1250
0
{
1251
0
    return (add_attribute(&(p7si->auth_attr), nid, atrtype, value));
1252
0
}
1253
1254
int PKCS7_add_attribute(PKCS7_SIGNER_INFO *p7si, int nid, int atrtype,
1255
                        void *value)
1256
0
{
1257
0
    return (add_attribute(&(p7si->unauth_attr), nid, atrtype, value));
1258
0
}
1259
1260
static int add_attribute(STACK_OF(X509_ATTRIBUTE) **sk, int nid, int atrtype,
1261
                         void *value)
1262
0
{
1263
0
    X509_ATTRIBUTE *attr = NULL;
1264
1265
0
    if (*sk == NULL) {
1266
0
        *sk = sk_X509_ATTRIBUTE_new_null();
1267
0
        if (*sk == NULL)
1268
0
            return 0;
1269
0
 new_attrib:
1270
0
        if (!(attr = X509_ATTRIBUTE_create(nid, atrtype, value)))
1271
0
            return 0;
1272
0
        if (!sk_X509_ATTRIBUTE_push(*sk, attr)) {
1273
0
            X509_ATTRIBUTE_free(attr);
1274
0
            return 0;
1275
0
        }
1276
0
    } else {
1277
0
        int i;
1278
1279
0
        for (i = 0; i < sk_X509_ATTRIBUTE_num(*sk); i++) {
1280
0
            attr = sk_X509_ATTRIBUTE_value(*sk, i);
1281
0
            if (OBJ_obj2nid(attr->object) == nid) {
1282
0
                X509_ATTRIBUTE_free(attr);
1283
0
                attr = X509_ATTRIBUTE_create(nid, atrtype, value);
1284
0
                if (attr == NULL)
1285
0
                    return 0;
1286
0
                if (!sk_X509_ATTRIBUTE_set(*sk, i, attr)) {
1287
0
                    X509_ATTRIBUTE_free(attr);
1288
0
                    return 0;
1289
0
                }
1290
0
                goto end;
1291
0
            }
1292
0
        }
1293
0
        goto new_attrib;
1294
0
    }
1295
0
 end:
1296
0
    return (1);
1297
0
}