]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/pkcs7/pk7_doit.c
There have been a number of complaints from a number of sources that names
[thirdparty/openssl.git] / crypto / pkcs7 / pk7_doit.c
CommitLineData
d02b48c6 1/* crypto/pkcs7/pk7_doit.c */
58964a49 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15 *
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40 *
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
52 *
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
57 */
58
59#include <stdio.h>
60#include "cryptlib.h"
ec577822
BM
61#include <openssl/rand.h>
62#include <openssl/objects.h>
63#include <openssl/x509.h>
5a9a4b29 64#include <openssl/x509v3.h>
d02b48c6 65
b6436ff2
BL
66static int add_attribute(STACK_OF(X509_ATTRIBUTE) **sk, int nid, int atrtype,
67 void *value);
68static ASN1_TYPE *get_attribute(STACK_OF(X509_ATTRIBUTE) *sk, int nid);
dfeab068 69
6b691a5c 70BIO *PKCS7_dataInit(PKCS7 *p7, BIO *bio)
d02b48c6
RE
71 {
72 int i,j;
dfeab068 73 BIO *out=NULL,*btmp=NULL;
d02b48c6 74 X509_ALGOR *xa;
e778802f
BL
75 const EVP_MD *evp_md;
76 const EVP_CIPHER *evp_cipher=NULL;
426edadf 77 STACK_OF(X509_ALGOR) *md_sk=NULL;
8f0edcd1 78 STACK_OF(PKCS7_RECIP_INFO) *rsk=NULL;
58964a49
RE
79 X509_ALGOR *xalg=NULL;
80 PKCS7_RECIP_INFO *ri=NULL;
81 EVP_PKEY *pkey;
d02b48c6
RE
82
83 i=OBJ_obj2nid(p7->type);
84 p7->state=PKCS7_S_HEADER;
85
86 switch (i)
87 {
88 case NID_pkcs7_signed:
58964a49
RE
89 md_sk=p7->d.sign->md_algs;
90 break;
91 case NID_pkcs7_signedAndEnveloped:
92 rsk=p7->d.signed_and_enveloped->recipientinfo;
93 md_sk=p7->d.signed_and_enveloped->md_algs;
84fa704c
DSH
94 xalg=p7->d.signed_and_enveloped->enc_data->algorithm;
95 evp_cipher=p7->d.signed_and_enveloped->enc_data->cipher;
58964a49 96 if (evp_cipher == NULL)
d02b48c6 97 {
84fa704c
DSH
98 PKCS7err(PKCS7_F_PKCS7_DATAINIT,
99 PKCS7_R_CIPHER_NOT_INITIALIZED);
58964a49
RE
100 goto err;
101 }
58964a49 102 break;
dfeab068
RE
103 case NID_pkcs7_enveloped:
104 rsk=p7->d.enveloped->recipientinfo;
84fa704c
DSH
105 xalg=p7->d.enveloped->enc_data->algorithm;
106 evp_cipher=p7->d.enveloped->enc_data->cipher;
dfeab068
RE
107 if (evp_cipher == NULL)
108 {
84fa704c
DSH
109 PKCS7err(PKCS7_F_PKCS7_DATAINIT,
110 PKCS7_R_CIPHER_NOT_INITIALIZED);
dfeab068
RE
111 goto err;
112 }
dfeab068 113 break;
58964a49
RE
114 default:
115 PKCS7err(PKCS7_F_PKCS7_DATAINIT,PKCS7_R_UNSUPPORTED_CONTENT_TYPE);
116 goto err;
117 }
118
119 if (md_sk != NULL)
120 {
426edadf 121 for (i=0; i<sk_X509_ALGOR_num(md_sk); i++)
58964a49 122 {
426edadf 123 xa=sk_X509_ALGOR_value(md_sk,i);
dfeab068
RE
124 if ((btmp=BIO_new(BIO_f_md())) == NULL)
125 {
126 PKCS7err(PKCS7_F_PKCS7_DATAINIT,ERR_R_BIO_LIB);
127 goto err;
128 }
d02b48c6
RE
129
130 j=OBJ_obj2nid(xa->algorithm);
131 evp_md=EVP_get_digestbyname(OBJ_nid2sn(j));
132 if (evp_md == NULL)
133 {
134 PKCS7err(PKCS7_F_PKCS7_DATAINIT,PKCS7_R_UNKNOWN_DIGEST_TYPE);
135 goto err;
136 }
137
138 BIO_set_md(btmp,evp_md);
139 if (out == NULL)
140 out=btmp;
141 else
142 BIO_push(out,btmp);
dfeab068 143 btmp=NULL;
d02b48c6 144 }
d02b48c6 145 }
58964a49
RE
146
147 if (evp_cipher != NULL)
148 {
149 unsigned char key[EVP_MAX_KEY_LENGTH];
150 unsigned char iv[EVP_MAX_IV_LENGTH];
151 int keylen,ivlen;
152 int jj,max;
153 unsigned char *tmp;
84fa704c 154 EVP_CIPHER_CTX *ctx;
58964a49 155
dfeab068
RE
156 if ((btmp=BIO_new(BIO_f_cipher())) == NULL)
157 {
158 PKCS7err(PKCS7_F_PKCS7_DATAINIT,ERR_R_BIO_LIB);
159 goto err;
160 }
84fa704c 161 BIO_get_cipher_ctx(btmp, &ctx);
58964a49
RE
162 keylen=EVP_CIPHER_key_length(evp_cipher);
163 ivlen=EVP_CIPHER_iv_length(evp_cipher);
eb952088
UM
164 if (RAND_bytes(key,keylen) <= 0)
165 goto err;
84fa704c 166 xalg->algorithm = OBJ_nid2obj(EVP_CIPHER_type(evp_cipher));
e7f97e2d 167 if (ivlen > 0) RAND_pseudo_bytes(iv,ivlen);
1b266dab 168 EVP_CipherInit(ctx, evp_cipher, key, iv, 1);
58964a49 169
884e8ec6 170 if (ivlen > 0) {
884e8ec6
DSH
171 if (xalg->parameter == NULL)
172 xalg->parameter=ASN1_TYPE_new();
173 if(EVP_CIPHER_param_to_asn1(ctx, xalg->parameter) < 0)
174 goto err;
175 }
58964a49
RE
176
177 /* Lets do the pub key stuff :-) */
178 max=0;
8f0edcd1 179 for (i=0; i<sk_PKCS7_RECIP_INFO_num(rsk); i++)
58964a49 180 {
8f0edcd1 181 ri=sk_PKCS7_RECIP_INFO_value(rsk,i);
dfeab068
RE
182 if (ri->cert == NULL)
183 {
184 PKCS7err(PKCS7_F_PKCS7_DATAINIT,PKCS7_R_MISSING_CERIPEND_INFO);
185 goto err;
186 }
58964a49
RE
187 pkey=X509_get_pubkey(ri->cert);
188 jj=EVP_PKEY_size(pkey);
924acc54 189 EVP_PKEY_free(pkey);
58964a49
RE
190 if (max < jj) max=jj;
191 }
26a3a48d 192 if ((tmp=(unsigned char *)OPENSSL_malloc(max)) == NULL)
dfeab068
RE
193 {
194 PKCS7err(PKCS7_F_PKCS7_DATAINIT,ERR_R_MALLOC_FAILURE);
195 goto err;
196 }
8f0edcd1 197 for (i=0; i<sk_PKCS7_RECIP_INFO_num(rsk); i++)
58964a49 198 {
8f0edcd1 199 ri=sk_PKCS7_RECIP_INFO_value(rsk,i);
58964a49
RE
200 pkey=X509_get_pubkey(ri->cert);
201 jj=EVP_PKEY_encrypt(tmp,key,keylen,pkey);
924acc54 202 EVP_PKEY_free(pkey);
dfeab068
RE
203 if (jj <= 0)
204 {
205 PKCS7err(PKCS7_F_PKCS7_DATAINIT,ERR_R_EVP_LIB);
26a3a48d 206 OPENSSL_free(tmp);
dfeab068
RE
207 goto err;
208 }
08e9c1af 209 M_ASN1_OCTET_STRING_set(ri->enc_key,tmp,jj);
58964a49 210 }
26a3a48d 211 OPENSSL_free(tmp);
1b266dab 212 memset(key, 0, keylen);
58964a49 213
58964a49
RE
214 if (out == NULL)
215 out=btmp;
216 else
217 BIO_push(out,btmp);
dfeab068 218 btmp=NULL;
58964a49
RE
219 }
220
8484721a 221 if (bio == NULL) {
d02b48c6
RE
222 if (p7->detached)
223 bio=BIO_new(BIO_s_null());
8484721a 224 else {
d02b48c6 225 if (PKCS7_type_is_signed(p7) &&
8484721a 226 PKCS7_type_is_data(p7->d.sign->contents)) {
d02b48c6 227 ASN1_OCTET_STRING *os;
d02b48c6 228 os=p7->d.sign->contents->d.data;
8484721a
DSH
229 if (os->length > 0) bio =
230 BIO_new_mem_buf(os->data, os->length);
91895a59
DSH
231 }
232 if(bio == NULL) {
8484721a
DSH
233 bio=BIO_new(BIO_s_mem());
234 BIO_set_mem_eof_return(bio,0);
d02b48c6
RE
235 }
236 }
8484721a 237 }
d02b48c6 238 BIO_push(out,bio);
dfeab068
RE
239 bio=NULL;
240 if (0)
241 {
242err:
243 if (out != NULL)
244 BIO_free_all(out);
245 if (btmp != NULL)
246 BIO_free_all(btmp);
247 out=NULL;
248 }
d02b48c6 249 return(out);
dfeab068
RE
250 }
251
252/* int */
84fa704c 253BIO *PKCS7_dataDecode(PKCS7 *p7, EVP_PKEY *pkey, BIO *in_bio, X509 *pcert)
dfeab068
RE
254 {
255 int i,j;
256 BIO *out=NULL,*btmp=NULL,*etmp=NULL,*bio=NULL;
9716a8f9 257 unsigned char *tmp=NULL;
dfeab068
RE
258 X509_ALGOR *xa;
259 ASN1_OCTET_STRING *data_body=NULL;
e778802f
BL
260 const EVP_MD *evp_md;
261 const EVP_CIPHER *evp_cipher=NULL;
dfeab068
RE
262 EVP_CIPHER_CTX *evp_ctx=NULL;
263 X509_ALGOR *enc_alg=NULL;
426edadf 264 STACK_OF(X509_ALGOR) *md_sk=NULL;
8f0edcd1 265 STACK_OF(PKCS7_RECIP_INFO) *rsk=NULL;
dfeab068
RE
266 X509_ALGOR *xalg=NULL;
267 PKCS7_RECIP_INFO *ri=NULL;
dfeab068
RE
268
269 i=OBJ_obj2nid(p7->type);
270 p7->state=PKCS7_S_HEADER;
271
272 switch (i)
273 {
274 case NID_pkcs7_signed:
275 data_body=p7->d.sign->contents->d.data;
276 md_sk=p7->d.sign->md_algs;
277 break;
278 case NID_pkcs7_signedAndEnveloped:
279 rsk=p7->d.signed_and_enveloped->recipientinfo;
280 md_sk=p7->d.signed_and_enveloped->md_algs;
281 data_body=p7->d.signed_and_enveloped->enc_data->enc_data;
282 enc_alg=p7->d.signed_and_enveloped->enc_data->algorithm;
283 evp_cipher=EVP_get_cipherbyname(OBJ_nid2sn(OBJ_obj2nid(enc_alg->algorithm)));
284 if (evp_cipher == NULL)
285 {
84fa704c 286 PKCS7err(PKCS7_F_PKCS7_DATADECODE,PKCS7_R_UNSUPPORTED_CIPHER_TYPE);
dfeab068
RE
287 goto err;
288 }
289 xalg=p7->d.signed_and_enveloped->enc_data->algorithm;
290 break;
291 case NID_pkcs7_enveloped:
292 rsk=p7->d.enveloped->recipientinfo;
293 enc_alg=p7->d.enveloped->enc_data->algorithm;
294 data_body=p7->d.enveloped->enc_data->enc_data;
295 evp_cipher=EVP_get_cipherbyname(OBJ_nid2sn(OBJ_obj2nid(enc_alg->algorithm)));
296 if (evp_cipher == NULL)
297 {
84fa704c 298 PKCS7err(PKCS7_F_PKCS7_DATADECODE,PKCS7_R_UNSUPPORTED_CIPHER_TYPE);
dfeab068
RE
299 goto err;
300 }
301 xalg=p7->d.enveloped->enc_data->algorithm;
302 break;
303 default:
84fa704c 304 PKCS7err(PKCS7_F_PKCS7_DATADECODE,PKCS7_R_UNSUPPORTED_CONTENT_TYPE);
dfeab068
RE
305 goto err;
306 }
307
308 /* We will be checking the signature */
309 if (md_sk != NULL)
310 {
426edadf 311 for (i=0; i<sk_X509_ALGOR_num(md_sk); i++)
dfeab068 312 {
426edadf 313 xa=sk_X509_ALGOR_value(md_sk,i);
dfeab068
RE
314 if ((btmp=BIO_new(BIO_f_md())) == NULL)
315 {
84fa704c 316 PKCS7err(PKCS7_F_PKCS7_DATADECODE,ERR_R_BIO_LIB);
dfeab068
RE
317 goto err;
318 }
319
320 j=OBJ_obj2nid(xa->algorithm);
321 evp_md=EVP_get_digestbyname(OBJ_nid2sn(j));
322 if (evp_md == NULL)
323 {
84fa704c 324 PKCS7err(PKCS7_F_PKCS7_DATADECODE,PKCS7_R_UNKNOWN_DIGEST_TYPE);
dfeab068
RE
325 goto err;
326 }
327
328 BIO_set_md(btmp,evp_md);
329 if (out == NULL)
330 out=btmp;
331 else
332 BIO_push(out,btmp);
333 btmp=NULL;
334 }
335 }
336
337 if (evp_cipher != NULL)
338 {
339#if 0
340 unsigned char key[EVP_MAX_KEY_LENGTH];
341 unsigned char iv[EVP_MAX_IV_LENGTH];
342 unsigned char *p;
343 int keylen,ivlen;
344 int max;
345 X509_OBJECT ret;
346#endif
347 int jj;
348
349 if ((etmp=BIO_new(BIO_f_cipher())) == NULL)
350 {
84fa704c 351 PKCS7err(PKCS7_F_PKCS7_DATADECODE,ERR_R_BIO_LIB);
dfeab068
RE
352 goto err;
353 }
354
355 /* It was encrypted, we need to decrypt the secret key
356 * with the private key */
357
84fa704c
DSH
358 /* Find the recipientInfo which matches the passed certificate
359 * (if any)
10243d97
DSH
360 */
361
8f0edcd1
BL
362 for (i=0; i<sk_PKCS7_RECIP_INFO_num(rsk); i++) {
363 ri=sk_PKCS7_RECIP_INFO_value(rsk,i);
84fa704c
DSH
364 if(!X509_NAME_cmp(ri->issuer_and_serial->issuer,
365 pcert->cert_info->issuer) &&
08e9c1af 366 !M_ASN1_INTEGER_cmp(pcert->cert_info->serialNumber,
84fa704c 367 ri->issuer_and_serial->serial)) break;
dfeab068 368 ri=NULL;
84fa704c
DSH
369 }
370 if (ri == NULL) {
371 PKCS7err(PKCS7_F_PKCS7_DATADECODE,
372 PKCS7_R_NO_RECIPIENT_MATCHES_CERTIFICATE);
dfeab068 373 return(NULL);
84fa704c 374 }
dfeab068
RE
375
376 jj=EVP_PKEY_size(pkey);
26a3a48d 377 tmp=(unsigned char *)OPENSSL_malloc(jj+10);
dfeab068
RE
378 if (tmp == NULL)
379 {
84fa704c 380 PKCS7err(PKCS7_F_PKCS7_DATADECODE,ERR_R_MALLOC_FAILURE);
dfeab068
RE
381 goto err;
382 }
383
9716a8f9
DSH
384 jj=EVP_PKEY_decrypt(tmp, M_ASN1_STRING_data(ri->enc_key),
385 M_ASN1_STRING_length(ri->enc_key), pkey);
dfeab068
RE
386 if (jj <= 0)
387 {
84fa704c 388 PKCS7err(PKCS7_F_PKCS7_DATADECODE,ERR_R_EVP_LIB);
dfeab068
RE
389 goto err;
390 }
391
392 evp_ctx=NULL;
393 BIO_get_cipher_ctx(etmp,&evp_ctx);
394 EVP_CipherInit(evp_ctx,evp_cipher,NULL,NULL,0);
395 if (EVP_CIPHER_asn1_to_param(evp_ctx,enc_alg->parameter) < 0)
396 return(NULL);
397
9716a8f9 398 if (jj != EVP_CIPHER_CTX_key_length(evp_ctx)) {
7f060601 399 /* Some S/MIME clients don't use the same key
9716a8f9
DSH
400 * and effective key length. The key length is
401 * determined by the size of the decrypted RSA key.
9716a8f9 402 */
7f060601 403 if(!EVP_CIPHER_CTX_set_key_length(evp_ctx, jj))
63da21c0 404 {
9716a8f9 405 PKCS7err(PKCS7_F_PKCS7_DATADECODE,
84fa704c 406 PKCS7_R_DECRYPTED_KEY_IS_WRONG_LENGTH);
9716a8f9 407 goto err;
63da21c0 408 }
7f060601
DSH
409 }
410 EVP_CipherInit(evp_ctx,NULL,tmp,NULL,0);
dfeab068
RE
411
412 memset(tmp,0,jj);
413
414 if (out == NULL)
415 out=etmp;
416 else
417 BIO_push(out,etmp);
418 etmp=NULL;
419 }
420
421#if 1
422 if (p7->detached || (in_bio != NULL))
423 {
424 bio=in_bio;
425 }
426 else
427 {
8484721a 428#if 0
dfeab068
RE
429 bio=BIO_new(BIO_s_mem());
430 /* We need to set this so that when we have read all
431 * the data, the encrypt BIO, if present, will read
432 * EOF and encode the last few bytes */
433 BIO_set_mem_eof_return(bio,0);
434
435 if (data_body->length > 0)
436 BIO_write(bio,(char *)data_body->data,data_body->length);
8484721a
DSH
437#else
438 if (data_body->length > 0)
439 bio = BIO_new_mem_buf(data_body->data,data_body->length);
440 else {
441 bio=BIO_new(BIO_s_mem());
442 BIO_set_mem_eof_return(bio,0);
443 }
444#endif
dfeab068
RE
445 }
446 BIO_push(out,bio);
447 bio=NULL;
448#endif
449 if (0)
450 {
d02b48c6 451err:
dfeab068
RE
452 if (out != NULL) BIO_free_all(out);
453 if (btmp != NULL) BIO_free_all(btmp);
454 if (etmp != NULL) BIO_free_all(etmp);
455 if (bio != NULL) BIO_free_all(bio);
456 out=NULL;
457 }
458 if (tmp != NULL)
26a3a48d 459 OPENSSL_free(tmp);
dfeab068 460 return(out);
d02b48c6
RE
461 }
462
6b691a5c 463int PKCS7_dataFinal(PKCS7 *p7, BIO *bio)
d02b48c6
RE
464 {
465 int ret=0;
466 int i,j;
467 BIO *btmp;
468 BUF_MEM *buf_mem=NULL;
469 BUF_MEM *buf=NULL;
470 PKCS7_SIGNER_INFO *si;
471 EVP_MD_CTX *mdc,ctx_tmp;
b6436ff2 472 STACK_OF(X509_ATTRIBUTE) *sk;
b05b50e6 473 STACK_OF(PKCS7_SIGNER_INFO) *si_sk=NULL;
d02b48c6
RE
474 unsigned char *p,*pp=NULL;
475 int x;
58964a49 476 ASN1_OCTET_STRING *os=NULL;
d02b48c6
RE
477
478 i=OBJ_obj2nid(p7->type);
479 p7->state=PKCS7_S_HEADER;
480
481 switch (i)
482 {
58964a49
RE
483 case NID_pkcs7_signedAndEnveloped:
484 /* XXXXXXXXXXXXXXXX */
485 si_sk=p7->d.signed_and_enveloped->signer_info;
08e9c1af 486 os=M_ASN1_OCTET_STRING_new();
58964a49
RE
487 p7->d.signed_and_enveloped->enc_data->enc_data=os;
488 break;
dfeab068
RE
489 case NID_pkcs7_enveloped:
490 /* XXXXXXXXXXXXXXXX */
08e9c1af 491 os=M_ASN1_OCTET_STRING_new();
dfeab068
RE
492 p7->d.enveloped->enc_data->enc_data=os;
493 break;
d02b48c6 494 case NID_pkcs7_signed:
58964a49
RE
495 si_sk=p7->d.sign->signer_info;
496 os=p7->d.sign->contents->d.data;
924acc54
DSH
497 /* If detached data then the content is excluded */
498 if(p7->detached) {
08e9c1af 499 M_ASN1_OCTET_STRING_free(os);
924acc54
DSH
500 p7->d.sign->contents->d.data = NULL;
501 }
58964a49
RE
502 break;
503 }
d02b48c6 504
58964a49
RE
505 if (si_sk != NULL)
506 {
dfeab068
RE
507 if ((buf=BUF_MEM_new()) == NULL)
508 {
509 PKCS7err(PKCS7_F_PKCS7_DATASIGN,ERR_R_BIO_LIB);
510 goto err;
511 }
b05b50e6 512 for (i=0; i<sk_PKCS7_SIGNER_INFO_num(si_sk); i++)
d02b48c6 513 {
b05b50e6 514 si=sk_PKCS7_SIGNER_INFO_value(si_sk,i);
dfeab068
RE
515 if (si->pkey == NULL) continue;
516
517 j=OBJ_obj2nid(si->digest_alg->algorithm);
d02b48c6
RE
518
519 btmp=bio;
520 for (;;)
521 {
522 if ((btmp=BIO_find_type(btmp,BIO_TYPE_MD))
523 == NULL)
524 {
58964a49 525 PKCS7err(PKCS7_F_PKCS7_DATASIGN,PKCS7_R_UNABLE_TO_FIND_MESSAGE_DIGEST);
d02b48c6
RE
526 goto err;
527 }
528 BIO_get_md_ctx(btmp,&mdc);
529 if (mdc == NULL)
530 {
58964a49 531 PKCS7err(PKCS7_F_PKCS7_DATASIGN,PKCS7_R_INTERNAL_ERROR);
d02b48c6
RE
532 goto err;
533 }
72b60351 534 if (EVP_MD_CTX_type(mdc) == j)
d02b48c6
RE
535 break;
536 else
537 btmp=btmp->next_bio;
538 }
539
540 /* We now have the EVP_MD_CTX, lets do the
541 * signing. */
542 memcpy(&ctx_tmp,mdc,sizeof(ctx_tmp));
543 if (!BUF_MEM_grow(buf,EVP_PKEY_size(si->pkey)))
dfeab068
RE
544 {
545 PKCS7err(PKCS7_F_PKCS7_DATASIGN,ERR_R_BIO_LIB);
d02b48c6 546 goto err;
dfeab068 547 }
d02b48c6
RE
548
549 sk=si->auth_attr;
dfeab068
RE
550
551 /* If there are attributes, we add the digest
552 * attribute and only sign the attributes */
b6436ff2 553 if ((sk != NULL) && (sk_X509_ATTRIBUTE_num(sk) != 0))
d02b48c6 554 {
dfeab068
RE
555 unsigned char md_data[EVP_MAX_MD_SIZE];
556 unsigned int md_len;
557 ASN1_OCTET_STRING *digest;
558 ASN1_UTCTIME *sign_time;
e778802f 559 const EVP_MD *md_tmp;
dfeab068
RE
560
561 /* Add signing time */
562 sign_time=X509_gmtime_adj(NULL,0);
563 PKCS7_add_signed_attribute(si,
564 NID_pkcs9_signingTime,
c8b41850 565 V_ASN1_UTCTIME,sign_time);
dfeab068
RE
566
567 /* Add digest */
72b60351 568 md_tmp=EVP_MD_CTX_md(&ctx_tmp);
dfeab068 569 EVP_DigestFinal(&ctx_tmp,md_data,&md_len);
08e9c1af
DSH
570 digest=M_ASN1_OCTET_STRING_new();
571 M_ASN1_OCTET_STRING_set(digest,md_data,md_len);
10243d97
DSH
572 PKCS7_add_signed_attribute(si,
573 NID_pkcs9_messageDigest,
c8b41850 574 V_ASN1_OCTET_STRING,digest);
dfeab068
RE
575
576 /* Now sign the mess */
577 EVP_SignInit(&ctx_tmp,md_tmp);
b6436ff2
BL
578 x=i2d_ASN1_SET_OF_X509_ATTRIBUTE(sk,NULL,
579 i2d_X509_ATTRIBUTE,
580 V_ASN1_SET,V_ASN1_UNIVERSAL,IS_SET);
26a3a48d 581 pp=(unsigned char *)OPENSSL_malloc(x);
d02b48c6 582 p=pp;
b6436ff2
BL
583 i2d_ASN1_SET_OF_X509_ATTRIBUTE(sk,&p,
584 i2d_X509_ATTRIBUTE,
585 V_ASN1_SET,V_ASN1_UNIVERSAL,IS_SET);
d02b48c6 586 EVP_SignUpdate(&ctx_tmp,pp,x);
26a3a48d 587 OPENSSL_free(pp);
dfeab068 588 pp=NULL;
d02b48c6
RE
589 }
590
dfeab068
RE
591 if (si->pkey->type == EVP_PKEY_DSA)
592 ctx_tmp.digest=EVP_dss1();
593
58964a49 594 if (!EVP_SignFinal(&ctx_tmp,(unsigned char *)buf->data,
d02b48c6 595 (unsigned int *)&buf->length,si->pkey))
dfeab068
RE
596 {
597 PKCS7err(PKCS7_F_PKCS7_DATASIGN,ERR_R_EVP_LIB);
d02b48c6 598 goto err;
dfeab068 599 }
d02b48c6
RE
600 if (!ASN1_STRING_set(si->enc_digest,
601 (unsigned char *)buf->data,buf->length))
d02b48c6 602 {
dfeab068 603 PKCS7err(PKCS7_F_PKCS7_DATASIGN,ERR_R_ASN1_LIB);
d02b48c6
RE
604 goto err;
605 }
d02b48c6 606 }
d02b48c6
RE
607 }
608
924acc54 609 if (!p7->detached)
dfeab068
RE
610 {
611 btmp=BIO_find_type(bio,BIO_TYPE_MEM);
612 if (btmp == NULL)
613 {
614 PKCS7err(PKCS7_F_PKCS7_DATASIGN,PKCS7_R_UNABLE_TO_FIND_MEM_BIO);
615 goto err;
616 }
617 BIO_get_mem_ptr(btmp,&buf_mem);
8484721a
DSH
618 /* Mark the BIO read only then we can use its copy of the data
619 * instead of making an extra copy.
620 */
621 BIO_set_flags(btmp, BIO_FLAGS_MEM_RDONLY);
622 BIO_set_mem_eof_return(btmp, 0);
623 os->data = (unsigned char *)buf_mem->data;
624 os->length = buf_mem->length;
625#if 0
08e9c1af 626 M_ASN1_OCTET_STRING_set(os,
dfeab068 627 (unsigned char *)buf_mem->data,buf_mem->length);
8484721a 628#endif
dfeab068 629 }
26a3a48d 630 if (pp != NULL) OPENSSL_free(pp);
dfeab068
RE
631 pp=NULL;
632
d02b48c6
RE
633 ret=1;
634err:
635 if (buf != NULL) BUF_MEM_free(buf);
636 return(ret);
637 }
638
6b691a5c
UM
639int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx, BIO *bio,
640 PKCS7 *p7, PKCS7_SIGNER_INFO *si)
d02b48c6 641 {
d02b48c6 642 PKCS7_ISSUER_AND_SERIAL *ias;
dfeab068 643 int ret=0,i;
f73e07cf 644 STACK_OF(X509) *cert;
d02b48c6
RE
645 X509 *x509;
646
dfeab068
RE
647 if (PKCS7_type_is_signed(p7))
648 {
649 cert=p7->d.sign->cert;
650 }
651 else if (PKCS7_type_is_signedAndEnveloped(p7))
652 {
653 cert=p7->d.signed_and_enveloped->cert;
654 }
655 else
656 {
657 PKCS7err(PKCS7_F_PKCS7_DATAVERIFY,PKCS7_R_WRONG_PKCS7_TYPE);
658 goto err;
659 }
58964a49 660 /* XXXXXXXXXXXXXXXXXXXXXXX */
d02b48c6 661 ias=si->issuer_and_serial;
d02b48c6 662
dfeab068 663 x509=X509_find_by_issuer_and_serial(cert,ias->issuer,ias->serial);
d02b48c6
RE
664
665 /* were we able to find the cert in passed to us */
666 if (x509 == NULL)
667 {
668 PKCS7err(PKCS7_F_PKCS7_DATAVERIFY,PKCS7_R_UNABLE_TO_FIND_CERTIFICATE);
669 goto err;
670 }
671
672 /* Lets verify */
dfeab068 673 X509_STORE_CTX_init(ctx,cert_store,x509,cert);
5a9a4b29 674 X509_STORE_CTX_set_purpose(ctx, X509_PURPOSE_SMIME_SIGN);
d02b48c6 675 i=X509_verify_cert(ctx);
dfeab068
RE
676 if (i <= 0)
677 {
678 PKCS7err(PKCS7_F_PKCS7_DATAVERIFY,ERR_R_X509_LIB);
0fa197d8 679 X509_STORE_CTX_cleanup(ctx);
dfeab068
RE
680 goto err;
681 }
d02b48c6
RE
682 X509_STORE_CTX_cleanup(ctx);
683
170afce5
DSH
684 return PKCS7_signatureVerify(bio, p7, si, x509);
685 err:
686 return ret;
687 }
688
689int PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si,
690 X509 *x509)
691 {
692 ASN1_OCTET_STRING *os;
693 EVP_MD_CTX mdc_tmp,*mdc;
694 unsigned char *pp,*p;
695 int ret=0,i;
696 int md_type;
697 STACK_OF(X509_ATTRIBUTE) *sk;
698 BIO *btmp;
699 EVP_PKEY *pkey;
700
701 if (!PKCS7_type_is_signed(p7) &&
702 !PKCS7_type_is_signedAndEnveloped(p7)) {
703 PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY,
704 PKCS7_R_WRONG_PKCS7_TYPE);
705 goto err;
706 }
707
d02b48c6
RE
708 md_type=OBJ_obj2nid(si->digest_alg->algorithm);
709
710 btmp=bio;
711 for (;;)
712 {
713 if ((btmp == NULL) ||
714 ((btmp=BIO_find_type(btmp,BIO_TYPE_MD)) == NULL))
715 {
170afce5
DSH
716 PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY,
717 PKCS7_R_UNABLE_TO_FIND_MESSAGE_DIGEST);
d02b48c6
RE
718 goto err;
719 }
720 BIO_get_md_ctx(btmp,&mdc);
721 if (mdc == NULL)
722 {
170afce5
DSH
723 PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY,
724 PKCS7_R_INTERNAL_ERROR);
d02b48c6
RE
725 goto err;
726 }
72b60351 727 if (EVP_MD_CTX_type(mdc) == md_type)
d02b48c6
RE
728 break;
729 btmp=btmp->next_bio;
730 }
731
dfeab068
RE
732 /* mdc is the digest ctx that we want, unless there are attributes,
733 * in which case the digest is the signed attributes */
d02b48c6
RE
734 memcpy(&mdc_tmp,mdc,sizeof(mdc_tmp));
735
736 sk=si->auth_attr;
b6436ff2 737 if ((sk != NULL) && (sk_X509_ATTRIBUTE_num(sk) != 0))
d02b48c6 738 {
dfeab068 739 unsigned char md_dat[EVP_MAX_MD_SIZE];
0b415fb0 740 unsigned int md_len;
dfeab068
RE
741 ASN1_OCTET_STRING *message_digest;
742
743 EVP_DigestFinal(&mdc_tmp,md_dat,&md_len);
744 message_digest=PKCS7_digest_from_attributes(sk);
745 if (!message_digest)
746 {
170afce5
DSH
747 PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY,
748 PKCS7_R_UNABLE_TO_FIND_MESSAGE_DIGEST);
dfeab068
RE
749 goto err;
750 }
0b415fb0 751 if ((message_digest->length != (int)md_len) ||
dfeab068
RE
752 (memcmp(message_digest->data,md_dat,md_len)))
753 {
754#if 0
755{
756int ii;
757for (ii=0; ii<message_digest->length; ii++)
758 printf("%02X",message_digest->data[ii]); printf(" sent\n");
759for (ii=0; ii<md_len; ii++) printf("%02X",md_dat[ii]); printf(" calc\n");
760}
761#endif
170afce5
DSH
762 PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY,
763 PKCS7_R_DIGEST_FAILURE);
dfeab068
RE
764 ret= -1;
765 goto err;
766 }
767
768 EVP_VerifyInit(&mdc_tmp,EVP_get_digestbynid(md_type));
924acc54
DSH
769 /* Note: when forming the encoding of the attributes we
770 * shouldn't reorder them or this will break the signature.
771 * This is done by using the IS_SEQUENCE flag.
772 */
b6436ff2 773 i=i2d_ASN1_SET_OF_X509_ATTRIBUTE(sk,NULL,i2d_X509_ATTRIBUTE,
924acc54 774 V_ASN1_SET,V_ASN1_UNIVERSAL, IS_SEQUENCE);
26a3a48d 775 pp=OPENSSL_malloc(i);
d02b48c6 776 p=pp;
b6436ff2 777 i2d_ASN1_SET_OF_X509_ATTRIBUTE(sk,&p,i2d_X509_ATTRIBUTE,
924acc54 778 V_ASN1_SET,V_ASN1_UNIVERSAL, IS_SEQUENCE);
d02b48c6 779 EVP_VerifyUpdate(&mdc_tmp,pp,i);
924acc54 780
26a3a48d 781 OPENSSL_free(pp);
d02b48c6
RE
782 }
783
784 os=si->enc_digest;
924acc54
DSH
785 pkey = X509_get_pubkey(x509);
786 if(pkey->type == EVP_PKEY_DSA) mdc_tmp.digest=EVP_dss1();
dfeab068 787
924acc54
DSH
788 i=EVP_VerifyFinal(&mdc_tmp,os->data,os->length, pkey);
789 EVP_PKEY_free(pkey);
d02b48c6
RE
790 if (i <= 0)
791 {
170afce5
DSH
792 PKCS7err(PKCS7_F_PKCS7_SIGNATUREVERIFY,
793 PKCS7_R_SIGNATURE_FAILURE);
d02b48c6
RE
794 ret= -1;
795 goto err;
796 }
797 else
798 ret=1;
799err:
800 return(ret);
801 }
802
6b691a5c 803PKCS7_ISSUER_AND_SERIAL *PKCS7_get_issuer_and_serial(PKCS7 *p7, int idx)
dfeab068 804 {
8f0edcd1 805 STACK_OF(PKCS7_RECIP_INFO) *rsk;
dfeab068
RE
806 PKCS7_RECIP_INFO *ri;
807 int i;
808
809 i=OBJ_obj2nid(p7->type);
810 if (i != NID_pkcs7_signedAndEnveloped) return(NULL);
811 rsk=p7->d.signed_and_enveloped->recipientinfo;
8f0edcd1
BL
812 ri=sk_PKCS7_RECIP_INFO_value(rsk,0);
813 if (sk_PKCS7_RECIP_INFO_num(rsk) <= idx) return(NULL);
814 ri=sk_PKCS7_RECIP_INFO_value(rsk,idx);
dfeab068
RE
815 return(ri->issuer_and_serial);
816 }
817
6b691a5c 818ASN1_TYPE *PKCS7_get_signed_attribute(PKCS7_SIGNER_INFO *si, int nid)
dfeab068
RE
819 {
820 return(get_attribute(si->auth_attr,nid));
821 }
822
6b691a5c 823ASN1_TYPE *PKCS7_get_attribute(PKCS7_SIGNER_INFO *si, int nid)
dfeab068
RE
824 {
825 return(get_attribute(si->unauth_attr,nid));
826 }
827
b6436ff2 828static ASN1_TYPE *get_attribute(STACK_OF(X509_ATTRIBUTE) *sk, int nid)
dfeab068
RE
829 {
830 int i;
831 X509_ATTRIBUTE *xa;
832 ASN1_OBJECT *o;
833
834 o=OBJ_nid2obj(nid);
10243d97 835 if (!o || !sk) return(NULL);
b6436ff2 836 for (i=0; i<sk_X509_ATTRIBUTE_num(sk); i++)
dfeab068 837 {
b6436ff2 838 xa=sk_X509_ATTRIBUTE_value(sk,i);
dfeab068
RE
839 if (OBJ_cmp(xa->object,o) == 0)
840 {
d35ea5b0
BL
841 if (xa->set && sk_ASN1_TYPE_num(xa->value.set))
842 return(sk_ASN1_TYPE_value(xa->value.set,0));
dfeab068
RE
843 else
844 return(NULL);
845 }
846 }
847 return(NULL);
848 }
849
b6436ff2 850ASN1_OCTET_STRING *PKCS7_digest_from_attributes(STACK_OF(X509_ATTRIBUTE) *sk)
10243d97 851{
dfeab068 852 ASN1_TYPE *astype;
10243d97
DSH
853 if(!(astype = get_attribute(sk, NID_pkcs9_messageDigest))) return NULL;
854 return astype->value.octet_string;
855}
dfeab068 856
b6436ff2
BL
857int PKCS7_set_signed_attributes(PKCS7_SIGNER_INFO *p7si,
858 STACK_OF(X509_ATTRIBUTE) *sk)
dfeab068
RE
859 {
860 int i;
861
862 if (p7si->auth_attr != NULL)
b6436ff2
BL
863 sk_X509_ATTRIBUTE_pop_free(p7si->auth_attr,X509_ATTRIBUTE_free);
864 p7si->auth_attr=sk_X509_ATTRIBUTE_dup(sk);
865 for (i=0; i<sk_X509_ATTRIBUTE_num(sk); i++)
dfeab068 866 {
b6436ff2
BL
867 if ((sk_X509_ATTRIBUTE_set(p7si->auth_attr,i,
868 X509_ATTRIBUTE_dup(sk_X509_ATTRIBUTE_value(sk,i))))
869 == NULL)
dfeab068
RE
870 return(0);
871 }
872 return(1);
873 }
874
b6436ff2 875int PKCS7_set_attributes(PKCS7_SIGNER_INFO *p7si, STACK_OF(X509_ATTRIBUTE) *sk)
dfeab068
RE
876 {
877 int i;
878
879 if (p7si->unauth_attr != NULL)
b6436ff2
BL
880 sk_X509_ATTRIBUTE_pop_free(p7si->unauth_attr,
881 X509_ATTRIBUTE_free);
882 p7si->unauth_attr=sk_X509_ATTRIBUTE_dup(sk);
883 for (i=0; i<sk_X509_ATTRIBUTE_num(sk); i++)
dfeab068 884 {
b6436ff2
BL
885 if ((sk_X509_ATTRIBUTE_set(p7si->unauth_attr,i,
886 X509_ATTRIBUTE_dup(sk_X509_ATTRIBUTE_value(sk,i))))
887 == NULL)
dfeab068
RE
888 return(0);
889 }
890 return(1);
891 }
892
6b691a5c 893int PKCS7_add_signed_attribute(PKCS7_SIGNER_INFO *p7si, int nid, int atrtype,
c8b41850 894 void *value)
dfeab068
RE
895 {
896 return(add_attribute(&(p7si->auth_attr),nid,atrtype,value));
897 }
898
6b691a5c 899int PKCS7_add_attribute(PKCS7_SIGNER_INFO *p7si, int nid, int atrtype,
c8b41850 900 void *value)
dfeab068
RE
901 {
902 return(add_attribute(&(p7si->unauth_attr),nid,atrtype,value));
903 }
904
b6436ff2
BL
905static int add_attribute(STACK_OF(X509_ATTRIBUTE) **sk, int nid, int atrtype,
906 void *value)
dfeab068
RE
907 {
908 X509_ATTRIBUTE *attr=NULL;
dfeab068
RE
909
910 if (*sk == NULL)
911 {
b6436ff2 912 *sk = sk_X509_ATTRIBUTE_new(NULL);
dfeab068
RE
913new_attrib:
914 attr=X509_ATTRIBUTE_create(nid,atrtype,value);
b6436ff2 915 sk_X509_ATTRIBUTE_push(*sk,attr);
dfeab068
RE
916 }
917 else
918 {
919 int i;
920
b6436ff2 921 for (i=0; i<sk_X509_ATTRIBUTE_num(*sk); i++)
dfeab068 922 {
b6436ff2 923 attr=sk_X509_ATTRIBUTE_value(*sk,i);
dfeab068
RE
924 if (OBJ_obj2nid(attr->object) == nid)
925 {
926 X509_ATTRIBUTE_free(attr);
927 attr=X509_ATTRIBUTE_create(nid,atrtype,value);
b6436ff2 928 sk_X509_ATTRIBUTE_set(*sk,i,attr);
dfeab068
RE
929 goto end;
930 }
931 }
932 goto new_attrib;
933 }
934end:
935 return(1);
936 }
937