Make X509_ATTRIBUTE opaque.
[openssl.git] / crypto / pkcs7 / pk7_doit.c
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 {
73     int isOther = 1;
74
75     int nid = OBJ_obj2nid(p7->type);
76
77     switch (nid) {
78     case NID_pkcs7_data:
79     case NID_pkcs7_signed:
80     case NID_pkcs7_enveloped:
81     case NID_pkcs7_signedAndEnveloped:
82     case NID_pkcs7_digest:
83     case NID_pkcs7_encrypted:
84         isOther = 0;
85         break;
86     default:
87         isOther = 1;
88     }
89
90     return isOther;
91
92 }
93
94 static ASN1_OCTET_STRING *PKCS7_get_octet_string(PKCS7 *p7)
95 {
96     if (PKCS7_type_is_data(p7))
97         return p7->d.data;
98     if (PKCS7_type_is_other(p7) && p7->d.other
99         && (p7->d.other->type == V_ASN1_OCTET_STRING))
100         return p7->d.other->value.octet_string;
101     return NULL;
102 }
103
104 static int PKCS7_bio_add_digest(BIO **pbio, X509_ALGOR *alg)
105 {
106     BIO *btmp;
107     const EVP_MD *md;
108     if ((btmp = BIO_new(BIO_f_md())) == NULL) {
109         PKCS7err(PKCS7_F_PKCS7_BIO_ADD_DIGEST, ERR_R_BIO_LIB);
110         goto err;
111     }
112
113     md = EVP_get_digestbyobj(alg->algorithm);
114     if (md == NULL) {
115         PKCS7err(PKCS7_F_PKCS7_BIO_ADD_DIGEST, PKCS7_R_UNKNOWN_DIGEST_TYPE);
116         goto err;
117     }
118
119     BIO_set_md(btmp, md);
120     if (*pbio == NULL)
121         *pbio = btmp;
122     else if (!BIO_push(*pbio, btmp)) {
123         PKCS7err(PKCS7_F_PKCS7_BIO_ADD_DIGEST, ERR_R_BIO_LIB);
124         goto err;
125     }
126     btmp = NULL;
127
128     return 1;
129
130  err:
131     if (btmp)
132         BIO_free(btmp);
133     return 0;
134
135 }
136
137 static int pkcs7_encode_rinfo(PKCS7_RECIP_INFO *ri,
138                               unsigned char *key, int keylen)
139 {
140     EVP_PKEY_CTX *pctx = NULL;
141     EVP_PKEY *pkey = NULL;
142     unsigned char *ek = NULL;
143     int ret = 0;
144     size_t eklen;
145
146     pkey = X509_get_pubkey(ri->cert);
147
148     if (!pkey)
149         return 0;
150
151     pctx = EVP_PKEY_CTX_new(pkey, NULL);
152     if (!pctx)
153         return 0;
154
155     if (EVP_PKEY_encrypt_init(pctx) <= 0)
156         goto err;
157
158     if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_ENCRYPT,
159                           EVP_PKEY_CTRL_PKCS7_ENCRYPT, 0, ri) <= 0) {
160         PKCS7err(PKCS7_F_PKCS7_ENCODE_RINFO, PKCS7_R_CTRL_ERROR);
161         goto err;
162     }
163
164     if (EVP_PKEY_encrypt(pctx, NULL, &eklen, key, keylen) <= 0)
165         goto err;
166
167     ek = OPENSSL_malloc(eklen);
168
169     if (ek == NULL) {
170         PKCS7err(PKCS7_F_PKCS7_ENCODE_RINFO, ERR_R_MALLOC_FAILURE);
171         goto err;
172     }
173
174     if (EVP_PKEY_encrypt(pctx, ek, &eklen, key, keylen) <= 0)
175         goto err;
176
177     ASN1_STRING_set0(ri->enc_key, ek, eklen);
178     ek = NULL;
179
180     ret = 1;
181
182  err:
183     if (pkey)
184         EVP_PKEY_free(pkey);
185     if (pctx)
186         EVP_PKEY_CTX_free(pctx);
187     if (ek)
188         OPENSSL_free(ek);
189     return ret;
190
191 }
192
193 static int pkcs7_decrypt_rinfo(unsigned char **pek, int *peklen,
194                                PKCS7_RECIP_INFO *ri, EVP_PKEY *pkey)
195 {
196     EVP_PKEY_CTX *pctx = NULL;
197     unsigned char *ek = NULL;
198     size_t eklen;
199
200     int ret = -1;
201
202     pctx = EVP_PKEY_CTX_new(pkey, NULL);
203     if (!pctx)
204         return -1;
205
206     if (EVP_PKEY_decrypt_init(pctx) <= 0)
207         goto err;
208
209     if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_DECRYPT,
210                           EVP_PKEY_CTRL_PKCS7_DECRYPT, 0, ri) <= 0) {
211         PKCS7err(PKCS7_F_PKCS7_DECRYPT_RINFO, PKCS7_R_CTRL_ERROR);
212         goto err;
213     }
214
215     if (EVP_PKEY_decrypt(pctx, NULL, &eklen,
216                          ri->enc_key->data, ri->enc_key->length) <= 0)
217         goto err;
218
219     ek = OPENSSL_malloc(eklen);
220
221     if (ek == NULL) {
222         PKCS7err(PKCS7_F_PKCS7_DECRYPT_RINFO, ERR_R_MALLOC_FAILURE);
223         goto err;
224     }
225
226     if (EVP_PKEY_decrypt(pctx, ek, &eklen,
227                          ri->enc_key->data, ri->enc_key->length) <= 0) {
228         ret = 0;
229         PKCS7err(PKCS7_F_PKCS7_DECRYPT_RINFO, ERR_R_EVP_LIB);
230         goto err;
231     }
232
233     ret = 1;
234
235     if (*pek) {
236         OPENSSL_cleanse(*pek, *peklen);
237         OPENSSL_free(*pek);
238     }
239
240     *pek = ek;
241     *peklen = eklen;
242
243  err:
244     if (pctx)
245         EVP_PKEY_CTX_free(pctx);
246     if (!ret && ek)
247         OPENSSL_free(ek);
248
249     return ret;
250 }
251
252 BIO *PKCS7_dataInit(PKCS7 *p7, BIO *bio)
253 {
254     int i;
255     BIO *out = NULL, *btmp = NULL;
256     X509_ALGOR *xa = NULL;
257     const EVP_CIPHER *evp_cipher = NULL;
258     STACK_OF(X509_ALGOR) *md_sk = NULL;
259     STACK_OF(PKCS7_RECIP_INFO) *rsk = NULL;
260     X509_ALGOR *xalg = NULL;
261     PKCS7_RECIP_INFO *ri = NULL;
262     ASN1_OCTET_STRING *os = NULL;
263
264     i = OBJ_obj2nid(p7->type);
265     p7->state = PKCS7_S_HEADER;
266
267     switch (i) {
268     case NID_pkcs7_signed:
269         md_sk = p7->d.sign->md_algs;
270         os = PKCS7_get_octet_string(p7->d.sign->contents);
271         break;
272     case NID_pkcs7_signedAndEnveloped:
273         rsk = p7->d.signed_and_enveloped->recipientinfo;
274         md_sk = p7->d.signed_and_enveloped->md_algs;
275         xalg = p7->d.signed_and_enveloped->enc_data->algorithm;
276         evp_cipher = p7->d.signed_and_enveloped->enc_data->cipher;
277         if (evp_cipher == NULL) {
278             PKCS7err(PKCS7_F_PKCS7_DATAINIT, PKCS7_R_CIPHER_NOT_INITIALIZED);
279             goto err;
280         }
281         break;
282     case NID_pkcs7_enveloped:
283         rsk = p7->d.enveloped->recipientinfo;
284         xalg = p7->d.enveloped->enc_data->algorithm;
285         evp_cipher = p7->d.enveloped->enc_data->cipher;
286         if (evp_cipher == NULL) {
287             PKCS7err(PKCS7_F_PKCS7_DATAINIT, PKCS7_R_CIPHER_NOT_INITIALIZED);
288             goto err;
289         }
290         break;
291     case NID_pkcs7_digest:
292         xa = p7->d.digest->md;
293         os = PKCS7_get_octet_string(p7->d.digest->contents);
294         break;
295     case NID_pkcs7_data:
296         break;
297     default:
298         PKCS7err(PKCS7_F_PKCS7_DATAINIT, PKCS7_R_UNSUPPORTED_CONTENT_TYPE);
299         goto err;
300     }
301
302     for (i = 0; i < sk_X509_ALGOR_num(md_sk); i++)
303         if (!PKCS7_bio_add_digest(&out, sk_X509_ALGOR_value(md_sk, i)))
304             goto err;
305
306     if (xa && !PKCS7_bio_add_digest(&out, xa))
307         goto err;
308
309     if (evp_cipher != NULL) {
310         unsigned char key[EVP_MAX_KEY_LENGTH];
311         unsigned char iv[EVP_MAX_IV_LENGTH];
312         int keylen, ivlen;
313         EVP_CIPHER_CTX *ctx;
314
315         if ((btmp = BIO_new(BIO_f_cipher())) == NULL) {
316             PKCS7err(PKCS7_F_PKCS7_DATAINIT, ERR_R_BIO_LIB);
317             goto err;
318         }
319         BIO_get_cipher_ctx(btmp, &ctx);
320         keylen = EVP_CIPHER_key_length(evp_cipher);
321         ivlen = EVP_CIPHER_iv_length(evp_cipher);
322         xalg->algorithm = OBJ_nid2obj(EVP_CIPHER_type(evp_cipher));
323         if (ivlen > 0)
324             if (RAND_pseudo_bytes(iv, ivlen) <= 0)
325                 goto err;
326         if (EVP_CipherInit_ex(ctx, evp_cipher, NULL, NULL, NULL, 1) <= 0)
327             goto err;
328         if (EVP_CIPHER_CTX_rand_key(ctx, key) <= 0)
329             goto err;
330         if (EVP_CipherInit_ex(ctx, NULL, NULL, key, iv, 1) <= 0)
331             goto err;
332
333         if (ivlen > 0) {
334             if (xalg->parameter == NULL) {
335                 xalg->parameter = ASN1_TYPE_new();
336                 if (xalg->parameter == NULL)
337                     goto err;
338             }
339             if (EVP_CIPHER_param_to_asn1(ctx, xalg->parameter) < 0)
340                 goto err;
341         }
342
343         /* Lets do the pub key stuff :-) */
344         for (i = 0; i < sk_PKCS7_RECIP_INFO_num(rsk); i++) {
345             ri = sk_PKCS7_RECIP_INFO_value(rsk, i);
346             if (pkcs7_encode_rinfo(ri, key, keylen) <= 0)
347                 goto err;
348         }
349         OPENSSL_cleanse(key, keylen);
350
351         if (out == NULL)
352             out = btmp;
353         else
354             BIO_push(out, btmp);
355         btmp = NULL;
356     }
357
358     if (bio == NULL) {
359         if (PKCS7_is_detached(p7))
360             bio = BIO_new(BIO_s_null());
361         else if (os && os->length > 0)
362             bio = BIO_new_mem_buf(os->data, os->length);
363         if (bio == NULL) {
364             bio = BIO_new(BIO_s_mem());
365             if (bio == NULL)
366                 goto err;
367             BIO_set_mem_eof_return(bio, 0);
368         }
369     }
370     if (out)
371         BIO_push(out, bio);
372     else
373         out = bio;
374     bio = NULL;
375     if (0) {
376  err:
377         if (out != NULL)
378             BIO_free_all(out);
379         if (btmp != NULL)
380             BIO_free_all(btmp);
381         out = NULL;
382     }
383     return (out);
384 }
385
386 static int pkcs7_cmp_ri(PKCS7_RECIP_INFO *ri, X509 *pcert)
387 {
388     int ret;
389     ret = X509_NAME_cmp(ri->issuer_and_serial->issuer,
390                         pcert->cert_info->issuer);
391     if (ret)
392         return ret;
393     return M_ASN1_INTEGER_cmp(pcert->cert_info->serialNumber,
394                               ri->issuer_and_serial->serial);
395 }
396
397 /* int */
398 BIO *PKCS7_dataDecode(PKCS7 *p7, EVP_PKEY *pkey, BIO *in_bio, X509 *pcert)
399 {
400     int i, j;
401     BIO *out = NULL, *btmp = NULL, *etmp = NULL, *bio = NULL;
402     X509_ALGOR *xa;
403     ASN1_OCTET_STRING *data_body = NULL;
404     const EVP_MD *evp_md;
405     const EVP_CIPHER *evp_cipher = NULL;
406     EVP_CIPHER_CTX *evp_ctx = NULL;
407     X509_ALGOR *enc_alg = NULL;
408     STACK_OF(X509_ALGOR) *md_sk = NULL;
409     STACK_OF(PKCS7_RECIP_INFO) *rsk = NULL;
410     PKCS7_RECIP_INFO *ri = NULL;
411     unsigned char *ek = NULL, *tkey = NULL;
412     int eklen = 0, tkeylen = 0;
413
414     i = OBJ_obj2nid(p7->type);
415     p7->state = PKCS7_S_HEADER;
416
417     switch (i) {
418     case NID_pkcs7_signed:
419         data_body = PKCS7_get_octet_string(p7->d.sign->contents);
420         if (!PKCS7_is_detached(p7) && data_body == NULL) {
421             PKCS7err(PKCS7_F_PKCS7_DATADECODE,
422                      PKCS7_R_INVALID_SIGNED_DATA_TYPE);
423             goto err;
424         }
425         md_sk = p7->d.sign->md_algs;
426         break;
427     case NID_pkcs7_signedAndEnveloped:
428         rsk = p7->d.signed_and_enveloped->recipientinfo;
429         md_sk = p7->d.signed_and_enveloped->md_algs;
430         data_body = p7->d.signed_and_enveloped->enc_data->enc_data;
431         enc_alg = p7->d.signed_and_enveloped->enc_data->algorithm;
432         evp_cipher = EVP_get_cipherbyobj(enc_alg->algorithm);
433         if (evp_cipher == NULL) {
434             PKCS7err(PKCS7_F_PKCS7_DATADECODE,
435                      PKCS7_R_UNSUPPORTED_CIPHER_TYPE);
436             goto err;
437         }
438         break;
439     case NID_pkcs7_enveloped:
440         rsk = p7->d.enveloped->recipientinfo;
441         enc_alg = p7->d.enveloped->enc_data->algorithm;
442         data_body = p7->d.enveloped->enc_data->enc_data;
443         evp_cipher = EVP_get_cipherbyobj(enc_alg->algorithm);
444         if (evp_cipher == NULL) {
445             PKCS7err(PKCS7_F_PKCS7_DATADECODE,
446                      PKCS7_R_UNSUPPORTED_CIPHER_TYPE);
447             goto err;
448         }
449         break;
450     default:
451         PKCS7err(PKCS7_F_PKCS7_DATADECODE, PKCS7_R_UNSUPPORTED_CONTENT_TYPE);
452         goto err;
453     }
454
455     /* We will be checking the signature */
456     if (md_sk != NULL) {
457         for (i = 0; i < sk_X509_ALGOR_num(md_sk); i++) {
458             xa = sk_X509_ALGOR_value(md_sk, i);
459             if ((btmp = BIO_new(BIO_f_md())) == NULL) {
460                 PKCS7err(PKCS7_F_PKCS7_DATADECODE, ERR_R_BIO_LIB);
461                 goto err;
462             }
463
464             j = OBJ_obj2nid(xa->algorithm);
465             evp_md = EVP_get_digestbynid(j);
466             if (evp_md == NULL) {
467                 PKCS7err(PKCS7_F_PKCS7_DATADECODE,
468                          PKCS7_R_UNKNOWN_DIGEST_TYPE);
469                 goto err;
470             }
471
472             BIO_set_md(btmp, evp_md);
473             if (out == NULL)
474                 out = btmp;
475             else
476                 BIO_push(out, btmp);
477             btmp = NULL;
478         }
479     }
480
481     if (evp_cipher != NULL) {
482         if ((etmp = BIO_new(BIO_f_cipher())) == NULL) {
483             PKCS7err(PKCS7_F_PKCS7_DATADECODE, ERR_R_BIO_LIB);
484             goto err;
485         }
486
487         /*
488          * It was encrypted, we need to decrypt the secret key with the
489          * private key
490          */
491
492         /*
493          * Find the recipientInfo which matches the passed certificate (if
494          * any)
495          */
496
497         if (pcert) {
498             for (i = 0; i < sk_PKCS7_RECIP_INFO_num(rsk); i++) {
499                 ri = sk_PKCS7_RECIP_INFO_value(rsk, i);
500                 if (!pkcs7_cmp_ri(ri, pcert))
501                     break;
502                 ri = NULL;
503             }
504             if (ri == NULL) {
505                 PKCS7err(PKCS7_F_PKCS7_DATADECODE,
506                          PKCS7_R_NO_RECIPIENT_MATCHES_CERTIFICATE);
507                 goto err;
508             }
509         }
510
511         /* If we haven't got a certificate try each ri in turn */
512         if (pcert == NULL) {
513             /*
514              * Always attempt to decrypt all rinfo even after success as a
515              * defence against MMA timing attacks.
516              */
517             for (i = 0; i < sk_PKCS7_RECIP_INFO_num(rsk); i++) {
518                 ri = sk_PKCS7_RECIP_INFO_value(rsk, i);
519
520                 if (pkcs7_decrypt_rinfo(&ek, &eklen, ri, pkey) < 0)
521                     goto err;
522                 ERR_clear_error();
523             }
524         } else {
525             /* Only exit on fatal errors, not decrypt failure */
526             if (pkcs7_decrypt_rinfo(&ek, &eklen, ri, pkey) < 0)
527                 goto err;
528             ERR_clear_error();
529         }
530
531         evp_ctx = NULL;
532         BIO_get_cipher_ctx(etmp, &evp_ctx);
533         if (EVP_CipherInit_ex(evp_ctx, evp_cipher, NULL, NULL, NULL, 0) <= 0)
534             goto err;
535         if (EVP_CIPHER_asn1_to_param(evp_ctx, enc_alg->parameter) < 0)
536             goto err;
537         /* Generate random key as MMA defence */
538         tkeylen = EVP_CIPHER_CTX_key_length(evp_ctx);
539         tkey = OPENSSL_malloc(tkeylen);
540         if (!tkey)
541             goto err;
542         if (EVP_CIPHER_CTX_rand_key(evp_ctx, tkey) <= 0)
543             goto err;
544         if (ek == NULL) {
545             ek = tkey;
546             eklen = tkeylen;
547             tkey = NULL;
548         }
549
550         if (eklen != EVP_CIPHER_CTX_key_length(evp_ctx)) {
551             /*
552              * Some S/MIME clients don't use the same key and effective key
553              * length. The key length is determined by the size of the
554              * decrypted RSA key.
555              */
556             if (!EVP_CIPHER_CTX_set_key_length(evp_ctx, eklen)) {
557                 /* Use random key as MMA defence */
558                 OPENSSL_cleanse(ek, eklen);
559                 OPENSSL_free(ek);
560                 ek = tkey;
561                 eklen = tkeylen;
562                 tkey = NULL;
563             }
564         }
565         /* Clear errors so we don't leak information useful in MMA */
566         ERR_clear_error();
567         if (EVP_CipherInit_ex(evp_ctx, NULL, NULL, ek, NULL, 0) <= 0)
568             goto err;
569
570         if (ek) {
571             OPENSSL_cleanse(ek, eklen);
572             OPENSSL_free(ek);
573             ek = NULL;
574         }
575         if (tkey) {
576             OPENSSL_cleanse(tkey, tkeylen);
577             OPENSSL_free(tkey);
578             tkey = NULL;
579         }
580
581         if (out == NULL)
582             out = etmp;
583         else
584             BIO_push(out, etmp);
585         etmp = NULL;
586     }
587     if (PKCS7_is_detached(p7) || (in_bio != NULL)) {
588         bio = in_bio;
589     } else {
590         if (data_body->length > 0)
591             bio = BIO_new_mem_buf(data_body->data, data_body->length);
592         else {
593             bio = BIO_new(BIO_s_mem());
594             BIO_set_mem_eof_return(bio, 0);
595         }
596         if (bio == NULL)
597             goto err;
598     }
599     BIO_push(out, bio);
600     bio = NULL;
601     if (0) {
602  err:
603         if (ek) {
604             OPENSSL_cleanse(ek, eklen);
605             OPENSSL_free(ek);
606         }
607         if (tkey) {
608             OPENSSL_cleanse(tkey, tkeylen);
609             OPENSSL_free(tkey);
610         }
611         if (out != NULL)
612             BIO_free_all(out);
613         if (btmp != NULL)
614             BIO_free_all(btmp);
615         if (etmp != NULL)
616             BIO_free_all(etmp);
617         if (bio != NULL)
618             BIO_free_all(bio);
619         out = NULL;
620     }
621     return (out);
622 }
623
624 static BIO *PKCS7_find_digest(EVP_MD_CTX **pmd, BIO *bio, int nid)
625 {
626     for (;;) {
627         bio = BIO_find_type(bio, BIO_TYPE_MD);
628         if (bio == NULL) {
629             PKCS7err(PKCS7_F_PKCS7_FIND_DIGEST,
630                      PKCS7_R_UNABLE_TO_FIND_MESSAGE_DIGEST);
631             return NULL;
632         }
633         BIO_get_md_ctx(bio, pmd);
634         if (*pmd == NULL) {
635             PKCS7err(PKCS7_F_PKCS7_FIND_DIGEST, ERR_R_INTERNAL_ERROR);
636             return NULL;
637         }
638         if (EVP_MD_CTX_type(*pmd) == nid)
639             return bio;
640         bio = BIO_next(bio);
641     }
642     return NULL;
643 }
644
645 static int do_pkcs7_signed_attrib(PKCS7_SIGNER_INFO *si, EVP_MD_CTX *mctx)
646 {
647     unsigned char md_data[EVP_MAX_MD_SIZE];
648     unsigned int md_len;
649
650     /* Add signing time if not already present */
651     if (!PKCS7_get_signed_attribute(si, NID_pkcs9_signingTime)) {
652         if (!PKCS7_add0_attrib_signing_time(si, NULL)) {
653             PKCS7err(PKCS7_F_DO_PKCS7_SIGNED_ATTRIB, ERR_R_MALLOC_FAILURE);
654             return 0;
655         }
656     }
657
658     /* Add digest */
659     if (!EVP_DigestFinal_ex(mctx, md_data, &md_len)) {
660         PKCS7err(PKCS7_F_DO_PKCS7_SIGNED_ATTRIB, ERR_R_EVP_LIB);
661         return 0;
662     }
663     if (!PKCS7_add1_attrib_digest(si, md_data, md_len)) {
664         PKCS7err(PKCS7_F_DO_PKCS7_SIGNED_ATTRIB, ERR_R_MALLOC_FAILURE);
665         return 0;
666     }
667
668     /* Now sign the attributes */
669     if (!PKCS7_SIGNER_INFO_sign(si))
670         return 0;
671
672     return 1;
673 }
674
675 int PKCS7_dataFinal(PKCS7 *p7, BIO *bio)
676 {
677     int ret = 0;
678     int i, j;
679     BIO *btmp;
680     PKCS7_SIGNER_INFO *si;
681     EVP_MD_CTX *mdc, ctx_tmp;
682     STACK_OF(X509_ATTRIBUTE) *sk;
683     STACK_OF(PKCS7_SIGNER_INFO) *si_sk = NULL;
684     ASN1_OCTET_STRING *os = NULL;
685
686     EVP_MD_CTX_init(&ctx_tmp);
687     i = OBJ_obj2nid(p7->type);
688     p7->state = PKCS7_S_HEADER;
689
690     switch (i) {
691     case NID_pkcs7_data:
692         os = p7->d.data;
693         break;
694     case NID_pkcs7_signedAndEnveloped:
695         /* XXXXXXXXXXXXXXXX */
696         si_sk = p7->d.signed_and_enveloped->signer_info;
697         os = p7->d.signed_and_enveloped->enc_data->enc_data;
698         if (!os) {
699             os = M_ASN1_OCTET_STRING_new();
700             if (!os) {
701                 PKCS7err(PKCS7_F_PKCS7_DATAFINAL, ERR_R_MALLOC_FAILURE);
702                 goto err;
703             }
704             p7->d.signed_and_enveloped->enc_data->enc_data = os;
705         }
706         break;
707     case NID_pkcs7_enveloped:
708         /* XXXXXXXXXXXXXXXX */
709         os = p7->d.enveloped->enc_data->enc_data;
710         if (!os) {
711             os = M_ASN1_OCTET_STRING_new();
712             if (!os) {
713                 PKCS7err(PKCS7_F_PKCS7_DATAFINAL, ERR_R_MALLOC_FAILURE);
714                 goto err;
715             }
716             p7->d.enveloped->enc_data->enc_data = os;
717         }
718         break;
719     case NID_pkcs7_signed:
720         si_sk = p7->d.sign->signer_info;
721         os = PKCS7_get_octet_string(p7->d.sign->contents);
722         /* If detached data then the content is excluded */
723         if (PKCS7_type_is_data(p7->d.sign->contents) && p7->detached) {
724             M_ASN1_OCTET_STRING_free(os);
725             p7->d.sign->contents->d.data = NULL;
726         }
727         break;
728
729     case NID_pkcs7_digest:
730         os = PKCS7_get_octet_string(p7->d.digest->contents);
731         /* If detached data then the content is excluded */
732         if (PKCS7_type_is_data(p7->d.digest->contents) && p7->detached) {
733             M_ASN1_OCTET_STRING_free(os);
734             p7->d.digest->contents->d.data = NULL;
735         }
736         break;
737
738     default:
739         PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_UNSUPPORTED_CONTENT_TYPE);
740         goto err;
741     }
742
743     if (si_sk != NULL) {
744         for (i = 0; i < sk_PKCS7_SIGNER_INFO_num(si_sk); i++) {
745             si = sk_PKCS7_SIGNER_INFO_value(si_sk, i);
746             if (si->pkey == NULL)
747                 continue;
748
749             j = OBJ_obj2nid(si->digest_alg->algorithm);
750
751             btmp = bio;
752
753             btmp = PKCS7_find_digest(&mdc, btmp, j);
754
755             if (btmp == NULL)
756                 goto err;
757
758             /*
759              * We now have the EVP_MD_CTX, lets do the signing.
760              */
761             if (!EVP_MD_CTX_copy_ex(&ctx_tmp, mdc))
762                 goto err;
763
764             sk = si->auth_attr;
765
766             /*
767              * If there are attributes, we add the digest attribute and only
768              * sign the attributes
769              */
770             if (sk_X509_ATTRIBUTE_num(sk) > 0) {
771                 if (!do_pkcs7_signed_attrib(si, &ctx_tmp))
772                     goto err;
773             } else {
774                 unsigned char *abuf = NULL;
775                 unsigned int abuflen;
776                 abuflen = EVP_PKEY_size(si->pkey);
777                 abuf = OPENSSL_malloc(abuflen);
778                 if (!abuf)
779                     goto err;
780
781                 if (!EVP_SignFinal(&ctx_tmp, abuf, &abuflen, si->pkey)) {
782                     PKCS7err(PKCS7_F_PKCS7_DATAFINAL, ERR_R_EVP_LIB);
783                     goto err;
784                 }
785                 ASN1_STRING_set0(si->enc_digest, abuf, abuflen);
786             }
787         }
788     } else if (i == NID_pkcs7_digest) {
789         unsigned char md_data[EVP_MAX_MD_SIZE];
790         unsigned int md_len;
791         if (!PKCS7_find_digest(&mdc, bio,
792                                OBJ_obj2nid(p7->d.digest->md->algorithm)))
793             goto err;
794         if (!EVP_DigestFinal_ex(mdc, md_data, &md_len))
795             goto err;
796         M_ASN1_OCTET_STRING_set(p7->d.digest->digest, md_data, md_len);
797     }
798
799     if (!PKCS7_is_detached(p7) && !(os->flags & ASN1_STRING_FLAG_NDEF)) {
800         char *cont;
801         long contlen;
802         btmp = BIO_find_type(bio, BIO_TYPE_MEM);
803         if (btmp == NULL) {
804             PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_UNABLE_TO_FIND_MEM_BIO);
805             goto err;
806         }
807         contlen = BIO_get_mem_data(btmp, &cont);
808         /*
809          * Mark the BIO read only then we can use its copy of the data
810          * instead of making an extra copy.
811          */
812         BIO_set_flags(btmp, BIO_FLAGS_MEM_RDONLY);
813         BIO_set_mem_eof_return(btmp, 0);
814         ASN1_STRING_set0(os, (unsigned char *)cont, contlen);
815     }
816     ret = 1;
817  err:
818     EVP_MD_CTX_cleanup(&ctx_tmp);
819     return (ret);
820 }
821
822 int PKCS7_SIGNER_INFO_sign(PKCS7_SIGNER_INFO *si)
823 {
824     EVP_MD_CTX mctx;
825     EVP_PKEY_CTX *pctx;
826     unsigned char *abuf = NULL;
827     int alen;
828     size_t siglen;
829     const EVP_MD *md = NULL;
830
831     md = EVP_get_digestbyobj(si->digest_alg->algorithm);
832     if (md == NULL)
833         return 0;
834
835     EVP_MD_CTX_init(&mctx);
836     if (EVP_DigestSignInit(&mctx, &pctx, md, NULL, si->pkey) <= 0)
837         goto err;
838
839     if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_SIGN,
840                           EVP_PKEY_CTRL_PKCS7_SIGN, 0, si) <= 0) {
841         PKCS7err(PKCS7_F_PKCS7_SIGNER_INFO_SIGN, PKCS7_R_CTRL_ERROR);
842         goto err;
843     }
844
845     alen = ASN1_item_i2d((ASN1_VALUE *)si->auth_attr, &abuf,
846                          ASN1_ITEM_rptr(PKCS7_ATTR_SIGN));
847     if (!abuf)
848         goto err;
849     if (EVP_DigestSignUpdate(&mctx, abuf, alen) <= 0)
850         goto err;
851     OPENSSL_free(abuf);
852     abuf = NULL;
853     if (EVP_DigestSignFinal(&mctx, NULL, &siglen) <= 0)
854         goto err;
855     abuf = OPENSSL_malloc(siglen);
856     if (!abuf)
857         goto err;
858     if (EVP_DigestSignFinal(&mctx, abuf, &siglen) <= 0)
859         goto err;
860
861     if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_SIGN,
862                           EVP_PKEY_CTRL_PKCS7_SIGN, 1, si) <= 0) {
863         PKCS7err(PKCS7_F_PKCS7_SIGNER_INFO_SIGN, PKCS7_R_CTRL_ERROR);
864         goto err;
865     }
866
867     EVP_MD_CTX_cleanup(&mctx);
868
869     ASN1_STRING_set0(si->enc_digest, abuf, siglen);
870
871     return 1;
872
873  err:
874     if (abuf)
875         OPENSSL_free(abuf);
876     EVP_MD_CTX_cleanup(&mctx);
877     return 0;
878
879 }
880
881 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx, BIO *bio,
882                      PKCS7 *p7, PKCS7_SIGNER_INFO *si)
883 {
884     PKCS7_ISSUER_AND_SERIAL *ias;
885     int ret = 0, i;
886     STACK_OF(X509) *cert;
887     X509 *x509;
888
889     if (PKCS7_type_is_signed(p7)) {
890         cert = p7->d.sign->cert;
891     } else if (PKCS7_type_is_signedAndEnveloped(p7)) {
892         cert = p7->d.signed_and_enveloped->cert;
893     } else {
894         PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, PKCS7_R_WRONG_PKCS7_TYPE);
895         goto err;
896     }
897     /* XXXXXXXXXXXXXXXXXXXXXXX */
898     ias = si->issuer_and_serial;
899
900     x509 = X509_find_by_issuer_and_serial(cert, ias->issuer, ias->serial);
901
902     /* were we able to find the cert in passed to us */
903     if (x509 == NULL) {
904         PKCS7err(PKCS7_F_PKCS7_DATAVERIFY,
905                  PKCS7_R_UNABLE_TO_FIND_CERTIFICATE);
906         goto err;
907     }
908
909     /* Lets verify */
910     if (!X509_STORE_CTX_init(ctx, cert_store, x509, cert)) {
911         PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, ERR_R_X509_LIB);
912         goto err;
913     }
914     X509_STORE_CTX_set_purpose(ctx, X509_PURPOSE_SMIME_SIGN);
915     i = X509_verify_cert(ctx);
916     if (i <= 0) {
917         PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, ERR_R_X509_LIB);
918         X509_STORE_CTX_cleanup(ctx);
919         goto err;
920     }
921     X509_STORE_CTX_cleanup(ctx);
922
923     return PKCS7_signatureVerify(bio, p7, si, x509);
924  err:
925     return ret;
926 }
927
928 int PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si,
929                           X509 *x509)
930 {
931     ASN1_OCTET_STRING *os;
932     EVP_MD_CTX mdc_tmp, *mdc;
933     int ret = 0, i;
934     int md_type;
935     STACK_OF(X509_ATTRIBUTE) *sk;
936     BIO *btmp;
937     EVP_PKEY *pkey;
938
939     EVP_MD_CTX_init(&mdc_tmp);
940
941     if (!PKCS7_type_is_signed(p7) && !PKCS7_type_is_signedAndEnveloped(p7)) {
942         PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, PKCS7_R_WRONG_PKCS7_TYPE);
943         goto err;
944     }
945
946     md_type = OBJ_obj2nid(si->digest_alg->algorithm);
947
948     btmp = bio;
949     for (;;) {
950         if ((btmp == NULL) ||
951             ((btmp = BIO_find_type(btmp, BIO_TYPE_MD)) == NULL)) {
952             PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY,
953                      PKCS7_R_UNABLE_TO_FIND_MESSAGE_DIGEST);
954             goto err;
955         }
956         BIO_get_md_ctx(btmp, &mdc);
957         if (mdc == NULL) {
958             PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, ERR_R_INTERNAL_ERROR);
959             goto err;
960         }
961         if (EVP_MD_CTX_type(mdc) == md_type)
962             break;
963         /*
964          * Workaround for some broken clients that put the signature OID
965          * instead of the digest OID in digest_alg->algorithm
966          */
967         if (EVP_MD_pkey_type(EVP_MD_CTX_md(mdc)) == md_type)
968             break;
969         btmp = BIO_next(btmp);
970     }
971
972     /*
973      * mdc is the digest ctx that we want, unless there are attributes, in
974      * which case the digest is the signed attributes
975      */
976     if (!EVP_MD_CTX_copy_ex(&mdc_tmp, mdc))
977         goto err;
978
979     sk = si->auth_attr;
980     if ((sk != NULL) && (sk_X509_ATTRIBUTE_num(sk) != 0)) {
981         unsigned char md_dat[EVP_MAX_MD_SIZE], *abuf = NULL;
982         unsigned int md_len;
983         int alen;
984         ASN1_OCTET_STRING *message_digest;
985
986         if (!EVP_DigestFinal_ex(&mdc_tmp, md_dat, &md_len))
987             goto err;
988         message_digest = PKCS7_digest_from_attributes(sk);
989         if (!message_digest) {
990             PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY,
991                      PKCS7_R_UNABLE_TO_FIND_MESSAGE_DIGEST);
992             goto err;
993         }
994         if ((message_digest->length != (int)md_len) ||
995             (memcmp(message_digest->data, md_dat, md_len))) {
996             PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, PKCS7_R_DIGEST_FAILURE);
997             ret = -1;
998             goto err;
999         }
1000
1001         if (!EVP_VerifyInit_ex(&mdc_tmp, EVP_get_digestbynid(md_type), NULL))
1002             goto err;
1003
1004         alen = ASN1_item_i2d((ASN1_VALUE *)sk, &abuf,
1005                              ASN1_ITEM_rptr(PKCS7_ATTR_VERIFY));
1006         if (alen <= 0) {
1007             PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, ERR_R_ASN1_LIB);
1008             ret = -1;
1009             goto err;
1010         }
1011         if (!EVP_VerifyUpdate(&mdc_tmp, abuf, alen))
1012             goto err;
1013
1014         OPENSSL_free(abuf);
1015     }
1016
1017     os = si->enc_digest;
1018     pkey = X509_get_pubkey(x509);
1019     if (!pkey) {
1020         ret = -1;
1021         goto err;
1022     }
1023
1024     i = EVP_VerifyFinal(&mdc_tmp, os->data, os->length, pkey);
1025     EVP_PKEY_free(pkey);
1026     if (i <= 0) {
1027         PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, PKCS7_R_SIGNATURE_FAILURE);
1028         ret = -1;
1029         goto err;
1030     } else
1031         ret = 1;
1032  err:
1033     EVP_MD_CTX_cleanup(&mdc_tmp);
1034     return (ret);
1035 }
1036
1037 PKCS7_ISSUER_AND_SERIAL *PKCS7_get_issuer_and_serial(PKCS7 *p7, int idx)
1038 {
1039     STACK_OF(PKCS7_RECIP_INFO) *rsk;
1040     PKCS7_RECIP_INFO *ri;
1041     int i;
1042
1043     i = OBJ_obj2nid(p7->type);
1044     if (i != NID_pkcs7_signedAndEnveloped)
1045         return NULL;
1046     if (p7->d.signed_and_enveloped == NULL)
1047         return NULL;
1048     rsk = p7->d.signed_and_enveloped->recipientinfo;
1049     if (rsk == NULL)
1050         return NULL;
1051     ri = sk_PKCS7_RECIP_INFO_value(rsk, 0);
1052     if (sk_PKCS7_RECIP_INFO_num(rsk) <= idx)
1053         return (NULL);
1054     ri = sk_PKCS7_RECIP_INFO_value(rsk, idx);
1055     return (ri->issuer_and_serial);
1056 }
1057
1058 ASN1_TYPE *PKCS7_get_signed_attribute(PKCS7_SIGNER_INFO *si, int nid)
1059 {
1060     return (get_attribute(si->auth_attr, nid));
1061 }
1062
1063 ASN1_TYPE *PKCS7_get_attribute(PKCS7_SIGNER_INFO *si, int nid)
1064 {
1065     return (get_attribute(si->unauth_attr, nid));
1066 }
1067
1068 static ASN1_TYPE *get_attribute(STACK_OF(X509_ATTRIBUTE) *sk, int nid)
1069 {
1070     int idx;
1071     X509_ATTRIBUTE *xa;
1072     idx = X509at_get_attr_by_NID(sk, nid, -1);
1073     xa = X509at_get_attr(sk, idx);
1074     return X509_ATTRIBUTE_get0_type(xa, 0);
1075 }
1076
1077 ASN1_OCTET_STRING *PKCS7_digest_from_attributes(STACK_OF(X509_ATTRIBUTE) *sk)
1078 {
1079     ASN1_TYPE *astype;
1080     if (!(astype = get_attribute(sk, NID_pkcs9_messageDigest)))
1081         return NULL;
1082     return astype->value.octet_string;
1083 }
1084
1085 int PKCS7_set_signed_attributes(PKCS7_SIGNER_INFO *p7si,
1086                                 STACK_OF(X509_ATTRIBUTE) *sk)
1087 {
1088     int i;
1089
1090     if (p7si->auth_attr != NULL)
1091         sk_X509_ATTRIBUTE_pop_free(p7si->auth_attr, X509_ATTRIBUTE_free);
1092     p7si->auth_attr = sk_X509_ATTRIBUTE_dup(sk);
1093     if (p7si->auth_attr == NULL)
1094         return 0;
1095     for (i = 0; i < sk_X509_ATTRIBUTE_num(sk); i++) {
1096         if ((sk_X509_ATTRIBUTE_set(p7si->auth_attr, i,
1097                                    X509_ATTRIBUTE_dup(sk_X509_ATTRIBUTE_value
1098                                                       (sk, i))))
1099             == NULL)
1100             return (0);
1101     }
1102     return (1);
1103 }
1104
1105 int PKCS7_set_attributes(PKCS7_SIGNER_INFO *p7si,
1106                          STACK_OF(X509_ATTRIBUTE) *sk)
1107 {
1108     int i;
1109
1110     if (p7si->unauth_attr != NULL)
1111         sk_X509_ATTRIBUTE_pop_free(p7si->unauth_attr, X509_ATTRIBUTE_free);
1112     p7si->unauth_attr = sk_X509_ATTRIBUTE_dup(sk);
1113     if (p7si->unauth_attr == NULL)
1114         return 0;
1115     for (i = 0; i < sk_X509_ATTRIBUTE_num(sk); i++) {
1116         if ((sk_X509_ATTRIBUTE_set(p7si->unauth_attr, i,
1117                                    X509_ATTRIBUTE_dup(sk_X509_ATTRIBUTE_value
1118                                                       (sk, i))))
1119             == NULL)
1120             return (0);
1121     }
1122     return (1);
1123 }
1124
1125 int PKCS7_add_signed_attribute(PKCS7_SIGNER_INFO *p7si, int nid, int atrtype,
1126                                void *value)
1127 {
1128     return (add_attribute(&(p7si->auth_attr), nid, atrtype, value));
1129 }
1130
1131 int PKCS7_add_attribute(PKCS7_SIGNER_INFO *p7si, int nid, int atrtype,
1132                         void *value)
1133 {
1134     return (add_attribute(&(p7si->unauth_attr), nid, atrtype, value));
1135 }
1136
1137 static int add_attribute(STACK_OF(X509_ATTRIBUTE) **sk, int nid, int atrtype,
1138                          void *value)
1139 {
1140     X509_ATTRIBUTE *attr = NULL;
1141
1142     if (*sk == NULL) {
1143         *sk = sk_X509_ATTRIBUTE_new_null();
1144         if (*sk == NULL)
1145             return 0;
1146  new_attrib:
1147         if (!(attr = X509_ATTRIBUTE_create(nid, atrtype, value)))
1148             return 0;
1149         if (!sk_X509_ATTRIBUTE_push(*sk, attr)) {
1150             X509_ATTRIBUTE_free(attr);
1151             return 0;
1152         }
1153     } else {
1154         int i;
1155
1156         for (i = 0; i < sk_X509_ATTRIBUTE_num(*sk); i++) {
1157             attr = sk_X509_ATTRIBUTE_value(*sk, i);
1158             if (OBJ_obj2nid(X509_ATTRIBUTE_get0_object(attr)) == nid) {
1159                 X509_ATTRIBUTE_free(attr);
1160                 attr = X509_ATTRIBUTE_create(nid, atrtype, value);
1161                 if (attr == NULL)
1162                     return 0;
1163                 if (!sk_X509_ATTRIBUTE_set(*sk, i, attr)) {
1164                     X509_ATTRIBUTE_free(attr);
1165                     return 0;
1166                 }
1167                 goto end;
1168             }
1169         }
1170         goto new_attrib;
1171     }
1172  end:
1173     return (1);
1174 }