Add the content type attribute to additional CMS signerinfo.
[openssl.git] / crypto / cms / cms_sd.c
1 /*
2  * Copyright 2008-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include "internal/cryptlib.h"
11 #include <openssl/asn1t.h>
12 #include <openssl/pem.h>
13 #include <openssl/x509.h>
14 #include <openssl/x509v3.h>
15 #include <openssl/err.h>
16 #include <openssl/cms.h>
17 #include "cms_lcl.h"
18 #include "internal/asn1_int.h"
19 #include "internal/evp_int.h"
20
21 /* CMS SignedData Utilities */
22
23 static CMS_SignedData *cms_get0_signed(CMS_ContentInfo *cms)
24 {
25     if (OBJ_obj2nid(cms->contentType) != NID_pkcs7_signed) {
26         CMSerr(CMS_F_CMS_GET0_SIGNED, CMS_R_CONTENT_TYPE_NOT_SIGNED_DATA);
27         return NULL;
28     }
29     return cms->d.signedData;
30 }
31
32 static CMS_SignedData *cms_signed_data_init(CMS_ContentInfo *cms)
33 {
34     if (cms->d.other == NULL) {
35         cms->d.signedData = M_ASN1_new_of(CMS_SignedData);
36         if (!cms->d.signedData) {
37             CMSerr(CMS_F_CMS_SIGNED_DATA_INIT, ERR_R_MALLOC_FAILURE);
38             return NULL;
39         }
40         cms->d.signedData->version = 1;
41         cms->d.signedData->encapContentInfo->eContentType =
42             OBJ_nid2obj(NID_pkcs7_data);
43         cms->d.signedData->encapContentInfo->partial = 1;
44         ASN1_OBJECT_free(cms->contentType);
45         cms->contentType = OBJ_nid2obj(NID_pkcs7_signed);
46         return cms->d.signedData;
47     }
48     return cms_get0_signed(cms);
49 }
50
51 /* Just initialise SignedData e.g. for certs only structure */
52
53 int CMS_SignedData_init(CMS_ContentInfo *cms)
54 {
55     if (cms_signed_data_init(cms))
56         return 1;
57     else
58         return 0;
59 }
60
61 /* Check structures and fixup version numbers (if necessary) */
62
63 static void cms_sd_set_version(CMS_SignedData *sd)
64 {
65     int i;
66     CMS_CertificateChoices *cch;
67     CMS_RevocationInfoChoice *rch;
68     CMS_SignerInfo *si;
69
70     for (i = 0; i < sk_CMS_CertificateChoices_num(sd->certificates); i++) {
71         cch = sk_CMS_CertificateChoices_value(sd->certificates, i);
72         if (cch->type == CMS_CERTCHOICE_OTHER) {
73             if (sd->version < 5)
74                 sd->version = 5;
75         } else if (cch->type == CMS_CERTCHOICE_V2ACERT) {
76             if (sd->version < 4)
77                 sd->version = 4;
78         } else if (cch->type == CMS_CERTCHOICE_V1ACERT) {
79             if (sd->version < 3)
80                 sd->version = 3;
81         }
82     }
83
84     for (i = 0; i < sk_CMS_RevocationInfoChoice_num(sd->crls); i++) {
85         rch = sk_CMS_RevocationInfoChoice_value(sd->crls, i);
86         if (rch->type == CMS_REVCHOICE_OTHER) {
87             if (sd->version < 5)
88                 sd->version = 5;
89         }
90     }
91
92     if ((OBJ_obj2nid(sd->encapContentInfo->eContentType) != NID_pkcs7_data)
93         && (sd->version < 3))
94         sd->version = 3;
95
96     for (i = 0; i < sk_CMS_SignerInfo_num(sd->signerInfos); i++) {
97         si = sk_CMS_SignerInfo_value(sd->signerInfos, i);
98         if (si->sid->type == CMS_SIGNERINFO_KEYIDENTIFIER) {
99             if (si->version < 3)
100                 si->version = 3;
101             if (sd->version < 3)
102                 sd->version = 3;
103         } else if (si->version < 1)
104             si->version = 1;
105     }
106
107     if (sd->version < 1)
108         sd->version = 1;
109
110 }
111
112 /*
113  * RFC 5652 Section 11.1 Content Type
114  * The content-type attribute within signed-data MUST
115  *   1) be present if there are signed attributes
116  *   2) match the content type in the signed-data,
117  *   3) be a signed attribute.
118  *   4) not have more than one copy of the attribute.
119  *
120  * Note that since the CMS_SignerInfo_sign() always adds the "signing time"
121  * attribute, the content type attribute MUST be added also.
122  * Assumptions: This assumes that the attribute does not already exist.
123  */
124 static int cms_set_si_contentType_attr(CMS_ContentInfo *cms, CMS_SignerInfo *si)
125 {
126     ASN1_OBJECT *ctype = cms->d.signedData->encapContentInfo->eContentType;
127
128     /* Add the contentType attribute */
129     return CMS_signed_add1_attr_by_NID(si, NID_pkcs9_contentType,
130                                        V_ASN1_OBJECT, ctype, -1) > 0;
131 }
132
133 /* Copy an existing messageDigest value */
134
135 static int cms_copy_messageDigest(CMS_ContentInfo *cms, CMS_SignerInfo *si)
136 {
137     STACK_OF(CMS_SignerInfo) *sinfos;
138     CMS_SignerInfo *sitmp;
139     int i;
140     sinfos = CMS_get0_SignerInfos(cms);
141     for (i = 0; i < sk_CMS_SignerInfo_num(sinfos); i++) {
142         ASN1_OCTET_STRING *messageDigest;
143         sitmp = sk_CMS_SignerInfo_value(sinfos, i);
144         if (sitmp == si)
145             continue;
146         if (CMS_signed_get_attr_count(sitmp) < 0)
147             continue;
148         if (OBJ_cmp(si->digestAlgorithm->algorithm,
149                     sitmp->digestAlgorithm->algorithm))
150             continue;
151         messageDigest = CMS_signed_get0_data_by_OBJ(sitmp,
152                                                     OBJ_nid2obj
153                                                     (NID_pkcs9_messageDigest),
154                                                     -3, V_ASN1_OCTET_STRING);
155         if (!messageDigest) {
156             CMSerr(CMS_F_CMS_COPY_MESSAGEDIGEST,
157                    CMS_R_ERROR_READING_MESSAGEDIGEST_ATTRIBUTE);
158             return 0;
159         }
160
161         if (CMS_signed_add1_attr_by_NID(si, NID_pkcs9_messageDigest,
162                                         V_ASN1_OCTET_STRING,
163                                         messageDigest, -1))
164             return 1;
165         else
166             return 0;
167     }
168     CMSerr(CMS_F_CMS_COPY_MESSAGEDIGEST, CMS_R_NO_MATCHING_DIGEST);
169     return 0;
170 }
171
172 int cms_set1_SignerIdentifier(CMS_SignerIdentifier *sid, X509 *cert, int type)
173 {
174     switch (type) {
175     case CMS_SIGNERINFO_ISSUER_SERIAL:
176         if (!cms_set1_ias(&sid->d.issuerAndSerialNumber, cert))
177             return 0;
178         break;
179
180     case CMS_SIGNERINFO_KEYIDENTIFIER:
181         if (!cms_set1_keyid(&sid->d.subjectKeyIdentifier, cert))
182             return 0;
183         break;
184
185     default:
186         CMSerr(CMS_F_CMS_SET1_SIGNERIDENTIFIER, CMS_R_UNKNOWN_ID);
187         return 0;
188     }
189
190     sid->type = type;
191
192     return 1;
193 }
194
195 int cms_SignerIdentifier_get0_signer_id(CMS_SignerIdentifier *sid,
196                                         ASN1_OCTET_STRING **keyid,
197                                         X509_NAME **issuer,
198                                         ASN1_INTEGER **sno)
199 {
200     if (sid->type == CMS_SIGNERINFO_ISSUER_SERIAL) {
201         if (issuer)
202             *issuer = sid->d.issuerAndSerialNumber->issuer;
203         if (sno)
204             *sno = sid->d.issuerAndSerialNumber->serialNumber;
205     } else if (sid->type == CMS_SIGNERINFO_KEYIDENTIFIER) {
206         if (keyid)
207             *keyid = sid->d.subjectKeyIdentifier;
208     } else
209         return 0;
210     return 1;
211 }
212
213 int cms_SignerIdentifier_cert_cmp(CMS_SignerIdentifier *sid, X509 *cert)
214 {
215     if (sid->type == CMS_SIGNERINFO_ISSUER_SERIAL)
216         return cms_ias_cert_cmp(sid->d.issuerAndSerialNumber, cert);
217     else if (sid->type == CMS_SIGNERINFO_KEYIDENTIFIER)
218         return cms_keyid_cert_cmp(sid->d.subjectKeyIdentifier, cert);
219     else
220         return -1;
221 }
222
223 static int cms_sd_asn1_ctrl(CMS_SignerInfo *si, int cmd)
224 {
225     EVP_PKEY *pkey = si->pkey;
226     int i;
227     if (!pkey->ameth || !pkey->ameth->pkey_ctrl)
228         return 1;
229     i = pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_CMS_SIGN, cmd, si);
230     if (i == -2) {
231         CMSerr(CMS_F_CMS_SD_ASN1_CTRL, CMS_R_NOT_SUPPORTED_FOR_THIS_KEY_TYPE);
232         return 0;
233     }
234     if (i <= 0) {
235         CMSerr(CMS_F_CMS_SD_ASN1_CTRL, CMS_R_CTRL_FAILURE);
236         return 0;
237     }
238     return 1;
239 }
240
241 CMS_SignerInfo *CMS_add1_signer(CMS_ContentInfo *cms,
242                                 X509 *signer, EVP_PKEY *pk, const EVP_MD *md,
243                                 unsigned int flags)
244 {
245     CMS_SignedData *sd;
246     CMS_SignerInfo *si = NULL;
247     X509_ALGOR *alg;
248     int i, type;
249     if (!X509_check_private_key(signer, pk)) {
250         CMSerr(CMS_F_CMS_ADD1_SIGNER,
251                CMS_R_PRIVATE_KEY_DOES_NOT_MATCH_CERTIFICATE);
252         return NULL;
253     }
254     sd = cms_signed_data_init(cms);
255     if (!sd)
256         goto err;
257     si = M_ASN1_new_of(CMS_SignerInfo);
258     if (!si)
259         goto merr;
260     /* Call for side-effect of computing hash and caching extensions */
261     X509_check_purpose(signer, -1, -1);
262
263     X509_up_ref(signer);
264     EVP_PKEY_up_ref(pk);
265
266     si->pkey = pk;
267     si->signer = signer;
268     si->mctx = EVP_MD_CTX_new();
269     si->pctx = NULL;
270
271     if (si->mctx == NULL) {
272         CMSerr(CMS_F_CMS_ADD1_SIGNER, ERR_R_MALLOC_FAILURE);
273         goto err;
274     }
275
276     if (flags & CMS_USE_KEYID) {
277         si->version = 3;
278         if (sd->version < 3)
279             sd->version = 3;
280         type = CMS_SIGNERINFO_KEYIDENTIFIER;
281     } else {
282         type = CMS_SIGNERINFO_ISSUER_SERIAL;
283         si->version = 1;
284     }
285
286     if (!cms_set1_SignerIdentifier(si->sid, signer, type))
287         goto err;
288
289     if (md == NULL) {
290         int def_nid;
291         if (EVP_PKEY_get_default_digest_nid(pk, &def_nid) <= 0)
292             goto err;
293         md = EVP_get_digestbynid(def_nid);
294         if (md == NULL) {
295             CMSerr(CMS_F_CMS_ADD1_SIGNER, CMS_R_NO_DEFAULT_DIGEST);
296             goto err;
297         }
298     }
299
300     if (!md) {
301         CMSerr(CMS_F_CMS_ADD1_SIGNER, CMS_R_NO_DIGEST_SET);
302         goto err;
303     }
304
305     X509_ALGOR_set_md(si->digestAlgorithm, md);
306
307     /* See if digest is present in digestAlgorithms */
308     for (i = 0; i < sk_X509_ALGOR_num(sd->digestAlgorithms); i++) {
309         const ASN1_OBJECT *aoid;
310         alg = sk_X509_ALGOR_value(sd->digestAlgorithms, i);
311         X509_ALGOR_get0(&aoid, NULL, NULL, alg);
312         if (OBJ_obj2nid(aoid) == EVP_MD_type(md))
313             break;
314     }
315
316     if (i == sk_X509_ALGOR_num(sd->digestAlgorithms)) {
317         alg = X509_ALGOR_new();
318         if (alg == NULL)
319             goto merr;
320         X509_ALGOR_set_md(alg, md);
321         if (!sk_X509_ALGOR_push(sd->digestAlgorithms, alg)) {
322             X509_ALGOR_free(alg);
323             goto merr;
324         }
325     }
326
327     if (!(flags & CMS_KEY_PARAM) && !cms_sd_asn1_ctrl(si, 0))
328         goto err;
329     if (!(flags & CMS_NOATTR)) {
330         /*
331          * Initialize signed attributes structure so other attributes
332          * such as signing time etc are added later even if we add none here.
333          */
334         if (!si->signedAttrs) {
335             si->signedAttrs = sk_X509_ATTRIBUTE_new_null();
336             if (!si->signedAttrs)
337                 goto merr;
338         }
339
340         if (!(flags & CMS_NOSMIMECAP)) {
341             STACK_OF(X509_ALGOR) *smcap = NULL;
342             i = CMS_add_standard_smimecap(&smcap);
343             if (i)
344                 i = CMS_add_smimecap(si, smcap);
345             sk_X509_ALGOR_pop_free(smcap, X509_ALGOR_free);
346             if (!i)
347                 goto merr;
348         }
349         if (flags & CMS_CADES) {
350             ESS_SIGNING_CERT *sc = NULL;
351             ESS_SIGNING_CERT_V2 *sc2 = NULL;
352             int add_sc;
353
354             if (md == EVP_sha1() || md == NULL) {
355                 if ((sc = ESS_SIGNING_CERT_new_init(signer,
356                                                     NULL, 1)) == NULL)
357                     goto err;
358                 add_sc = CMS_add1_signing_cert(si, sc);
359                 ESS_SIGNING_CERT_free(sc);
360             } else {
361                 if ((sc2 = ESS_SIGNING_CERT_V2_new_init(md, signer,
362                                                         NULL, 1)) == NULL)
363                     goto err;
364                 add_sc = CMS_add1_signing_cert_v2(si, sc2);
365                 ESS_SIGNING_CERT_V2_free(sc2);
366             }
367             if (!add_sc)
368                 goto err;
369         }
370         if (flags & CMS_REUSE_DIGEST) {
371             if (!cms_copy_messageDigest(cms, si))
372                 goto err;
373             if (!cms_set_si_contentType_attr(cms, si))
374                 goto err;
375             if (!(flags & (CMS_PARTIAL | CMS_KEY_PARAM)) &&
376                 !CMS_SignerInfo_sign(si))
377                 goto err;
378         }
379     }
380
381     if (!(flags & CMS_NOCERTS)) {
382         /* NB ignore -1 return for duplicate cert */
383         if (!CMS_add1_cert(cms, signer))
384             goto merr;
385     }
386
387     if (flags & CMS_KEY_PARAM) {
388         if (flags & CMS_NOATTR) {
389             si->pctx = EVP_PKEY_CTX_new(si->pkey, NULL);
390             if (si->pctx == NULL)
391                 goto err;
392             if (EVP_PKEY_sign_init(si->pctx) <= 0)
393                 goto err;
394             if (EVP_PKEY_CTX_set_signature_md(si->pctx, md) <= 0)
395                 goto err;
396         } else if (EVP_DigestSignInit(si->mctx, &si->pctx, md, NULL, pk) <= 0)
397             goto err;
398     }
399
400     if (!sd->signerInfos)
401         sd->signerInfos = sk_CMS_SignerInfo_new_null();
402     if (!sd->signerInfos || !sk_CMS_SignerInfo_push(sd->signerInfos, si))
403         goto merr;
404
405     return si;
406
407  merr:
408     CMSerr(CMS_F_CMS_ADD1_SIGNER, ERR_R_MALLOC_FAILURE);
409  err:
410     M_ASN1_free_of(si, CMS_SignerInfo);
411     return NULL;
412
413 }
414
415 static int cms_add1_signingTime(CMS_SignerInfo *si, ASN1_TIME *t)
416 {
417     ASN1_TIME *tt;
418     int r = 0;
419     if (t)
420         tt = t;
421     else
422         tt = X509_gmtime_adj(NULL, 0);
423
424     if (!tt)
425         goto merr;
426
427     if (CMS_signed_add1_attr_by_NID(si, NID_pkcs9_signingTime,
428                                     tt->type, tt, -1) <= 0)
429         goto merr;
430
431     r = 1;
432
433  merr:
434
435     if (!t)
436         ASN1_TIME_free(tt);
437
438     if (!r)
439         CMSerr(CMS_F_CMS_ADD1_SIGNINGTIME, ERR_R_MALLOC_FAILURE);
440
441     return r;
442
443 }
444
445 EVP_PKEY_CTX *CMS_SignerInfo_get0_pkey_ctx(CMS_SignerInfo *si)
446 {
447     return si->pctx;
448 }
449
450 EVP_MD_CTX *CMS_SignerInfo_get0_md_ctx(CMS_SignerInfo *si)
451 {
452     return si->mctx;
453 }
454
455 STACK_OF(CMS_SignerInfo) *CMS_get0_SignerInfos(CMS_ContentInfo *cms)
456 {
457     CMS_SignedData *sd;
458     sd = cms_get0_signed(cms);
459     if (!sd)
460         return NULL;
461     return sd->signerInfos;
462 }
463
464 STACK_OF(X509) *CMS_get0_signers(CMS_ContentInfo *cms)
465 {
466     STACK_OF(X509) *signers = NULL;
467     STACK_OF(CMS_SignerInfo) *sinfos;
468     CMS_SignerInfo *si;
469     int i;
470     sinfos = CMS_get0_SignerInfos(cms);
471     for (i = 0; i < sk_CMS_SignerInfo_num(sinfos); i++) {
472         si = sk_CMS_SignerInfo_value(sinfos, i);
473         if (si->signer) {
474             if (!signers) {
475                 signers = sk_X509_new_null();
476                 if (!signers)
477                     return NULL;
478             }
479             if (!sk_X509_push(signers, si->signer)) {
480                 sk_X509_free(signers);
481                 return NULL;
482             }
483         }
484     }
485     return signers;
486 }
487
488 void CMS_SignerInfo_set1_signer_cert(CMS_SignerInfo *si, X509 *signer)
489 {
490     if (signer) {
491         X509_up_ref(signer);
492         EVP_PKEY_free(si->pkey);
493         si->pkey = X509_get_pubkey(signer);
494     }
495     X509_free(si->signer);
496     si->signer = signer;
497 }
498
499 int CMS_SignerInfo_get0_signer_id(CMS_SignerInfo *si,
500                                   ASN1_OCTET_STRING **keyid,
501                                   X509_NAME **issuer, ASN1_INTEGER **sno)
502 {
503     return cms_SignerIdentifier_get0_signer_id(si->sid, keyid, issuer, sno);
504 }
505
506 int CMS_SignerInfo_cert_cmp(CMS_SignerInfo *si, X509 *cert)
507 {
508     return cms_SignerIdentifier_cert_cmp(si->sid, cert);
509 }
510
511 int CMS_set1_signers_certs(CMS_ContentInfo *cms, STACK_OF(X509) *scerts,
512                            unsigned int flags)
513 {
514     CMS_SignedData *sd;
515     CMS_SignerInfo *si;
516     CMS_CertificateChoices *cch;
517     STACK_OF(CMS_CertificateChoices) *certs;
518     X509 *x;
519     int i, j;
520     int ret = 0;
521     sd = cms_get0_signed(cms);
522     if (!sd)
523         return -1;
524     certs = sd->certificates;
525     for (i = 0; i < sk_CMS_SignerInfo_num(sd->signerInfos); i++) {
526         si = sk_CMS_SignerInfo_value(sd->signerInfos, i);
527         if (si->signer)
528             continue;
529
530         for (j = 0; j < sk_X509_num(scerts); j++) {
531             x = sk_X509_value(scerts, j);
532             if (CMS_SignerInfo_cert_cmp(si, x) == 0) {
533                 CMS_SignerInfo_set1_signer_cert(si, x);
534                 ret++;
535                 break;
536             }
537         }
538
539         if (si->signer || (flags & CMS_NOINTERN))
540             continue;
541
542         for (j = 0; j < sk_CMS_CertificateChoices_num(certs); j++) {
543             cch = sk_CMS_CertificateChoices_value(certs, j);
544             if (cch->type != 0)
545                 continue;
546             x = cch->d.certificate;
547             if (CMS_SignerInfo_cert_cmp(si, x) == 0) {
548                 CMS_SignerInfo_set1_signer_cert(si, x);
549                 ret++;
550                 break;
551             }
552         }
553     }
554     return ret;
555 }
556
557 void CMS_SignerInfo_get0_algs(CMS_SignerInfo *si, EVP_PKEY **pk,
558                               X509 **signer, X509_ALGOR **pdig,
559                               X509_ALGOR **psig)
560 {
561     if (pk)
562         *pk = si->pkey;
563     if (signer)
564         *signer = si->signer;
565     if (pdig)
566         *pdig = si->digestAlgorithm;
567     if (psig)
568         *psig = si->signatureAlgorithm;
569 }
570
571 ASN1_OCTET_STRING *CMS_SignerInfo_get0_signature(CMS_SignerInfo *si)
572 {
573     return si->signature;
574 }
575
576 static int cms_SignerInfo_content_sign(CMS_ContentInfo *cms,
577                                        CMS_SignerInfo *si, BIO *chain)
578 {
579     EVP_MD_CTX *mctx = EVP_MD_CTX_new();
580     int r = 0;
581     EVP_PKEY_CTX *pctx = NULL;
582
583     if (mctx == NULL) {
584         CMSerr(CMS_F_CMS_SIGNERINFO_CONTENT_SIGN, ERR_R_MALLOC_FAILURE);
585         return 0;
586     }
587
588     if (!si->pkey) {
589         CMSerr(CMS_F_CMS_SIGNERINFO_CONTENT_SIGN, CMS_R_NO_PRIVATE_KEY);
590         goto err;
591     }
592
593     if (!cms_DigestAlgorithm_find_ctx(mctx, chain, si->digestAlgorithm))
594         goto err;
595     /* Set SignerInfo algorithm details if we used custom parameter */
596     if (si->pctx && !cms_sd_asn1_ctrl(si, 0))
597         goto err;
598
599     /*
600      * If any signed attributes calculate and add messageDigest attribute
601      */
602
603     if (CMS_signed_get_attr_count(si) >= 0) {
604         unsigned char md[EVP_MAX_MD_SIZE];
605         unsigned int mdlen;
606         if (!EVP_DigestFinal_ex(mctx, md, &mdlen))
607             goto err;
608         if (!CMS_signed_add1_attr_by_NID(si, NID_pkcs9_messageDigest,
609                                          V_ASN1_OCTET_STRING, md, mdlen))
610             goto err;
611         /* Copy content type across */
612         if (!cms_set_si_contentType_attr(cms, si))
613             goto err;
614
615         if (!CMS_SignerInfo_sign(si))
616             goto err;
617     } else if (si->pctx) {
618         unsigned char *sig;
619         size_t siglen;
620         unsigned char md[EVP_MAX_MD_SIZE];
621         unsigned int mdlen;
622         pctx = si->pctx;
623         if (!EVP_DigestFinal_ex(mctx, md, &mdlen))
624             goto err;
625         siglen = EVP_PKEY_size(si->pkey);
626         sig = OPENSSL_malloc(siglen);
627         if (sig == NULL) {
628             CMSerr(CMS_F_CMS_SIGNERINFO_CONTENT_SIGN, ERR_R_MALLOC_FAILURE);
629             goto err;
630         }
631         if (EVP_PKEY_sign(pctx, sig, &siglen, md, mdlen) <= 0) {
632             OPENSSL_free(sig);
633             goto err;
634         }
635         ASN1_STRING_set0(si->signature, sig, siglen);
636     } else {
637         unsigned char *sig;
638         unsigned int siglen;
639         sig = OPENSSL_malloc(EVP_PKEY_size(si->pkey));
640         if (sig == NULL) {
641             CMSerr(CMS_F_CMS_SIGNERINFO_CONTENT_SIGN, ERR_R_MALLOC_FAILURE);
642             goto err;
643         }
644         if (!EVP_SignFinal(mctx, sig, &siglen, si->pkey)) {
645             CMSerr(CMS_F_CMS_SIGNERINFO_CONTENT_SIGN, CMS_R_SIGNFINAL_ERROR);
646             OPENSSL_free(sig);
647             goto err;
648         }
649         ASN1_STRING_set0(si->signature, sig, siglen);
650     }
651
652     r = 1;
653
654  err:
655     EVP_MD_CTX_free(mctx);
656     EVP_PKEY_CTX_free(pctx);
657     return r;
658
659 }
660
661 int cms_SignedData_final(CMS_ContentInfo *cms, BIO *chain)
662 {
663     STACK_OF(CMS_SignerInfo) *sinfos;
664     CMS_SignerInfo *si;
665     int i;
666     sinfos = CMS_get0_SignerInfos(cms);
667     for (i = 0; i < sk_CMS_SignerInfo_num(sinfos); i++) {
668         si = sk_CMS_SignerInfo_value(sinfos, i);
669         if (!cms_SignerInfo_content_sign(cms, si, chain))
670             return 0;
671     }
672     cms->d.signedData->encapContentInfo->partial = 0;
673     return 1;
674 }
675
676 int CMS_SignerInfo_sign(CMS_SignerInfo *si)
677 {
678     EVP_MD_CTX *mctx = si->mctx;
679     EVP_PKEY_CTX *pctx = NULL;
680     unsigned char *abuf = NULL;
681     int alen;
682     size_t siglen;
683     const EVP_MD *md = NULL;
684
685     md = EVP_get_digestbyobj(si->digestAlgorithm->algorithm);
686     if (md == NULL)
687         return 0;
688
689     if (CMS_signed_get_attr_by_NID(si, NID_pkcs9_signingTime, -1) < 0) {
690         if (!cms_add1_signingTime(si, NULL))
691             goto err;
692     }
693
694     if (!CMS_si_check_attributes(si))
695         goto err;
696
697     if (si->pctx)
698         pctx = si->pctx;
699     else {
700         EVP_MD_CTX_reset(mctx);
701         if (EVP_DigestSignInit(mctx, &pctx, md, NULL, si->pkey) <= 0)
702             goto err;
703         si->pctx = pctx;
704     }
705
706     if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_SIGN,
707                           EVP_PKEY_CTRL_CMS_SIGN, 0, si) <= 0) {
708         CMSerr(CMS_F_CMS_SIGNERINFO_SIGN, CMS_R_CTRL_ERROR);
709         goto err;
710     }
711
712     alen = ASN1_item_i2d((ASN1_VALUE *)si->signedAttrs, &abuf,
713                          ASN1_ITEM_rptr(CMS_Attributes_Sign));
714     if (!abuf)
715         goto err;
716     if (EVP_DigestSignUpdate(mctx, abuf, alen) <= 0)
717         goto err;
718     if (EVP_DigestSignFinal(mctx, NULL, &siglen) <= 0)
719         goto err;
720     OPENSSL_free(abuf);
721     abuf = OPENSSL_malloc(siglen);
722     if (abuf == NULL)
723         goto err;
724     if (EVP_DigestSignFinal(mctx, abuf, &siglen) <= 0)
725         goto err;
726
727     if (EVP_PKEY_CTX_ctrl(pctx, -1, EVP_PKEY_OP_SIGN,
728                           EVP_PKEY_CTRL_CMS_SIGN, 1, si) <= 0) {
729         CMSerr(CMS_F_CMS_SIGNERINFO_SIGN, CMS_R_CTRL_ERROR);
730         goto err;
731     }
732
733     EVP_MD_CTX_reset(mctx);
734
735     ASN1_STRING_set0(si->signature, abuf, siglen);
736
737     return 1;
738
739  err:
740     OPENSSL_free(abuf);
741     EVP_MD_CTX_reset(mctx);
742     return 0;
743 }
744
745 int CMS_SignerInfo_verify(CMS_SignerInfo *si)
746 {
747     EVP_MD_CTX *mctx = NULL;
748     unsigned char *abuf = NULL;
749     int alen, r = -1;
750     const EVP_MD *md = NULL;
751
752     if (!si->pkey) {
753         CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY, CMS_R_NO_PUBLIC_KEY);
754         return -1;
755     }
756
757     if (!CMS_si_check_attributes(si))
758         return -1;
759
760     md = EVP_get_digestbyobj(si->digestAlgorithm->algorithm);
761     if (md == NULL)
762         return -1;
763     if (si->mctx == NULL && (si->mctx = EVP_MD_CTX_new()) == NULL) {
764         CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY, ERR_R_MALLOC_FAILURE);
765         return -1;
766     }
767     mctx = si->mctx;
768     if (EVP_DigestVerifyInit(mctx, &si->pctx, md, NULL, si->pkey) <= 0)
769         goto err;
770
771     if (!cms_sd_asn1_ctrl(si, 1))
772         goto err;
773
774     alen = ASN1_item_i2d((ASN1_VALUE *)si->signedAttrs, &abuf,
775                          ASN1_ITEM_rptr(CMS_Attributes_Verify));
776     if (!abuf)
777         goto err;
778     r = EVP_DigestVerifyUpdate(mctx, abuf, alen);
779     OPENSSL_free(abuf);
780     if (r <= 0) {
781         r = -1;
782         goto err;
783     }
784     r = EVP_DigestVerifyFinal(mctx,
785                               si->signature->data, si->signature->length);
786     if (r <= 0)
787         CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY, CMS_R_VERIFICATION_FAILURE);
788  err:
789     EVP_MD_CTX_reset(mctx);
790     return r;
791 }
792
793 /* Create a chain of digest BIOs from a CMS ContentInfo */
794
795 BIO *cms_SignedData_init_bio(CMS_ContentInfo *cms)
796 {
797     int i;
798     CMS_SignedData *sd;
799     BIO *chain = NULL;
800     sd = cms_get0_signed(cms);
801     if (!sd)
802         return NULL;
803     if (cms->d.signedData->encapContentInfo->partial)
804         cms_sd_set_version(sd);
805     for (i = 0; i < sk_X509_ALGOR_num(sd->digestAlgorithms); i++) {
806         X509_ALGOR *digestAlgorithm;
807         BIO *mdbio;
808         digestAlgorithm = sk_X509_ALGOR_value(sd->digestAlgorithms, i);
809         mdbio = cms_DigestAlgorithm_init_bio(digestAlgorithm);
810         if (!mdbio)
811             goto err;
812         if (chain)
813             BIO_push(chain, mdbio);
814         else
815             chain = mdbio;
816     }
817     return chain;
818  err:
819     BIO_free_all(chain);
820     return NULL;
821 }
822
823 int CMS_SignerInfo_verify_content(CMS_SignerInfo *si, BIO *chain)
824 {
825     ASN1_OCTET_STRING *os = NULL;
826     EVP_MD_CTX *mctx = EVP_MD_CTX_new();
827     EVP_PKEY_CTX *pkctx = NULL;
828     int r = -1;
829     unsigned char mval[EVP_MAX_MD_SIZE];
830     unsigned int mlen;
831
832     if (mctx == NULL) {
833         CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY_CONTENT, ERR_R_MALLOC_FAILURE);
834         goto err;
835     }
836     /* If we have any signed attributes look for messageDigest value */
837     if (CMS_signed_get_attr_count(si) >= 0) {
838         os = CMS_signed_get0_data_by_OBJ(si,
839                                          OBJ_nid2obj(NID_pkcs9_messageDigest),
840                                          -3, V_ASN1_OCTET_STRING);
841         if (!os) {
842             CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY_CONTENT,
843                    CMS_R_ERROR_READING_MESSAGEDIGEST_ATTRIBUTE);
844             goto err;
845         }
846     }
847
848     if (!cms_DigestAlgorithm_find_ctx(mctx, chain, si->digestAlgorithm))
849         goto err;
850
851     if (EVP_DigestFinal_ex(mctx, mval, &mlen) <= 0) {
852         CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY_CONTENT,
853                CMS_R_UNABLE_TO_FINALIZE_CONTEXT);
854         goto err;
855     }
856
857     /* If messageDigest found compare it */
858
859     if (os) {
860         if (mlen != (unsigned int)os->length) {
861             CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY_CONTENT,
862                    CMS_R_MESSAGEDIGEST_ATTRIBUTE_WRONG_LENGTH);
863             goto err;
864         }
865
866         if (memcmp(mval, os->data, mlen)) {
867             CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY_CONTENT,
868                    CMS_R_VERIFICATION_FAILURE);
869             r = 0;
870         } else
871             r = 1;
872     } else {
873         const EVP_MD *md = EVP_MD_CTX_md(mctx);
874         pkctx = EVP_PKEY_CTX_new(si->pkey, NULL);
875         if (pkctx == NULL)
876             goto err;
877         if (EVP_PKEY_verify_init(pkctx) <= 0)
878             goto err;
879         if (EVP_PKEY_CTX_set_signature_md(pkctx, md) <= 0)
880             goto err;
881         si->pctx = pkctx;
882         if (!cms_sd_asn1_ctrl(si, 1))
883             goto err;
884         r = EVP_PKEY_verify(pkctx, si->signature->data,
885                             si->signature->length, mval, mlen);
886         if (r <= 0) {
887             CMSerr(CMS_F_CMS_SIGNERINFO_VERIFY_CONTENT,
888                    CMS_R_VERIFICATION_FAILURE);
889             r = 0;
890         }
891     }
892
893  err:
894     EVP_PKEY_CTX_free(pkctx);
895     EVP_MD_CTX_free(mctx);
896     return r;
897
898 }
899
900 int CMS_add_smimecap(CMS_SignerInfo *si, STACK_OF(X509_ALGOR) *algs)
901 {
902     unsigned char *smder = NULL;
903     int smderlen, r;
904     smderlen = i2d_X509_ALGORS(algs, &smder);
905     if (smderlen <= 0)
906         return 0;
907     r = CMS_signed_add1_attr_by_NID(si, NID_SMIMECapabilities,
908                                     V_ASN1_SEQUENCE, smder, smderlen);
909     OPENSSL_free(smder);
910     return r;
911 }
912
913 int CMS_add_simple_smimecap(STACK_OF(X509_ALGOR) **algs,
914                             int algnid, int keysize)
915 {
916     X509_ALGOR *alg;
917     ASN1_INTEGER *key = NULL;
918     if (keysize > 0) {
919         key = ASN1_INTEGER_new();
920         if (key == NULL || !ASN1_INTEGER_set(key, keysize))
921             return 0;
922     }
923     alg = X509_ALGOR_new();
924     if (alg == NULL) {
925         ASN1_INTEGER_free(key);
926         return 0;
927     }
928
929     X509_ALGOR_set0(alg, OBJ_nid2obj(algnid),
930                     key ? V_ASN1_INTEGER : V_ASN1_UNDEF, key);
931     if (*algs == NULL)
932         *algs = sk_X509_ALGOR_new_null();
933     if (*algs == NULL || !sk_X509_ALGOR_push(*algs, alg)) {
934         X509_ALGOR_free(alg);
935         return 0;
936     }
937     return 1;
938 }
939
940 /* Check to see if a cipher exists and if so add S/MIME capabilities */
941
942 static int cms_add_cipher_smcap(STACK_OF(X509_ALGOR) **sk, int nid, int arg)
943 {
944     if (EVP_get_cipherbynid(nid))
945         return CMS_add_simple_smimecap(sk, nid, arg);
946     return 1;
947 }
948
949 static int cms_add_digest_smcap(STACK_OF(X509_ALGOR) **sk, int nid, int arg)
950 {
951     if (EVP_get_digestbynid(nid))
952         return CMS_add_simple_smimecap(sk, nid, arg);
953     return 1;
954 }
955
956 int CMS_add_standard_smimecap(STACK_OF(X509_ALGOR) **smcap)
957 {
958     if (!cms_add_cipher_smcap(smcap, NID_aes_256_cbc, -1)
959         || !cms_add_digest_smcap(smcap, NID_id_GostR3411_2012_256, -1)
960         || !cms_add_digest_smcap(smcap, NID_id_GostR3411_2012_512, -1)
961         || !cms_add_digest_smcap(smcap, NID_id_GostR3411_94, -1)
962         || !cms_add_cipher_smcap(smcap, NID_id_Gost28147_89, -1)
963         || !cms_add_cipher_smcap(smcap, NID_aes_192_cbc, -1)
964         || !cms_add_cipher_smcap(smcap, NID_aes_128_cbc, -1)
965         || !cms_add_cipher_smcap(smcap, NID_des_ede3_cbc, -1)
966         || !cms_add_cipher_smcap(smcap, NID_rc2_cbc, 128)
967         || !cms_add_cipher_smcap(smcap, NID_rc2_cbc, 64)
968         || !cms_add_cipher_smcap(smcap, NID_des_cbc, -1)
969         || !cms_add_cipher_smcap(smcap, NID_rc2_cbc, 40))
970         return 0;
971     return 1;
972 }