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