Fix segfault with empty fields as last in the config.
[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 0
483         unsigned char key[EVP_MAX_KEY_LENGTH];
484         unsigned char iv[EVP_MAX_IV_LENGTH];
485         unsigned char *p;
486         int keylen, ivlen;
487         int max;
488         X509_OBJECT ret;
489 #endif
490
491         if ((etmp = BIO_new(BIO_f_cipher())) == NULL) {
492             PKCS7err(PKCS7_F_PKCS7_DATADECODE, ERR_R_BIO_LIB);
493             goto err;
494         }
495
496         /*
497          * It was encrypted, we need to decrypt the secret key with the
498          * private key
499          */
500
501         /*
502          * Find the recipientInfo which matches the passed certificate (if
503          * any)
504          */
505
506         if (pcert) {
507             for (i = 0; i < sk_PKCS7_RECIP_INFO_num(rsk); i++) {
508                 ri = sk_PKCS7_RECIP_INFO_value(rsk, i);
509                 if (!pkcs7_cmp_ri(ri, pcert))
510                     break;
511                 ri = NULL;
512             }
513             if (ri == NULL) {
514                 PKCS7err(PKCS7_F_PKCS7_DATADECODE,
515                          PKCS7_R_NO_RECIPIENT_MATCHES_CERTIFICATE);
516                 goto err;
517             }
518         }
519
520         /* If we haven't got a certificate try each ri in turn */
521         if (pcert == NULL) {
522             /*
523              * Always attempt to decrypt all rinfo even after sucess as a
524              * defence against MMA timing attacks.
525              */
526             for (i = 0; i < sk_PKCS7_RECIP_INFO_num(rsk); i++) {
527                 ri = sk_PKCS7_RECIP_INFO_value(rsk, i);
528
529                 if (pkcs7_decrypt_rinfo(&ek, &eklen, ri, pkey) < 0)
530                     goto err;
531                 ERR_clear_error();
532             }
533         } else {
534             /* Only exit on fatal errors, not decrypt failure */
535             if (pkcs7_decrypt_rinfo(&ek, &eklen, ri, pkey) < 0)
536                 goto err;
537             ERR_clear_error();
538         }
539
540         evp_ctx = NULL;
541         BIO_get_cipher_ctx(etmp, &evp_ctx);
542         if (EVP_CipherInit_ex(evp_ctx, evp_cipher, NULL, NULL, NULL, 0) <= 0)
543             goto err;
544         if (EVP_CIPHER_asn1_to_param(evp_ctx, enc_alg->parameter) < 0)
545             goto err;
546         /* Generate random key as MMA defence */
547         tkeylen = EVP_CIPHER_CTX_key_length(evp_ctx);
548         tkey = OPENSSL_malloc(tkeylen);
549         if (!tkey)
550             goto err;
551         if (EVP_CIPHER_CTX_rand_key(evp_ctx, tkey) <= 0)
552             goto err;
553         if (ek == NULL) {
554             ek = tkey;
555             eklen = tkeylen;
556             tkey = NULL;
557         }
558
559         if (eklen != EVP_CIPHER_CTX_key_length(evp_ctx)) {
560             /*
561              * Some S/MIME clients don't use the same key and effective key
562              * length. The key length is determined by the size of the
563              * decrypted RSA key.
564              */
565             if (!EVP_CIPHER_CTX_set_key_length(evp_ctx, eklen)) {
566                 /* Use random key as MMA defence */
567                 OPENSSL_cleanse(ek, eklen);
568                 OPENSSL_free(ek);
569                 ek = tkey;
570                 eklen = tkeylen;
571                 tkey = NULL;
572             }
573         }
574         /* Clear errors so we don't leak information useful in MMA */
575         ERR_clear_error();
576         if (EVP_CipherInit_ex(evp_ctx, NULL, NULL, ek, NULL, 0) <= 0)
577             goto err;
578
579         if (ek) {
580             OPENSSL_cleanse(ek, eklen);
581             OPENSSL_free(ek);
582             ek = NULL;
583         }
584         if (tkey) {
585             OPENSSL_cleanse(tkey, tkeylen);
586             OPENSSL_free(tkey);
587             tkey = NULL;
588         }
589
590         if (out == NULL)
591             out = etmp;
592         else
593             BIO_push(out, etmp);
594         etmp = NULL;
595     }
596 #if 1
597     if (PKCS7_is_detached(p7) || (in_bio != NULL)) {
598         bio = in_bio;
599     } else {
600 # if 0
601         bio = BIO_new(BIO_s_mem());
602         /*
603          * We need to set this so that when we have read all the data, the
604          * encrypt BIO, if present, will read EOF and encode the last few
605          * bytes
606          */
607         BIO_set_mem_eof_return(bio, 0);
608
609         if (data_body->length > 0)
610             BIO_write(bio, (char *)data_body->data, data_body->length);
611 # else
612         if (data_body->length > 0)
613             bio = BIO_new_mem_buf(data_body->data, data_body->length);
614         else {
615             bio = BIO_new(BIO_s_mem());
616             BIO_set_mem_eof_return(bio, 0);
617         }
618         if (bio == NULL)
619             goto err;
620 # endif
621     }
622     BIO_push(out, bio);
623     bio = NULL;
624 #endif
625     if (0) {
626  err:
627         if (ek) {
628             OPENSSL_cleanse(ek, eklen);
629             OPENSSL_free(ek);
630         }
631         if (tkey) {
632             OPENSSL_cleanse(tkey, tkeylen);
633             OPENSSL_free(tkey);
634         }
635         if (out != NULL)
636             BIO_free_all(out);
637         if (btmp != NULL)
638             BIO_free_all(btmp);
639         if (etmp != NULL)
640             BIO_free_all(etmp);
641         if (bio != NULL)
642             BIO_free_all(bio);
643         out = NULL;
644     }
645     return (out);
646 }
647
648 static BIO *PKCS7_find_digest(EVP_MD_CTX **pmd, BIO *bio, int nid)
649 {
650     for (;;) {
651         bio = BIO_find_type(bio, BIO_TYPE_MD);
652         if (bio == NULL) {
653             PKCS7err(PKCS7_F_PKCS7_FIND_DIGEST,
654                      PKCS7_R_UNABLE_TO_FIND_MESSAGE_DIGEST);
655             return NULL;
656         }
657         BIO_get_md_ctx(bio, pmd);
658         if (*pmd == NULL) {
659             PKCS7err(PKCS7_F_PKCS7_FIND_DIGEST, ERR_R_INTERNAL_ERROR);
660             return NULL;
661         }
662         if (EVP_MD_CTX_type(*pmd) == nid)
663             return bio;
664         bio = BIO_next(bio);
665     }
666     return NULL;
667 }
668
669 static int do_pkcs7_signed_attrib(PKCS7_SIGNER_INFO *si, EVP_MD_CTX *mctx)
670 {
671     unsigned char md_data[EVP_MAX_MD_SIZE];
672     unsigned int md_len;
673
674     /* Add signing time if not already present */
675     if (!PKCS7_get_signed_attribute(si, NID_pkcs9_signingTime)) {
676         if (!PKCS7_add0_attrib_signing_time(si, NULL)) {
677             PKCS7err(PKCS7_F_DO_PKCS7_SIGNED_ATTRIB, ERR_R_MALLOC_FAILURE);
678             return 0;
679         }
680     }
681
682     /* Add digest */
683     if (!EVP_DigestFinal_ex(mctx, md_data, &md_len)) {
684         PKCS7err(PKCS7_F_DO_PKCS7_SIGNED_ATTRIB, ERR_R_EVP_LIB);
685         return 0;
686     }
687     if (!PKCS7_add1_attrib_digest(si, md_data, md_len)) {
688         PKCS7err(PKCS7_F_DO_PKCS7_SIGNED_ATTRIB, ERR_R_MALLOC_FAILURE);
689         return 0;
690     }
691
692     /* Now sign the attributes */
693     if (!PKCS7_SIGNER_INFO_sign(si))
694         return 0;
695
696     return 1;
697 }
698
699 int PKCS7_dataFinal(PKCS7 *p7, BIO *bio)
700 {
701     int ret = 0;
702     int i, j;
703     BIO *btmp;
704     PKCS7_SIGNER_INFO *si;
705     EVP_MD_CTX *mdc, ctx_tmp;
706     STACK_OF(X509_ATTRIBUTE) *sk;
707     STACK_OF(PKCS7_SIGNER_INFO) *si_sk = NULL;
708     ASN1_OCTET_STRING *os = NULL;
709
710     EVP_MD_CTX_init(&ctx_tmp);
711     i = OBJ_obj2nid(p7->type);
712     p7->state = PKCS7_S_HEADER;
713
714     switch (i) {
715     case NID_pkcs7_data:
716         os = p7->d.data;
717         break;
718     case NID_pkcs7_signedAndEnveloped:
719         /* XXXXXXXXXXXXXXXX */
720         si_sk = p7->d.signed_and_enveloped->signer_info;
721         os = p7->d.signed_and_enveloped->enc_data->enc_data;
722         if (!os) {
723             os = M_ASN1_OCTET_STRING_new();
724             if (!os) {
725                 PKCS7err(PKCS7_F_PKCS7_DATAFINAL, ERR_R_MALLOC_FAILURE);
726                 goto err;
727             }
728             p7->d.signed_and_enveloped->enc_data->enc_data = os;
729         }
730         break;
731     case NID_pkcs7_enveloped:
732         /* XXXXXXXXXXXXXXXX */
733         os = p7->d.enveloped->enc_data->enc_data;
734         if (!os) {
735             os = M_ASN1_OCTET_STRING_new();
736             if (!os) {
737                 PKCS7err(PKCS7_F_PKCS7_DATAFINAL, ERR_R_MALLOC_FAILURE);
738                 goto err;
739             }
740             p7->d.enveloped->enc_data->enc_data = os;
741         }
742         break;
743     case NID_pkcs7_signed:
744         si_sk = p7->d.sign->signer_info;
745         os = PKCS7_get_octet_string(p7->d.sign->contents);
746         /* If detached data then the content is excluded */
747         if (PKCS7_type_is_data(p7->d.sign->contents) && p7->detached) {
748             M_ASN1_OCTET_STRING_free(os);
749             p7->d.sign->contents->d.data = NULL;
750         }
751         break;
752
753     case NID_pkcs7_digest:
754         os = PKCS7_get_octet_string(p7->d.digest->contents);
755         /* If detached data then the content is excluded */
756         if (PKCS7_type_is_data(p7->d.digest->contents) && p7->detached) {
757             M_ASN1_OCTET_STRING_free(os);
758             p7->d.digest->contents->d.data = NULL;
759         }
760         break;
761
762     default:
763         PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_UNSUPPORTED_CONTENT_TYPE);
764         goto err;
765     }
766
767     if (si_sk != NULL) {
768         for (i = 0; i < sk_PKCS7_SIGNER_INFO_num(si_sk); i++) {
769             si = sk_PKCS7_SIGNER_INFO_value(si_sk, i);
770             if (si->pkey == NULL)
771                 continue;
772
773             j = OBJ_obj2nid(si->digest_alg->algorithm);
774
775             btmp = bio;
776
777             btmp = PKCS7_find_digest(&mdc, btmp, j);
778
779             if (btmp == NULL)
780                 goto err;
781
782             /*
783              * We now have the EVP_MD_CTX, lets do the signing.
784              */
785             if (!EVP_MD_CTX_copy_ex(&ctx_tmp, mdc))
786                 goto err;
787
788             sk = si->auth_attr;
789
790             /*
791              * If there are attributes, we add the digest attribute and only
792              * sign the attributes
793              */
794             if (sk_X509_ATTRIBUTE_num(sk) > 0) {
795                 if (!do_pkcs7_signed_attrib(si, &ctx_tmp))
796                     goto err;
797             } else {
798                 unsigned char *abuf = NULL;
799                 unsigned int abuflen;
800                 abuflen = EVP_PKEY_size(si->pkey);
801                 abuf = OPENSSL_malloc(abuflen);
802                 if (!abuf)
803                     goto err;
804
805                 if (!EVP_SignFinal(&ctx_tmp, abuf, &abuflen, si->pkey)) {
806                     PKCS7err(PKCS7_F_PKCS7_DATAFINAL, ERR_R_EVP_LIB);
807                     goto err;
808                 }
809                 ASN1_STRING_set0(si->enc_digest, abuf, abuflen);
810             }
811         }
812     } else if (i == NID_pkcs7_digest) {
813         unsigned char md_data[EVP_MAX_MD_SIZE];
814         unsigned int md_len;
815         if (!PKCS7_find_digest(&mdc, bio,
816                                OBJ_obj2nid(p7->d.digest->md->algorithm)))
817             goto err;
818         if (!EVP_DigestFinal_ex(mdc, md_data, &md_len))
819             goto err;
820         M_ASN1_OCTET_STRING_set(p7->d.digest->digest, md_data, md_len);
821     }
822
823     if (!PKCS7_is_detached(p7) && !(os->flags & ASN1_STRING_FLAG_NDEF)) {
824         char *cont;
825         long contlen;
826         btmp = BIO_find_type(bio, BIO_TYPE_MEM);
827         if (btmp == NULL) {
828             PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_UNABLE_TO_FIND_MEM_BIO);
829             goto err;
830         }
831         contlen = BIO_get_mem_data(btmp, &cont);
832         /*
833          * Mark the BIO read only then we can use its copy of the data
834          * instead of making an extra copy.
835          */
836         BIO_set_flags(btmp, BIO_FLAGS_MEM_RDONLY);
837         BIO_set_mem_eof_return(btmp, 0);
838         ASN1_STRING_set0(os, (unsigned char *)cont, contlen);
839     }
840     ret = 1;
841  err:
842     EVP_MD_CTX_cleanup(&ctx_tmp);
843     return (ret);
844 }
845
846 int PKCS7_SIGNER_INFO_sign(PKCS7_SIGNER_INFO *si)
847 {
848     EVP_MD_CTX mctx;
849     EVP_PKEY_CTX *pctx;
850     unsigned char *abuf = NULL;
851     int alen;
852     size_t siglen;
853     const EVP_MD *md = NULL;
854
855     md = EVP_get_digestbyobj(si->digest_alg->algorithm);
856     if (md == NULL)
857         return 0;
858
859     EVP_MD_CTX_init(&mctx);
860     if (EVP_DigestSignInit(&mctx, &pctx, md, NULL, si->pkey) <= 0)
861         goto err;
862
863     if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_SIGN,
864                           EVP_PKEY_CTRL_PKCS7_SIGN, 0, si) <= 0) {
865         PKCS7err(PKCS7_F_PKCS7_SIGNER_INFO_SIGN, PKCS7_R_CTRL_ERROR);
866         goto err;
867     }
868
869     alen = ASN1_item_i2d((ASN1_VALUE *)si->auth_attr, &abuf,
870                          ASN1_ITEM_rptr(PKCS7_ATTR_SIGN));
871     if (!abuf)
872         goto err;
873     if (EVP_DigestSignUpdate(&mctx, abuf, alen) <= 0)
874         goto err;
875     OPENSSL_free(abuf);
876     abuf = NULL;
877     if (EVP_DigestSignFinal(&mctx, NULL, &siglen) <= 0)
878         goto err;
879     abuf = OPENSSL_malloc(siglen);
880     if (!abuf)
881         goto err;
882     if (EVP_DigestSignFinal(&mctx, abuf, &siglen) <= 0)
883         goto err;
884
885     if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_SIGN,
886                           EVP_PKEY_CTRL_PKCS7_SIGN, 1, si) <= 0) {
887         PKCS7err(PKCS7_F_PKCS7_SIGNER_INFO_SIGN, PKCS7_R_CTRL_ERROR);
888         goto err;
889     }
890
891     EVP_MD_CTX_cleanup(&mctx);
892
893     ASN1_STRING_set0(si->enc_digest, abuf, siglen);
894
895     return 1;
896
897  err:
898     if (abuf)
899         OPENSSL_free(abuf);
900     EVP_MD_CTX_cleanup(&mctx);
901     return 0;
902
903 }
904
905 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx, BIO *bio,
906                      PKCS7 *p7, PKCS7_SIGNER_INFO *si)
907 {
908     PKCS7_ISSUER_AND_SERIAL *ias;
909     int ret = 0, i;
910     STACK_OF(X509) *cert;
911     X509 *x509;
912
913     if (PKCS7_type_is_signed(p7)) {
914         cert = p7->d.sign->cert;
915     } else if (PKCS7_type_is_signedAndEnveloped(p7)) {
916         cert = p7->d.signed_and_enveloped->cert;
917     } else {
918         PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, PKCS7_R_WRONG_PKCS7_TYPE);
919         goto err;
920     }
921     /* XXXXXXXXXXXXXXXXXXXXXXX */
922     ias = si->issuer_and_serial;
923
924     x509 = X509_find_by_issuer_and_serial(cert, ias->issuer, ias->serial);
925
926     /* were we able to find the cert in passed to us */
927     if (x509 == NULL) {
928         PKCS7err(PKCS7_F_PKCS7_DATAVERIFY,
929                  PKCS7_R_UNABLE_TO_FIND_CERTIFICATE);
930         goto err;
931     }
932
933     /* Lets verify */
934     if (!X509_STORE_CTX_init(ctx, cert_store, x509, cert)) {
935         PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, ERR_R_X509_LIB);
936         goto err;
937     }
938     X509_STORE_CTX_set_purpose(ctx, X509_PURPOSE_SMIME_SIGN);
939     i = X509_verify_cert(ctx);
940     if (i <= 0) {
941         PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, ERR_R_X509_LIB);
942         X509_STORE_CTX_cleanup(ctx);
943         goto err;
944     }
945     X509_STORE_CTX_cleanup(ctx);
946
947     return PKCS7_signatureVerify(bio, p7, si, x509);
948  err:
949     return ret;
950 }
951
952 int PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si,
953                           X509 *x509)
954 {
955     ASN1_OCTET_STRING *os;
956     EVP_MD_CTX mdc_tmp, *mdc;
957     int ret = 0, i;
958     int md_type;
959     STACK_OF(X509_ATTRIBUTE) *sk;
960     BIO *btmp;
961     EVP_PKEY *pkey;
962
963     EVP_MD_CTX_init(&mdc_tmp);
964
965     if (!PKCS7_type_is_signed(p7) && !PKCS7_type_is_signedAndEnveloped(p7)) {
966         PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, PKCS7_R_WRONG_PKCS7_TYPE);
967         goto err;
968     }
969
970     md_type = OBJ_obj2nid(si->digest_alg->algorithm);
971
972     btmp = bio;
973     for (;;) {
974         if ((btmp == NULL) ||
975             ((btmp = BIO_find_type(btmp, BIO_TYPE_MD)) == NULL)) {
976             PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY,
977                      PKCS7_R_UNABLE_TO_FIND_MESSAGE_DIGEST);
978             goto err;
979         }
980         BIO_get_md_ctx(btmp, &mdc);
981         if (mdc == NULL) {
982             PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, ERR_R_INTERNAL_ERROR);
983             goto err;
984         }
985         if (EVP_MD_CTX_type(mdc) == md_type)
986             break;
987         /*
988          * Workaround for some broken clients that put the signature OID
989          * instead of the digest OID in digest_alg->algorithm
990          */
991         if (EVP_MD_pkey_type(EVP_MD_CTX_md(mdc)) == md_type)
992             break;
993         btmp = BIO_next(btmp);
994     }
995
996     /*
997      * mdc is the digest ctx that we want, unless there are attributes, in
998      * which case the digest is the signed attributes
999      */
1000     if (!EVP_MD_CTX_copy_ex(&mdc_tmp, mdc))
1001         goto err;
1002
1003     sk = si->auth_attr;
1004     if ((sk != NULL) && (sk_X509_ATTRIBUTE_num(sk) != 0)) {
1005         unsigned char md_dat[EVP_MAX_MD_SIZE], *abuf = NULL;
1006         unsigned int md_len;
1007         int alen;
1008         ASN1_OCTET_STRING *message_digest;
1009
1010         if (!EVP_DigestFinal_ex(&mdc_tmp, md_dat, &md_len))
1011             goto err;
1012         message_digest = PKCS7_digest_from_attributes(sk);
1013         if (!message_digest) {
1014             PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY,
1015                      PKCS7_R_UNABLE_TO_FIND_MESSAGE_DIGEST);
1016             goto err;
1017         }
1018         if ((message_digest->length != (int)md_len) ||
1019             (memcmp(message_digest->data, md_dat, md_len))) {
1020 #if 0
1021             {
1022                 int ii;
1023                 for (ii = 0; ii < message_digest->length; ii++)
1024                     printf("%02X", message_digest->data[ii]);
1025                 printf(" sent\n");
1026                 for (ii = 0; ii < md_len; ii++)
1027                     printf("%02X", md_dat[ii]);
1028                 printf(" calc\n");
1029             }
1030 #endif
1031             PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, PKCS7_R_DIGEST_FAILURE);
1032             ret = -1;
1033             goto err;
1034         }
1035
1036         if (!EVP_VerifyInit_ex(&mdc_tmp, EVP_get_digestbynid(md_type), NULL))
1037             goto err;
1038
1039         alen = ASN1_item_i2d((ASN1_VALUE *)sk, &abuf,
1040                              ASN1_ITEM_rptr(PKCS7_ATTR_VERIFY));
1041         if (alen <= 0) {
1042             PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, ERR_R_ASN1_LIB);
1043             ret = -1;
1044             goto err;
1045         }
1046         if (!EVP_VerifyUpdate(&mdc_tmp, abuf, alen))
1047             goto err;
1048
1049         OPENSSL_free(abuf);
1050     }
1051
1052     os = si->enc_digest;
1053     pkey = X509_get_pubkey(x509);
1054     if (!pkey) {
1055         ret = -1;
1056         goto err;
1057     }
1058
1059     i = EVP_VerifyFinal(&mdc_tmp, os->data, os->length, pkey);
1060     EVP_PKEY_free(pkey);
1061     if (i <= 0) {
1062         PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, PKCS7_R_SIGNATURE_FAILURE);
1063         ret = -1;
1064         goto err;
1065     } else
1066         ret = 1;
1067  err:
1068     EVP_MD_CTX_cleanup(&mdc_tmp);
1069     return (ret);
1070 }
1071
1072 PKCS7_ISSUER_AND_SERIAL *PKCS7_get_issuer_and_serial(PKCS7 *p7, int idx)
1073 {
1074     STACK_OF(PKCS7_RECIP_INFO) *rsk;
1075     PKCS7_RECIP_INFO *ri;
1076     int i;
1077
1078     i = OBJ_obj2nid(p7->type);
1079     if (i != NID_pkcs7_signedAndEnveloped)
1080         return NULL;
1081     if (p7->d.signed_and_enveloped == NULL)
1082         return NULL;
1083     rsk = p7->d.signed_and_enveloped->recipientinfo;
1084     if (rsk == NULL)
1085         return NULL;
1086     ri = sk_PKCS7_RECIP_INFO_value(rsk, 0);
1087     if (sk_PKCS7_RECIP_INFO_num(rsk) <= idx)
1088         return (NULL);
1089     ri = sk_PKCS7_RECIP_INFO_value(rsk, idx);
1090     return (ri->issuer_and_serial);
1091 }
1092
1093 ASN1_TYPE *PKCS7_get_signed_attribute(PKCS7_SIGNER_INFO *si, int nid)
1094 {
1095     return (get_attribute(si->auth_attr, nid));
1096 }
1097
1098 ASN1_TYPE *PKCS7_get_attribute(PKCS7_SIGNER_INFO *si, int nid)
1099 {
1100     return (get_attribute(si->unauth_attr, nid));
1101 }
1102
1103 static ASN1_TYPE *get_attribute(STACK_OF(X509_ATTRIBUTE) *sk, int nid)
1104 {
1105     int i;
1106     X509_ATTRIBUTE *xa;
1107     ASN1_OBJECT *o;
1108
1109     o = OBJ_nid2obj(nid);
1110     if (!o || !sk)
1111         return (NULL);
1112     for (i = 0; i < sk_X509_ATTRIBUTE_num(sk); i++) {
1113         xa = sk_X509_ATTRIBUTE_value(sk, i);
1114         if (OBJ_cmp(xa->object, o) == 0) {
1115             if (!xa->single && sk_ASN1_TYPE_num(xa->value.set))
1116                 return (sk_ASN1_TYPE_value(xa->value.set, 0));
1117             else
1118                 return (NULL);
1119         }
1120     }
1121     return (NULL);
1122 }
1123
1124 ASN1_OCTET_STRING *PKCS7_digest_from_attributes(STACK_OF(X509_ATTRIBUTE) *sk)
1125 {
1126     ASN1_TYPE *astype;
1127     if (!(astype = get_attribute(sk, NID_pkcs9_messageDigest)))
1128         return NULL;
1129     return astype->value.octet_string;
1130 }
1131
1132 int PKCS7_set_signed_attributes(PKCS7_SIGNER_INFO *p7si,
1133                                 STACK_OF(X509_ATTRIBUTE) *sk)
1134 {
1135     int i;
1136
1137     if (p7si->auth_attr != NULL)
1138         sk_X509_ATTRIBUTE_pop_free(p7si->auth_attr, X509_ATTRIBUTE_free);
1139     p7si->auth_attr = sk_X509_ATTRIBUTE_dup(sk);
1140     if (p7si->auth_attr == NULL)
1141         return 0;
1142     for (i = 0; i < sk_X509_ATTRIBUTE_num(sk); i++) {
1143         if ((sk_X509_ATTRIBUTE_set(p7si->auth_attr, i,
1144                                    X509_ATTRIBUTE_dup(sk_X509_ATTRIBUTE_value
1145                                                       (sk, i))))
1146             == NULL)
1147             return (0);
1148     }
1149     return (1);
1150 }
1151
1152 int PKCS7_set_attributes(PKCS7_SIGNER_INFO *p7si,
1153                          STACK_OF(X509_ATTRIBUTE) *sk)
1154 {
1155     int i;
1156
1157     if (p7si->unauth_attr != NULL)
1158         sk_X509_ATTRIBUTE_pop_free(p7si->unauth_attr, X509_ATTRIBUTE_free);
1159     p7si->unauth_attr = sk_X509_ATTRIBUTE_dup(sk);
1160     if (p7si->unauth_attr == NULL)
1161         return 0;
1162     for (i = 0; i < sk_X509_ATTRIBUTE_num(sk); i++) {
1163         if ((sk_X509_ATTRIBUTE_set(p7si->unauth_attr, i,
1164                                    X509_ATTRIBUTE_dup(sk_X509_ATTRIBUTE_value
1165                                                       (sk, i))))
1166             == NULL)
1167             return (0);
1168     }
1169     return (1);
1170 }
1171
1172 int PKCS7_add_signed_attribute(PKCS7_SIGNER_INFO *p7si, int nid, int atrtype,
1173                                void *value)
1174 {
1175     return (add_attribute(&(p7si->auth_attr), nid, atrtype, value));
1176 }
1177
1178 int PKCS7_add_attribute(PKCS7_SIGNER_INFO *p7si, int nid, int atrtype,
1179                         void *value)
1180 {
1181     return (add_attribute(&(p7si->unauth_attr), nid, atrtype, value));
1182 }
1183
1184 static int add_attribute(STACK_OF(X509_ATTRIBUTE) **sk, int nid, int atrtype,
1185                          void *value)
1186 {
1187     X509_ATTRIBUTE *attr = NULL;
1188
1189     if (*sk == NULL) {
1190         *sk = sk_X509_ATTRIBUTE_new_null();
1191         if (*sk == NULL)
1192             return 0;
1193  new_attrib:
1194         if (!(attr = X509_ATTRIBUTE_create(nid, atrtype, value)))
1195             return 0;
1196         if (!sk_X509_ATTRIBUTE_push(*sk, attr)) {
1197             X509_ATTRIBUTE_free(attr);
1198             return 0;
1199         }
1200     } else {
1201         int i;
1202
1203         for (i = 0; i < sk_X509_ATTRIBUTE_num(*sk); i++) {
1204             attr = sk_X509_ATTRIBUTE_value(*sk, i);
1205             if (OBJ_obj2nid(attr->object) == nid) {
1206                 X509_ATTRIBUTE_free(attr);
1207                 attr = X509_ATTRIBUTE_create(nid, atrtype, value);
1208                 if (attr == NULL)
1209                     return 0;
1210                 if (!sk_X509_ATTRIBUTE_set(*sk, i, attr)) {
1211                     X509_ATTRIBUTE_free(attr);
1212                     return 0;
1213                 }
1214                 goto end;
1215             }
1216         }
1217         goto new_attrib;
1218     }
1219  end:
1220     return (1);
1221 }