Continue standardising malloc style for libcrypto
[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 == NULL)
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             if (bio == NULL)
618                 goto err;
619             BIO_set_mem_eof_return(bio, 0);
620         }
621         if (bio == NULL)
622             goto err;
623     }
624     BIO_push(out, bio);
625     bio = NULL;
626     return out;
627
628  err:
629     OPENSSL_clear_free(ek, eklen);
630     OPENSSL_clear_free(tkey, tkeylen);
631     BIO_free_all(out);
632     BIO_free_all(btmp);
633     BIO_free_all(etmp);
634     BIO_free_all(bio);
635     return  NULL;
636 }
637
638 static BIO *PKCS7_find_digest(EVP_MD_CTX **pmd, BIO *bio, int nid)
639 {
640     for (;;) {
641         bio = BIO_find_type(bio, BIO_TYPE_MD);
642         if (bio == NULL) {
643             PKCS7err(PKCS7_F_PKCS7_FIND_DIGEST,
644                      PKCS7_R_UNABLE_TO_FIND_MESSAGE_DIGEST);
645             return NULL;
646         }
647         BIO_get_md_ctx(bio, pmd);
648         if (*pmd == NULL) {
649             PKCS7err(PKCS7_F_PKCS7_FIND_DIGEST, ERR_R_INTERNAL_ERROR);
650             return NULL;
651         }
652         if (EVP_MD_CTX_type(*pmd) == nid)
653             return bio;
654         bio = BIO_next(bio);
655     }
656     return NULL;
657 }
658
659 static int do_pkcs7_signed_attrib(PKCS7_SIGNER_INFO *si, EVP_MD_CTX *mctx)
660 {
661     unsigned char md_data[EVP_MAX_MD_SIZE];
662     unsigned int md_len;
663
664     /* Add signing time if not already present */
665     if (!PKCS7_get_signed_attribute(si, NID_pkcs9_signingTime)) {
666         if (!PKCS7_add0_attrib_signing_time(si, NULL)) {
667             PKCS7err(PKCS7_F_DO_PKCS7_SIGNED_ATTRIB, ERR_R_MALLOC_FAILURE);
668             return 0;
669         }
670     }
671
672     /* Add digest */
673     if (!EVP_DigestFinal_ex(mctx, md_data, &md_len)) {
674         PKCS7err(PKCS7_F_DO_PKCS7_SIGNED_ATTRIB, ERR_R_EVP_LIB);
675         return 0;
676     }
677     if (!PKCS7_add1_attrib_digest(si, md_data, md_len)) {
678         PKCS7err(PKCS7_F_DO_PKCS7_SIGNED_ATTRIB, ERR_R_MALLOC_FAILURE);
679         return 0;
680     }
681
682     /* Now sign the attributes */
683     if (!PKCS7_SIGNER_INFO_sign(si))
684         return 0;
685
686     return 1;
687 }
688
689 int PKCS7_dataFinal(PKCS7 *p7, BIO *bio)
690 {
691     int ret = 0;
692     int i, j;
693     BIO *btmp;
694     PKCS7_SIGNER_INFO *si;
695     EVP_MD_CTX *mdc, ctx_tmp;
696     STACK_OF(X509_ATTRIBUTE) *sk;
697     STACK_OF(PKCS7_SIGNER_INFO) *si_sk = NULL;
698     ASN1_OCTET_STRING *os = NULL;
699
700     if (p7 == NULL) {
701         PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_INVALID_NULL_POINTER);
702         return 0;
703     }
704
705     if (p7->d.ptr == NULL) {
706         PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_NO_CONTENT);
707         return 0;
708     }
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 == NULL) {
723             os = ASN1_OCTET_STRING_new();
724             if (os == NULL) {
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 == NULL) {
735             os = ASN1_OCTET_STRING_new();
736             if (os == NULL) {
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             ASN1_OCTET_STRING_free(os);
749             os = NULL;
750             p7->d.sign->contents->d.data = NULL;
751         }
752         break;
753
754     case NID_pkcs7_digest:
755         os = PKCS7_get_octet_string(p7->d.digest->contents);
756         /* If detached data then the content is excluded */
757         if (PKCS7_type_is_data(p7->d.digest->contents) && p7->detached) {
758             ASN1_OCTET_STRING_free(os);
759             os = NULL;
760             p7->d.digest->contents->d.data = NULL;
761         }
762         break;
763
764     default:
765         PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_UNSUPPORTED_CONTENT_TYPE);
766         goto err;
767     }
768
769     if (si_sk != NULL) {
770         for (i = 0; i < sk_PKCS7_SIGNER_INFO_num(si_sk); i++) {
771             si = sk_PKCS7_SIGNER_INFO_value(si_sk, i);
772             if (si->pkey == NULL)
773                 continue;
774
775             j = OBJ_obj2nid(si->digest_alg->algorithm);
776
777             btmp = bio;
778
779             btmp = PKCS7_find_digest(&mdc, btmp, j);
780
781             if (btmp == NULL)
782                 goto err;
783
784             /*
785              * We now have the EVP_MD_CTX, lets do the signing.
786              */
787             if (!EVP_MD_CTX_copy_ex(&ctx_tmp, mdc))
788                 goto err;
789
790             sk = si->auth_attr;
791
792             /*
793              * If there are attributes, we add the digest attribute and only
794              * sign the attributes
795              */
796             if (sk_X509_ATTRIBUTE_num(sk) > 0) {
797                 if (!do_pkcs7_signed_attrib(si, &ctx_tmp))
798                     goto err;
799             } else {
800                 unsigned char *abuf = NULL;
801                 unsigned int abuflen;
802                 abuflen = EVP_PKEY_size(si->pkey);
803                 abuf = OPENSSL_malloc(abuflen);
804                 if (abuf == NULL)
805                     goto err;
806
807                 if (!EVP_SignFinal(&ctx_tmp, abuf, &abuflen, si->pkey)) {
808                     PKCS7err(PKCS7_F_PKCS7_DATAFINAL, ERR_R_EVP_LIB);
809                     goto err;
810                 }
811                 ASN1_STRING_set0(si->enc_digest, abuf, abuflen);
812             }
813         }
814     } else if (i == NID_pkcs7_digest) {
815         unsigned char md_data[EVP_MAX_MD_SIZE];
816         unsigned int md_len;
817         if (!PKCS7_find_digest(&mdc, bio,
818                                OBJ_obj2nid(p7->d.digest->md->algorithm)))
819             goto err;
820         if (!EVP_DigestFinal_ex(mdc, md_data, &md_len))
821             goto err;
822         ASN1_OCTET_STRING_set(p7->d.digest->digest, md_data, md_len);
823     }
824
825     if (!PKCS7_is_detached(p7)) {
826         /*
827          * NOTE(emilia): I think we only reach os == NULL here because detached
828          * digested data support is broken.
829          */
830         if (os == NULL)
831             goto err;
832         if (!(os->flags & ASN1_STRING_FLAG_NDEF)) {
833             char *cont;
834             long contlen;
835             btmp = BIO_find_type(bio, BIO_TYPE_MEM);
836             if (btmp == NULL) {
837                 PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_UNABLE_TO_FIND_MEM_BIO);
838                 goto err;
839             }
840             contlen = BIO_get_mem_data(btmp, &cont);
841             /*
842              * Mark the BIO read only then we can use its copy of the data
843              * instead of making an extra copy.
844              */
845             BIO_set_flags(btmp, BIO_FLAGS_MEM_RDONLY);
846             BIO_set_mem_eof_return(btmp, 0);
847             ASN1_STRING_set0(os, (unsigned char *)cont, contlen);
848         }
849     }
850     ret = 1;
851  err:
852     EVP_MD_CTX_cleanup(&ctx_tmp);
853     return (ret);
854 }
855
856 int PKCS7_SIGNER_INFO_sign(PKCS7_SIGNER_INFO *si)
857 {
858     EVP_MD_CTX mctx;
859     EVP_PKEY_CTX *pctx;
860     unsigned char *abuf = NULL;
861     int alen;
862     size_t siglen;
863     const EVP_MD *md = NULL;
864
865     md = EVP_get_digestbyobj(si->digest_alg->algorithm);
866     if (md == NULL)
867         return 0;
868
869     EVP_MD_CTX_init(&mctx);
870     if (EVP_DigestSignInit(&mctx, &pctx, md, NULL, si->pkey) <= 0)
871         goto err;
872
873     if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_SIGN,
874                           EVP_PKEY_CTRL_PKCS7_SIGN, 0, si) <= 0) {
875         PKCS7err(PKCS7_F_PKCS7_SIGNER_INFO_SIGN, PKCS7_R_CTRL_ERROR);
876         goto err;
877     }
878
879     alen = ASN1_item_i2d((ASN1_VALUE *)si->auth_attr, &abuf,
880                          ASN1_ITEM_rptr(PKCS7_ATTR_SIGN));
881     if (!abuf)
882         goto err;
883     if (EVP_DigestSignUpdate(&mctx, abuf, alen) <= 0)
884         goto err;
885     OPENSSL_free(abuf);
886     abuf = NULL;
887     if (EVP_DigestSignFinal(&mctx, NULL, &siglen) <= 0)
888         goto err;
889     abuf = OPENSSL_malloc(siglen);
890     if (abuf == NULL)
891         goto err;
892     if (EVP_DigestSignFinal(&mctx, abuf, &siglen) <= 0)
893         goto err;
894
895     if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_SIGN,
896                           EVP_PKEY_CTRL_PKCS7_SIGN, 1, si) <= 0) {
897         PKCS7err(PKCS7_F_PKCS7_SIGNER_INFO_SIGN, PKCS7_R_CTRL_ERROR);
898         goto err;
899     }
900
901     EVP_MD_CTX_cleanup(&mctx);
902
903     ASN1_STRING_set0(si->enc_digest, abuf, siglen);
904
905     return 1;
906
907  err:
908     OPENSSL_free(abuf);
909     EVP_MD_CTX_cleanup(&mctx);
910     return 0;
911
912 }
913
914 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx, BIO *bio,
915                      PKCS7 *p7, PKCS7_SIGNER_INFO *si)
916 {
917     PKCS7_ISSUER_AND_SERIAL *ias;
918     int ret = 0, i;
919     STACK_OF(X509) *cert;
920     X509 *x509;
921
922     if (p7 == NULL) {
923         PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, PKCS7_R_INVALID_NULL_POINTER);
924         return 0;
925     }
926
927     if (p7->d.ptr == NULL) {
928         PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, PKCS7_R_NO_CONTENT);
929         return 0;
930     }
931
932     if (PKCS7_type_is_signed(p7)) {
933         cert = p7->d.sign->cert;
934     } else if (PKCS7_type_is_signedAndEnveloped(p7)) {
935         cert = p7->d.signed_and_enveloped->cert;
936     } else {
937         PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, PKCS7_R_WRONG_PKCS7_TYPE);
938         goto err;
939     }
940     /* XXXXXXXXXXXXXXXXXXXXXXX */
941     ias = si->issuer_and_serial;
942
943     x509 = X509_find_by_issuer_and_serial(cert, ias->issuer, ias->serial);
944
945     /* were we able to find the cert in passed to us */
946     if (x509 == NULL) {
947         PKCS7err(PKCS7_F_PKCS7_DATAVERIFY,
948                  PKCS7_R_UNABLE_TO_FIND_CERTIFICATE);
949         goto err;
950     }
951
952     /* Lets verify */
953     if (!X509_STORE_CTX_init(ctx, cert_store, x509, cert)) {
954         PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, ERR_R_X509_LIB);
955         goto err;
956     }
957     X509_STORE_CTX_set_purpose(ctx, X509_PURPOSE_SMIME_SIGN);
958     i = X509_verify_cert(ctx);
959     if (i <= 0) {
960         PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, ERR_R_X509_LIB);
961         X509_STORE_CTX_cleanup(ctx);
962         goto err;
963     }
964     X509_STORE_CTX_cleanup(ctx);
965
966     return PKCS7_signatureVerify(bio, p7, si, x509);
967  err:
968     return ret;
969 }
970
971 int PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si,
972                           X509 *x509)
973 {
974     ASN1_OCTET_STRING *os;
975     EVP_MD_CTX mdc_tmp, *mdc;
976     int ret = 0, i;
977     int md_type;
978     STACK_OF(X509_ATTRIBUTE) *sk;
979     BIO *btmp;
980     EVP_PKEY *pkey;
981
982     EVP_MD_CTX_init(&mdc_tmp);
983
984     if (!PKCS7_type_is_signed(p7) && !PKCS7_type_is_signedAndEnveloped(p7)) {
985         PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, PKCS7_R_WRONG_PKCS7_TYPE);
986         goto err;
987     }
988
989     md_type = OBJ_obj2nid(si->digest_alg->algorithm);
990
991     btmp = bio;
992     for (;;) {
993         if ((btmp == NULL) ||
994             ((btmp = BIO_find_type(btmp, BIO_TYPE_MD)) == NULL)) {
995             PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY,
996                      PKCS7_R_UNABLE_TO_FIND_MESSAGE_DIGEST);
997             goto err;
998         }
999         BIO_get_md_ctx(btmp, &mdc);
1000         if (mdc == NULL) {
1001             PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, ERR_R_INTERNAL_ERROR);
1002             goto err;
1003         }
1004         if (EVP_MD_CTX_type(mdc) == md_type)
1005             break;
1006         /*
1007          * Workaround for some broken clients that put the signature OID
1008          * instead of the digest OID in digest_alg->algorithm
1009          */
1010         if (EVP_MD_pkey_type(EVP_MD_CTX_md(mdc)) == md_type)
1011             break;
1012         btmp = BIO_next(btmp);
1013     }
1014
1015     /*
1016      * mdc is the digest ctx that we want, unless there are attributes, in
1017      * which case the digest is the signed attributes
1018      */
1019     if (!EVP_MD_CTX_copy_ex(&mdc_tmp, mdc))
1020         goto err;
1021
1022     sk = si->auth_attr;
1023     if ((sk != NULL) && (sk_X509_ATTRIBUTE_num(sk) != 0)) {
1024         unsigned char md_dat[EVP_MAX_MD_SIZE], *abuf = NULL;
1025         unsigned int md_len;
1026         int alen;
1027         ASN1_OCTET_STRING *message_digest;
1028
1029         if (!EVP_DigestFinal_ex(&mdc_tmp, md_dat, &md_len))
1030             goto err;
1031         message_digest = PKCS7_digest_from_attributes(sk);
1032         if (!message_digest) {
1033             PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY,
1034                      PKCS7_R_UNABLE_TO_FIND_MESSAGE_DIGEST);
1035             goto err;
1036         }
1037         if ((message_digest->length != (int)md_len) ||
1038             (memcmp(message_digest->data, md_dat, md_len))) {
1039             PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, PKCS7_R_DIGEST_FAILURE);
1040             ret = -1;
1041             goto err;
1042         }
1043
1044         if (!EVP_VerifyInit_ex(&mdc_tmp, EVP_get_digestbynid(md_type), NULL))
1045             goto err;
1046
1047         alen = ASN1_item_i2d((ASN1_VALUE *)sk, &abuf,
1048                              ASN1_ITEM_rptr(PKCS7_ATTR_VERIFY));
1049         if (alen <= 0) {
1050             PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, ERR_R_ASN1_LIB);
1051             ret = -1;
1052             goto err;
1053         }
1054         if (!EVP_VerifyUpdate(&mdc_tmp, abuf, alen))
1055             goto err;
1056
1057         OPENSSL_free(abuf);
1058     }
1059
1060     os = si->enc_digest;
1061     pkey = X509_get_pubkey(x509);
1062     if (!pkey) {
1063         ret = -1;
1064         goto err;
1065     }
1066
1067     i = EVP_VerifyFinal(&mdc_tmp, os->data, os->length, pkey);
1068     EVP_PKEY_free(pkey);
1069     if (i <= 0) {
1070         PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY, PKCS7_R_SIGNATURE_FAILURE);
1071         ret = -1;
1072         goto err;
1073     }
1074     ret = 1;
1075  err:
1076     EVP_MD_CTX_cleanup(&mdc_tmp);
1077     return (ret);
1078 }
1079
1080 PKCS7_ISSUER_AND_SERIAL *PKCS7_get_issuer_and_serial(PKCS7 *p7, int idx)
1081 {
1082     STACK_OF(PKCS7_RECIP_INFO) *rsk;
1083     PKCS7_RECIP_INFO *ri;
1084     int i;
1085
1086     i = OBJ_obj2nid(p7->type);
1087     if (i != NID_pkcs7_signedAndEnveloped)
1088         return NULL;
1089     if (p7->d.signed_and_enveloped == NULL)
1090         return NULL;
1091     rsk = p7->d.signed_and_enveloped->recipientinfo;
1092     if (rsk == NULL)
1093         return NULL;
1094     if (sk_PKCS7_RECIP_INFO_num(rsk) <= idx)
1095         return (NULL);
1096     ri = sk_PKCS7_RECIP_INFO_value(rsk, idx);
1097     return (ri->issuer_and_serial);
1098 }
1099
1100 ASN1_TYPE *PKCS7_get_signed_attribute(PKCS7_SIGNER_INFO *si, int nid)
1101 {
1102     return (get_attribute(si->auth_attr, nid));
1103 }
1104
1105 ASN1_TYPE *PKCS7_get_attribute(PKCS7_SIGNER_INFO *si, int nid)
1106 {
1107     return (get_attribute(si->unauth_attr, nid));
1108 }
1109
1110 static ASN1_TYPE *get_attribute(STACK_OF(X509_ATTRIBUTE) *sk, int nid)
1111 {
1112     int idx;
1113     X509_ATTRIBUTE *xa;
1114     idx = X509at_get_attr_by_NID(sk, nid, -1);
1115     xa = X509at_get_attr(sk, idx);
1116     return X509_ATTRIBUTE_get0_type(xa, 0);
1117 }
1118
1119 ASN1_OCTET_STRING *PKCS7_digest_from_attributes(STACK_OF(X509_ATTRIBUTE) *sk)
1120 {
1121     ASN1_TYPE *astype;
1122     if ((astype = get_attribute(sk, NID_pkcs9_messageDigest)) == NULL)
1123         return NULL;
1124     return astype->value.octet_string;
1125 }
1126
1127 int PKCS7_set_signed_attributes(PKCS7_SIGNER_INFO *p7si,
1128                                 STACK_OF(X509_ATTRIBUTE) *sk)
1129 {
1130     int i;
1131
1132     sk_X509_ATTRIBUTE_pop_free(p7si->auth_attr, X509_ATTRIBUTE_free);
1133     p7si->auth_attr = sk_X509_ATTRIBUTE_dup(sk);
1134     if (p7si->auth_attr == NULL)
1135         return 0;
1136     for (i = 0; i < sk_X509_ATTRIBUTE_num(sk); i++) {
1137         if ((sk_X509_ATTRIBUTE_set(p7si->auth_attr, i,
1138                                    X509_ATTRIBUTE_dup(sk_X509_ATTRIBUTE_value
1139                                                       (sk, i))))
1140             == NULL)
1141             return (0);
1142     }
1143     return (1);
1144 }
1145
1146 int PKCS7_set_attributes(PKCS7_SIGNER_INFO *p7si,
1147                          STACK_OF(X509_ATTRIBUTE) *sk)
1148 {
1149     int i;
1150
1151     sk_X509_ATTRIBUTE_pop_free(p7si->unauth_attr, X509_ATTRIBUTE_free);
1152     p7si->unauth_attr = sk_X509_ATTRIBUTE_dup(sk);
1153     if (p7si->unauth_attr == NULL)
1154         return 0;
1155     for (i = 0; i < sk_X509_ATTRIBUTE_num(sk); i++) {
1156         if ((sk_X509_ATTRIBUTE_set(p7si->unauth_attr, i,
1157                                    X509_ATTRIBUTE_dup(sk_X509_ATTRIBUTE_value
1158                                                       (sk, i))))
1159             == NULL)
1160             return (0);
1161     }
1162     return (1);
1163 }
1164
1165 int PKCS7_add_signed_attribute(PKCS7_SIGNER_INFO *p7si, int nid, int atrtype,
1166                                void *value)
1167 {
1168     return (add_attribute(&(p7si->auth_attr), nid, atrtype, value));
1169 }
1170
1171 int PKCS7_add_attribute(PKCS7_SIGNER_INFO *p7si, int nid, int atrtype,
1172                         void *value)
1173 {
1174     return (add_attribute(&(p7si->unauth_attr), nid, atrtype, value));
1175 }
1176
1177 static int add_attribute(STACK_OF(X509_ATTRIBUTE) **sk, int nid, int atrtype,
1178                          void *value)
1179 {
1180     X509_ATTRIBUTE *attr = NULL;
1181
1182     if (*sk == NULL) {
1183         if ((*sk = sk_X509_ATTRIBUTE_new_null()) == NULL)
1184             return 0;
1185  new_attrib:
1186         if ((attr = X509_ATTRIBUTE_create(nid, atrtype, value)) == NULL)
1187             return 0;
1188         if (!sk_X509_ATTRIBUTE_push(*sk, attr)) {
1189             X509_ATTRIBUTE_free(attr);
1190             return 0;
1191         }
1192     } else {
1193         int i;
1194
1195         for (i = 0; i < sk_X509_ATTRIBUTE_num(*sk); i++) {
1196             attr = sk_X509_ATTRIBUTE_value(*sk, i);
1197             if (OBJ_obj2nid(X509_ATTRIBUTE_get0_object(attr)) == nid) {
1198                 X509_ATTRIBUTE_free(attr);
1199                 attr = X509_ATTRIBUTE_create(nid, atrtype, value);
1200                 if (attr == NULL)
1201                     return 0;
1202                 if (!sk_X509_ATTRIBUTE_set(*sk, i, attr)) {
1203                     X509_ATTRIBUTE_free(attr);
1204                     return 0;
1205                 }
1206                 goto end;
1207             }
1208         }
1209         goto new_attrib;
1210     }
1211  end:
1212     return (1);
1213 }