]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/pkcs12.c
"Show" more respect to no-sha* config options.
[thirdparty/openssl.git] / apps / pkcs12.c
CommitLineData
ee0508d4 1/* pkcs12.c */
cf1b7d96 2#if !defined(OPENSSL_NO_DES) && !defined(OPENSSL_NO_SHA1)
a8515441 3
ee0508d4 4/* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
9a48b07e 5 * project.
ee0508d4
DSH
6 */
7/* ====================================================================
9a48b07e 8 * Copyright (c) 1999-2002 The OpenSSL Project. All rights reserved.
ee0508d4
DSH
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 *
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 *
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in
19 * the documentation and/or other materials provided with the
20 * distribution.
21 *
22 * 3. All advertising materials mentioning features or use of this
23 * software must display the following acknowledgment:
24 * "This product includes software developed by the OpenSSL Project
25 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
26 *
27 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
28 * endorse or promote products derived from this software without
29 * prior written permission. For written permission, please contact
30 * licensing@OpenSSL.org.
31 *
32 * 5. Products derived from this software may not be called "OpenSSL"
33 * nor may "OpenSSL" appear in their names without prior written
34 * permission of the OpenSSL Project.
35 *
36 * 6. Redistributions of any form whatsoever must retain the following
37 * acknowledgment:
38 * "This product includes software developed by the OpenSSL Project
39 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
40 *
41 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
42 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
44 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
45 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
46 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
47 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
48 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
50 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
51 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
52 * OF THE POSSIBILITY OF SUCH DAMAGE.
53 * ====================================================================
54 *
55 * This product includes cryptographic software written by Eric Young
56 * (eay@cryptsoft.com). This product includes software written by Tim
57 * Hudson (tjh@cryptsoft.com).
58 *
59 */
60
61#include <stdio.h>
62#include <stdlib.h>
63#include <string.h>
f07fb9b2 64#include "apps.h"
a873356c 65#include <openssl/crypto.h>
ec577822 66#include <openssl/err.h>
f07fb9b2 67#include <openssl/pem.h>
ec577822 68#include <openssl/pkcs12.h>
ee0508d4 69
ee0508d4
DSH
70#define PROG pkcs12_main
71
13588350 72const EVP_CIPHER *enc;
ee0508d4 73
ee0508d4
DSH
74
75#define NOKEYS 0x1
76#define NOCERTS 0x2
77#define INFO 0x4
78#define CLCERTS 0x8
79#define CACERTS 0x10
80
88364bc2 81int get_cert_chain (X509 *cert, X509_STORE *store, STACK_OF(X509) **chain);
f07fb9b2 82int dump_certs_keys_p12(BIO *out, PKCS12 *p12, char *pass, int passlen, int options, char *pempass);
f2716dad
BL
83int dump_certs_pkeys_bags(BIO *out, STACK_OF(PKCS12_SAFEBAG) *bags, char *pass,
84 int passlen, int options, char *pempass);
f07fb9b2 85int dump_certs_pkeys_bag(BIO *out, PKCS12_SAFEBAG *bags, char *pass, int passlen, int options, char *pempass);
7d727231 86int print_attribs(BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst,const char *name);
ee0508d4
DSH
87void hex_prin(BIO *out, unsigned char *buf, int len);
88int alg_print(BIO *x, X509_ALGOR *alg);
84c15db5 89int cert_load(BIO *in, STACK_OF(X509) *sk);
667ac4ec
RE
90
91int MAIN(int, char **);
92
6b691a5c 93int MAIN(int argc, char **argv)
ee0508d4 94{
5270e702 95 ENGINE *e = NULL;
ee0508d4
DSH
96 char *infile=NULL, *outfile=NULL, *keyname = NULL;
97 char *certfile=NULL;
5abc8ae6 98 BIO *in=NULL, *out = NULL;
ee0508d4
DSH
99 char **args;
100 char *name = NULL;
f2a253e0 101 char *csp_name = NULL;
ee0508d4
DSH
102 PKCS12 *p12 = NULL;
103 char pass[50], macpass[50];
104 int export_cert = 0;
105 int options = 0;
106 int chain = 0;
107 int badarg = 0;
e84240d4 108 int iter = PKCS12_DEFAULT_ITER;
dad666fb 109 int maciter = PKCS12_DEFAULT_ITER;
ee0508d4
DSH
110 int twopass = 0;
111 int keytype = 0;
112 int cert_pbe = NID_pbe_WithSHA1And40BitRC2_CBC;
525f51f6 113 int key_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
ee0508d4
DSH
114 int ret = 1;
115 int macver = 1;
e40b7abe 116 int noprompt = 0;
ee0508d4 117 STACK *canames = NULL;
e40b7abe 118 char *cpass = NULL, *mpass = NULL;
a3fe382e 119 char *passargin = NULL, *passargout = NULL, *passarg = NULL;
f07fb9b2 120 char *passin = NULL, *passout = NULL;
f365611c 121 char *inrand = NULL;
88364bc2 122 char *CApath = NULL, *CAfile = NULL;
0b13e9f0 123#ifndef OPENSSL_NO_ENGINE
5270e702 124 char *engine=NULL;
0b13e9f0 125#endif
ee0508d4
DSH
126
127 apps_startup();
128
129 enc = EVP_des_ede3_cbc();
130 if (bio_err == NULL ) bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
131
3647bee2
DSH
132 if (!load_config(bio_err, NULL))
133 goto end;
134
ee0508d4
DSH
135 args = argv + 1;
136
137
138 while (*args) {
139 if (*args[0] == '-') {
140 if (!strcmp (*args, "-nokeys")) options |= NOKEYS;
141 else if (!strcmp (*args, "-keyex")) keytype = KEY_EX;
142 else if (!strcmp (*args, "-keysig")) keytype = KEY_SIG;
143 else if (!strcmp (*args, "-nocerts")) options |= NOCERTS;
144 else if (!strcmp (*args, "-clcerts")) options |= CLCERTS;
145 else if (!strcmp (*args, "-cacerts")) options |= CACERTS;
146 else if (!strcmp (*args, "-noout")) options |= (NOKEYS|NOCERTS);
147 else if (!strcmp (*args, "-info")) options |= INFO;
148 else if (!strcmp (*args, "-chain")) chain = 1;
149 else if (!strcmp (*args, "-twopass")) twopass = 1;
150 else if (!strcmp (*args, "-nomacver")) macver = 0;
151 else if (!strcmp (*args, "-descert"))
152 cert_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
153 else if (!strcmp (*args, "-export")) export_cert = 1;
154 else if (!strcmp (*args, "-des")) enc=EVP_des_cbc();
cf1b7d96 155#ifndef OPENSSL_NO_IDEA
ee0508d4
DSH
156 else if (!strcmp (*args, "-idea")) enc=EVP_idea_cbc();
157#endif
158 else if (!strcmp (*args, "-des3")) enc = EVP_des_ede3_cbc();
b3dfaaa1 159#ifndef OPENSSL_NO_AES
31188ee1
DSH
160 else if (!strcmp(*args,"-aes128")) enc=EVP_aes_128_cbc();
161 else if (!strcmp(*args,"-aes192")) enc=EVP_aes_192_cbc();
162 else if (!strcmp(*args,"-aes256")) enc=EVP_aes_256_cbc();
b3dfaaa1 163#endif
ee0508d4 164 else if (!strcmp (*args, "-noiter")) iter = 1;
e84240d4
DSH
165 else if (!strcmp (*args, "-maciter"))
166 maciter = PKCS12_DEFAULT_ITER;
dad666fb
DSH
167 else if (!strcmp (*args, "-nomaciter"))
168 maciter = 1;
9a48b07e
DSH
169 else if (!strcmp (*args, "-nomac"))
170 maciter = -1;
ee0508d4 171 else if (!strcmp (*args, "-nodes")) enc=NULL;
525f51f6
DSH
172 else if (!strcmp (*args, "-certpbe")) {
173 if (args[1]) {
174 args++;
9a48b07e
DSH
175 if (!strcmp(*args, "NONE"))
176 cert_pbe = -1;
525f51f6
DSH
177 cert_pbe=OBJ_txt2nid(*args);
178 if(cert_pbe == NID_undef) {
179 BIO_printf(bio_err,
180 "Unknown PBE algorithm %s\n", *args);
181 badarg = 1;
182 }
183 } else badarg = 1;
184 } else if (!strcmp (*args, "-keypbe")) {
185 if (args[1]) {
186 args++;
9a48b07e
DSH
187 if (!strcmp(*args, "NONE"))
188 key_pbe = -1;
189 else
190 key_pbe=OBJ_txt2nid(*args);
525f51f6
DSH
191 if(key_pbe == NID_undef) {
192 BIO_printf(bio_err,
193 "Unknown PBE algorithm %s\n", *args);
194 badarg = 1;
195 }
196 } else badarg = 1;
d13e4eb0
DSH
197 } else if (!strcmp (*args, "-rand")) {
198 if (args[1]) {
199 args++;
200 inrand = *args;
201 } else badarg = 1;
525f51f6 202 } else if (!strcmp (*args, "-inkey")) {
ee0508d4
DSH
203 if (args[1]) {
204 args++;
205 keyname = *args;
206 } else badarg = 1;
207 } else if (!strcmp (*args, "-certfile")) {
208 if (args[1]) {
209 args++;
210 certfile = *args;
211 } else badarg = 1;
212 } else if (!strcmp (*args, "-name")) {
213 if (args[1]) {
214 args++;
215 name = *args;
216 } else badarg = 1;
f2a253e0
DSH
217 } else if (!strcmp (*args, "-CSP")) {
218 if (args[1]) {
219 args++;
220 csp_name = *args;
221 } else badarg = 1;
ee0508d4
DSH
222 } else if (!strcmp (*args, "-caname")) {
223 if (args[1]) {
224 args++;
62324627 225 if (!canames) canames = sk_new_null();
ee0508d4
DSH
226 sk_push(canames, *args);
227 } else badarg = 1;
228 } else if (!strcmp (*args, "-in")) {
229 if (args[1]) {
230 args++;
231 infile = *args;
232 } else badarg = 1;
233 } else if (!strcmp (*args, "-out")) {
234 if (args[1]) {
235 args++;
236 outfile = *args;
237 } else badarg = 1;
f07fb9b2
DSH
238 } else if (!strcmp(*args,"-passin")) {
239 if (args[1]) {
240 args++;
a3fe382e 241 passargin = *args;
f07fb9b2
DSH
242 } else badarg = 1;
243 } else if (!strcmp(*args,"-passout")) {
244 if (args[1]) {
245 args++;
a3fe382e 246 passargout = *args;
e40b7abe
DSH
247 } else badarg = 1;
248 } else if (!strcmp (*args, "-password")) {
249 if (args[1]) {
250 args++;
a3fe382e 251 passarg = *args;
e40b7abe
DSH
252 noprompt = 1;
253 } else badarg = 1;
88364bc2
RL
254 } else if (!strcmp(*args,"-CApath")) {
255 if (args[1]) {
256 args++;
257 CApath = *args;
258 } else badarg = 1;
259 } else if (!strcmp(*args,"-CAfile")) {
260 if (args[1]) {
261 args++;
262 CAfile = *args;
263 } else badarg = 1;
0b13e9f0 264#ifndef OPENSSL_NO_ENGINE
5270e702
RL
265 } else if (!strcmp(*args,"-engine")) {
266 if (args[1]) {
267 args++;
268 engine = *args;
269 } else badarg = 1;
0b13e9f0 270#endif
ee0508d4
DSH
271 } else badarg = 1;
272
273 } else badarg = 1;
274 args++;
275 }
276
277 if (badarg) {
278 BIO_printf (bio_err, "Usage: pkcs12 [options]\n");
279 BIO_printf (bio_err, "where options are\n");
280 BIO_printf (bio_err, "-export output PKCS12 file\n");
281 BIO_printf (bio_err, "-chain add certificate chain\n");
282 BIO_printf (bio_err, "-inkey file private key if not infile\n");
283 BIO_printf (bio_err, "-certfile f add all certs in f\n");
88364bc2
RL
284 BIO_printf (bio_err, "-CApath arg - PEM format directory of CA's\n");
285 BIO_printf (bio_err, "-CAfile arg - PEM format file of CA's\n");
ee0508d4
DSH
286 BIO_printf (bio_err, "-name \"name\" use name as friendly name\n");
287 BIO_printf (bio_err, "-caname \"nm\" use nm as CA friendly name (can be used more than once).\n");
288 BIO_printf (bio_err, "-in infile input filename\n");
289 BIO_printf (bio_err, "-out outfile output filename\n");
290 BIO_printf (bio_err, "-noout don't output anything, just verify.\n");
291 BIO_printf (bio_err, "-nomacver don't verify MAC.\n");
292 BIO_printf (bio_err, "-nocerts don't output certificates.\n");
293 BIO_printf (bio_err, "-clcerts only output client certificates.\n");
294 BIO_printf (bio_err, "-cacerts only output CA certificates.\n");
295 BIO_printf (bio_err, "-nokeys don't output private keys.\n");
296 BIO_printf (bio_err, "-info give info about PKCS#12 structure.\n");
297 BIO_printf (bio_err, "-des encrypt private keys with DES\n");
298 BIO_printf (bio_err, "-des3 encrypt private keys with triple DES (default)\n");
cf1b7d96 299#ifndef OPENSSL_NO_IDEA
ee0508d4 300 BIO_printf (bio_err, "-idea encrypt private keys with idea\n");
b3dfaaa1
RL
301#endif
302#ifndef OPENSSL_NO_AES
303 BIO_printf (bio_err, "-aes128, -aes192, -aes256\n");
304 BIO_printf (bio_err, " encrypt PEM output with cbc aes\n");
ee0508d4
DSH
305#endif
306 BIO_printf (bio_err, "-nodes don't encrypt private keys\n");
307 BIO_printf (bio_err, "-noiter don't use encryption iteration\n");
308 BIO_printf (bio_err, "-maciter use MAC iteration\n");
309 BIO_printf (bio_err, "-twopass separate MAC, encryption passwords\n");
310 BIO_printf (bio_err, "-descert encrypt PKCS#12 certificates with triple DES (default RC2-40)\n");
525f51f6
DSH
311 BIO_printf (bio_err, "-certpbe alg specify certificate PBE algorithm (default RC2-40)\n");
312 BIO_printf (bio_err, "-keypbe alg specify private key PBE algorithm (default 3DES)\n");
ee0508d4
DSH
313 BIO_printf (bio_err, "-keyex set MS key exchange type\n");
314 BIO_printf (bio_err, "-keysig set MS key signature type\n");
a3fe382e
DSH
315 BIO_printf (bio_err, "-password p set import/export password source\n");
316 BIO_printf (bio_err, "-passin p input file pass phrase source\n");
317 BIO_printf (bio_err, "-passout p output file pass phrase source\n");
0b13e9f0 318#ifndef OPENSSL_NO_ENGINE
5270e702 319 BIO_printf (bio_err, "-engine e use engine e, possibly a hardware device.\n");
0b13e9f0 320#endif
afbd0746 321 BIO_printf(bio_err, "-rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
d13e4eb0
DSH
322 BIO_printf(bio_err, " load the file (or the files in the directory) into\n");
323 BIO_printf(bio_err, " the random number generator\n");
ee0508d4
DSH
324 goto end;
325 }
326
0b13e9f0 327#ifndef OPENSSL_NO_ENGINE
531d630b 328 e = setup_engine(bio_err, engine, 0);
0b13e9f0 329#endif
5270e702 330
a3fe382e
DSH
331 if(passarg) {
332 if(export_cert) passargout = passarg;
333 else passargin = passarg;
334 }
335
336 if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) {
337 BIO_printf(bio_err, "Error getting passwords\n");
338 goto end;
339 }
340
f07fb9b2
DSH
341 if(!cpass) {
342 if(export_cert) cpass = passout;
343 else cpass = passin;
344 }
345
346 if(cpass) {
347 mpass = cpass;
348 noprompt = 1;
349 } else {
e40b7abe
DSH
350 cpass = pass;
351 mpass = macpass;
352 }
353
d13e4eb0 354 if(export_cert || inrand) {
f365611c 355 app_RAND_load_file(NULL, bio_err, (inrand != NULL));
d13e4eb0
DSH
356 if (inrand != NULL)
357 BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
358 app_RAND_load_files(inrand));
359 }
ee0508d4
DSH
360 ERR_load_crypto_strings();
361
a873356c
BM
362#ifdef CRYPTO_MDEBUG
363 CRYPTO_push_info("read files");
364#endif
365
12ea4470
DSH
366 if (!infile) in = BIO_new_fp(stdin, BIO_NOCLOSE);
367 else in = BIO_new_file(infile, "rb");
368 if (!in) {
369 BIO_printf(bio_err, "Error opening input file %s\n",
370 infile ? infile : "<stdin>");
ee0508d4
DSH
371 perror (infile);
372 goto end;
12ea4470 373 }
ee0508d4 374
a873356c
BM
375#ifdef CRYPTO_MDEBUG
376 CRYPTO_pop_info();
377 CRYPTO_push_info("write files");
378#endif
379
645749ef
RL
380 if (!outfile) {
381 out = BIO_new_fp(stdout, BIO_NOCLOSE);
bc36ee62 382#ifdef OPENSSL_SYS_VMS
645749ef
RL
383 {
384 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
385 out = BIO_push(tmpbio, out);
386 }
387#endif
388 } else out = BIO_new_file(outfile, "wb");
12ea4470
DSH
389 if (!out) {
390 BIO_printf(bio_err, "Error opening output file %s\n",
391 outfile ? outfile : "<stdout>");
392 perror (outfile);
393 goto end;
ee0508d4
DSH
394 }
395 if (twopass) {
a873356c
BM
396#ifdef CRYPTO_MDEBUG
397 CRYPTO_push_info("read MAC password");
398#endif
54a656ef 399 if(EVP_read_pw_string (macpass, sizeof macpass, "Enter MAC Password:", export_cert))
12ea4470 400 {
ee0508d4
DSH
401 BIO_printf (bio_err, "Can't read Password\n");
402 goto end;
403 }
a873356c
BM
404#ifdef CRYPTO_MDEBUG
405 CRYPTO_pop_info();
406#endif
ee0508d4
DSH
407 }
408
2d681b77 409 if (export_cert) {
9ee1c838 410 EVP_PKEY *key = NULL;
9a48b07e 411 X509 *ucert = NULL, *x = NULL;
d4cec6a1 412 STACK_OF(X509) *certs=NULL;
9a48b07e 413 unsigned char *catmp = NULL;
12ea4470 414 int i;
9a48b07e
DSH
415
416 if ((options & (NOCERTS|NOKEYS)) == (NOCERTS|NOKEYS))
417 {
418 BIO_printf(bio_err, "Nothing to do!\n");
419 goto export_end;
420 }
421
422 if (options & NOCERTS)
423 chain = 0;
a873356c
BM
424
425#ifdef CRYPTO_MDEBUG
426 CRYPTO_push_info("process -export_cert");
9ee1c838 427 CRYPTO_push_info("reading private key");
a873356c 428#endif
9a48b07e
DSH
429 if (!(options & NOKEYS))
430 {
431 key = load_key(bio_err, keyname ? keyname : infile,
432 FORMAT_PEM, 1, passin, e, "private key");
433 if (!key)
434 goto export_end;
435 }
ee0508d4 436
9ee1c838
RL
437#ifdef CRYPTO_MDEBUG
438 CRYPTO_pop_info();
439 CRYPTO_push_info("reading certs from input");
440#endif
441
ee0508d4 442 /* Load in all certs in input file */
9a48b07e
DSH
443 if(!(options & NOCERTS))
444 {
445 certs = load_certs(bio_err, infile, FORMAT_PEM, NULL, e,
446 "certificates");
447 if (!certs)
448 goto export_end;
12ea4470 449
9a48b07e
DSH
450 if (key)
451 {
452 /* Look for matching private key */
453 for(i = 0; i < sk_X509_num(certs); i++)
454 {
455 x = sk_X509_value(certs, i);
456 if(X509_check_private_key(x, key))
457 {
458 ucert = x;
459 /* Zero keyid and alias */
460 X509_keyid_set1(ucert, NULL, 0);
461 X509_alias_set1(ucert, NULL, 0);
462 /* Remove from list */
463 sk_X509_delete(certs, i);
464 break;
465 }
466 }
467 if (!ucert)
468 {
469 BIO_printf(bio_err, "No certificate matches private key\n");
470 goto export_end;
471 }
472 }
9ee1c838 473
12ea4470 474 }
9a48b07e 475
9ee1c838
RL
476#ifdef CRYPTO_MDEBUG
477 CRYPTO_pop_info();
9a48b07e 478 CRYPTO_push_info("reading certs from input 2");
9ee1c838
RL
479#endif
480
ee0508d4 481 /* Add any more certificates asked for */
9a48b07e
DSH
482 if(certfile)
483 {
206eb6a1
RL
484 STACK_OF(X509) *morecerts=NULL;
485 if(!(morecerts = load_certs(bio_err, certfile, FORMAT_PEM,
486 NULL, e,
9a48b07e 487 "certificates from certfile")))
9ee1c838 488 goto export_end;
9a48b07e 489 while(sk_X509_num(morecerts) > 0)
206eb6a1 490 sk_X509_push(certs, sk_X509_shift(morecerts));
206eb6a1 491 sk_X509_free(morecerts);
9a48b07e
DSH
492 }
493
494#ifdef CRYPTO_MDEBUG
495 CRYPTO_pop_info();
496 CRYPTO_push_info("reading certs from certfile");
497#endif
ee0508d4 498
9ee1c838
RL
499#ifdef CRYPTO_MDEBUG
500 CRYPTO_pop_info();
501 CRYPTO_push_info("building chain");
502#endif
503
ee0508d4
DSH
504 /* If chaining get chain from user cert */
505 if (chain) {
506 int vret;
84c15db5 507 STACK_OF(X509) *chain2;
88364bc2
RL
508 X509_STORE *store = X509_STORE_new();
509 if (!store)
510 {
511 BIO_printf (bio_err, "Memory allocation error\n");
9ee1c838 512 goto export_end;
88364bc2
RL
513 }
514 if (!X509_STORE_load_locations(store, CAfile, CApath))
515 X509_STORE_set_default_paths (store);
516
517 vret = get_cert_chain (ucert, store, &chain2);
9ee1c838
RL
518 X509_STORE_free(store);
519
520 if (!vret) {
521 /* Exclude verified certificate */
522 for (i = 1; i < sk_X509_num (chain2) ; i++)
523 sk_X509_push(certs, sk_X509_value (chain2, i));
9a260103
DSH
524 /* Free first certificate */
525 X509_free(sk_X509_value(chain2, 0));
526 sk_X509_free(chain2);
527 } else {
ee0508d4
DSH
528 BIO_printf (bio_err, "Error %s getting chain.\n",
529 X509_verify_cert_error_string(vret));
9ee1c838
RL
530 goto export_end;
531 }
ee0508d4
DSH
532 }
533
9a48b07e 534 /* Add any CA names */
9ee1c838 535
9a48b07e
DSH
536 for (i = 0; i < sk_num(canames); i++)
537 {
538 catmp = (unsigned char *)sk_value(canames, i);
539 X509_alias_set1(sk_X509_value(certs, i), catmp, -1);
540 }
b6995add
DSH
541
542 if (csp_name && key)
543 EVP_PKEY_add1_attr_by_NID(key, NID_ms_csp_name,
544 MBSTRING_ASC, (unsigned char *)csp_name, -1);
9a48b07e 545
9ee1c838
RL
546
547#ifdef CRYPTO_MDEBUG
548 CRYPTO_pop_info();
9a48b07e 549 CRYPTO_push_info("reading password");
9ee1c838 550#endif
ee0508d4 551
e40b7abe 552 if(!noprompt &&
c112323d 553 EVP_read_pw_string(pass, sizeof pass, "Enter Export Password:", 1))
9a48b07e
DSH
554 {
555 BIO_printf (bio_err, "Can't read Password\n");
556 goto export_end;
557 }
d420ac2c 558 if (!twopass) BUF_strlcpy(macpass, pass, sizeof macpass);
9ee1c838
RL
559
560#ifdef CRYPTO_MDEBUG
561 CRYPTO_pop_info();
9a48b07e 562 CRYPTO_push_info("creating PKCS#12 structure");
9ee1c838
RL
563#endif
564
33075f22 565 p12 = PKCS12_create(cpass, name, key, ucert, certs,
9a48b07e 566 key_pbe, cert_pbe, iter, -1, keytype);
ee0508d4 567
9a48b07e
DSH
568 if (!p12)
569 {
570 ERR_print_errors (bio_err);
571 goto export_end;
572 }
ee0508d4 573
9a48b07e
DSH
574 if (maciter != -1)
575 PKCS12_set_mac(p12, mpass, -1, NULL, 0, maciter, NULL);
ee0508d4 576
9ee1c838
RL
577#ifdef CRYPTO_MDEBUG
578 CRYPTO_pop_info();
579 CRYPTO_push_info("writing pkcs12");
580#endif
581
9a48b07e 582 i2d_PKCS12_bio(out, p12);
ee0508d4 583
ee0508d4 584 ret = 0;
a873356c 585
9ee1c838
RL
586 export_end:
587#ifdef CRYPTO_MDEBUG
588 CRYPTO_pop_info();
589 CRYPTO_pop_info();
590 CRYPTO_push_info("process -export_cert: freeing");
591#endif
592
593 if (key) EVP_PKEY_free(key);
594 if (certs) sk_X509_pop_free(certs, X509_free);
9a48b07e 595 if (ucert) X509_free(ucert);
9ee1c838 596
a873356c
BM
597#ifdef CRYPTO_MDEBUG
598 CRYPTO_pop_info();
599#endif
ee0508d4
DSH
600 goto end;
601
ee86c3f5 602 }
ee0508d4
DSH
603
604 if (!(p12 = d2i_PKCS12_bio (in, NULL))) {
605 ERR_print_errors(bio_err);
606 goto end;
607 }
608
a873356c
BM
609#ifdef CRYPTO_MDEBUG
610 CRYPTO_push_info("read import password");
611#endif
54a656ef 612 if(!noprompt && EVP_read_pw_string(pass, sizeof pass, "Enter Import Password:", 0)) {
ee0508d4
DSH
613 BIO_printf (bio_err, "Can't read Password\n");
614 goto end;
615 }
a873356c
BM
616#ifdef CRYPTO_MDEBUG
617 CRYPTO_pop_info();
618#endif
ee0508d4 619
d420ac2c 620 if (!twopass) BUF_strlcpy(macpass, pass, sizeof macpass);
ee0508d4
DSH
621
622 if (options & INFO) BIO_printf (bio_err, "MAC Iteration %ld\n", p12->mac->iter ? ASN1_INTEGER_get (p12->mac->iter) : 1);
623 if(macver) {
a873356c
BM
624#ifdef CRYPTO_MDEBUG
625 CRYPTO_push_info("verify MAC");
626#endif
a331a305 627 /* If we enter empty password try no password first */
3fee2551 628 if(!mpass[0] && PKCS12_verify_mac(p12, NULL, 0)) {
a331a305
DSH
629 /* If mac and crypto pass the same set it to NULL too */
630 if(!twopass) cpass = NULL;
631 } else if (!PKCS12_verify_mac(p12, mpass, -1)) {
657e60fa 632 BIO_printf (bio_err, "Mac verify error: invalid password?\n");
ee0508d4
DSH
633 ERR_print_errors (bio_err);
634 goto end;
a331a305
DSH
635 }
636 BIO_printf (bio_err, "MAC verified OK\n");
a873356c
BM
637#ifdef CRYPTO_MDEBUG
638 CRYPTO_pop_info();
639#endif
ee0508d4
DSH
640 }
641
a873356c
BM
642#ifdef CRYPTO_MDEBUG
643 CRYPTO_push_info("output keys and certificates");
644#endif
f07fb9b2 645 if (!dump_certs_keys_p12 (out, p12, cpass, -1, options, passout)) {
ee0508d4
DSH
646 BIO_printf(bio_err, "Error outputting keys and certificates\n");
647 ERR_print_errors (bio_err);
648 goto end;
649 }
a873356c
BM
650#ifdef CRYPTO_MDEBUG
651 CRYPTO_pop_info();
652#endif
ee0508d4 653 ret = 0;
88364bc2
RL
654 end:
655 if (p12) PKCS12_free(p12);
d13e4eb0 656 if(export_cert || inrand) app_RAND_write_file(NULL, bio_err);
a873356c
BM
657#ifdef CRYPTO_MDEBUG
658 CRYPTO_remove_all_info();
659#endif
660 BIO_free(in);
645749ef 661 BIO_free_all(out);
9ee1c838 662 if (canames) sk_free(canames);
26a3a48d
RL
663 if(passin) OPENSSL_free(passin);
664 if(passout) OPENSSL_free(passout);
5abc8ae6 665 apps_shutdown();
1c3e4a36 666 OPENSSL_EXIT(ret);
ee0508d4
DSH
667}
668
61f5b6f3 669int dump_certs_keys_p12 (BIO *out, PKCS12 *p12, char *pass,
f07fb9b2 670 int passlen, int options, char *pempass)
ee0508d4 671{
16df5f06 672 STACK_OF(PKCS7) *asafes = NULL;
f2716dad 673 STACK_OF(PKCS12_SAFEBAG) *bags;
ee0508d4 674 int i, bagnid;
16df5f06 675 int ret = 0;
ee0508d4 676 PKCS7 *p7;
5de603ab 677
ecbe0781 678 if (!( asafes = PKCS12_unpack_authsafes(p12))) return 0;
5de603ab
BL
679 for (i = 0; i < sk_PKCS7_num (asafes); i++) {
680 p7 = sk_PKCS7_value (asafes, i);
ee0508d4
DSH
681 bagnid = OBJ_obj2nid (p7->type);
682 if (bagnid == NID_pkcs7_data) {
ecbe0781 683 bags = PKCS12_unpack_p7data(p7);
ee0508d4
DSH
684 if (options & INFO) BIO_printf (bio_err, "PKCS7 Data\n");
685 } else if (bagnid == NID_pkcs7_encrypted) {
686 if (options & INFO) {
ecbe0781
DSH
687 BIO_printf(bio_err, "PKCS7 Encrypted data: ");
688 alg_print(bio_err,
ee0508d4
DSH
689 p7->d.encrypted->enc_data->algorithm);
690 }
ecbe0781 691 bags = PKCS12_unpack_p7encdata(p7, pass, passlen);
ee0508d4 692 } else continue;
16df5f06 693 if (!bags) goto err;
ee0508d4 694 if (!dump_certs_pkeys_bags (out, bags, pass, passlen,
f07fb9b2 695 options, pempass)) {
f2716dad 696 sk_PKCS12_SAFEBAG_pop_free (bags, PKCS12_SAFEBAG_free);
16df5f06 697 goto err;
ee0508d4 698 }
f2716dad 699 sk_PKCS12_SAFEBAG_pop_free (bags, PKCS12_SAFEBAG_free);
16df5f06 700 bags = NULL;
ee0508d4 701 }
16df5f06
DSH
702 ret = 1;
703
704 err:
705
706 if (asafes)
707 sk_PKCS7_pop_free (asafes, PKCS7_free);
708 return ret;
ee0508d4
DSH
709}
710
f2716dad
BL
711int dump_certs_pkeys_bags (BIO *out, STACK_OF(PKCS12_SAFEBAG) *bags,
712 char *pass, int passlen, int options, char *pempass)
ee0508d4
DSH
713{
714 int i;
f2716dad 715 for (i = 0; i < sk_PKCS12_SAFEBAG_num (bags); i++) {
ee0508d4 716 if (!dump_certs_pkeys_bag (out,
f2716dad
BL
717 sk_PKCS12_SAFEBAG_value (bags, i),
718 pass, passlen,
719 options, pempass))
720 return 0;
ee0508d4
DSH
721 }
722 return 1;
723}
724
61f5b6f3 725int dump_certs_pkeys_bag (BIO *out, PKCS12_SAFEBAG *bag, char *pass,
f07fb9b2 726 int passlen, int options, char *pempass)
ee0508d4
DSH
727{
728 EVP_PKEY *pkey;
729 PKCS8_PRIV_KEY_INFO *p8;
730 X509 *x509;
731
732 switch (M_PKCS12_bag_type(bag))
733 {
734 case NID_keyBag:
735 if (options & INFO) BIO_printf (bio_err, "Key bag\n");
736 if (options & NOKEYS) return 1;
737 print_attribs (out, bag->attrib, "Bag Attributes");
738 p8 = bag->value.keybag;
739 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
740 print_attribs (out, p8->attributes, "Key Attributes");
a3fe382e 741 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, pempass);
ee0508d4
DSH
742 EVP_PKEY_free(pkey);
743 break;
744
745 case NID_pkcs8ShroudedKeyBag:
746 if (options & INFO) {
747 BIO_printf (bio_err, "Shrouded Keybag: ");
748 alg_print (bio_err, bag->value.shkeybag->algor);
749 }
750 if (options & NOKEYS) return 1;
751 print_attribs (out, bag->attrib, "Bag Attributes");
ecbe0781 752 if (!(p8 = PKCS12_decrypt_skey(bag, pass, passlen)))
ee0508d4 753 return 0;
6991bf19
RL
754 if (!(pkey = EVP_PKCS82PKEY (p8))) {
755 PKCS8_PRIV_KEY_INFO_free(p8);
756 return 0;
757 }
ee0508d4
DSH
758 print_attribs (out, p8->attributes, "Key Attributes");
759 PKCS8_PRIV_KEY_INFO_free(p8);
a3fe382e 760 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, pempass);
ee0508d4
DSH
761 EVP_PKEY_free(pkey);
762 break;
763
764 case NID_certBag:
765 if (options & INFO) BIO_printf (bio_err, "Certificate bag\n");
766 if (options & NOCERTS) return 1;
767 if (PKCS12_get_attr(bag, NID_localKeyID)) {
768 if (options & CACERTS) return 1;
769 } else if (options & CLCERTS) return 1;
770 print_attribs (out, bag->attrib, "Bag Attributes");
771 if (M_PKCS12_cert_bag_type(bag) != NID_x509Certificate )
772 return 1;
ecbe0781 773 if (!(x509 = PKCS12_certbag2x509(bag))) return 0;
ee0508d4
DSH
774 dump_cert_text (out, x509);
775 PEM_write_bio_X509 (out, x509);
776 X509_free(x509);
777 break;
778
779 case NID_safeContentsBag:
780 if (options & INFO) BIO_printf (bio_err, "Safe Contents bag\n");
781 print_attribs (out, bag->attrib, "Bag Attributes");
782 return dump_certs_pkeys_bags (out, bag->value.safes, pass,
f07fb9b2 783 passlen, options, pempass);
ee0508d4
DSH
784
785 default:
786 BIO_printf (bio_err, "Warning unsupported bag type: ");
787 i2a_ASN1_OBJECT (bio_err, bag->type);
788 BIO_printf (bio_err, "\n");
789 return 1;
790 break;
791 }
792 return 1;
793}
794
795/* Given a single certificate return a verified chain or NULL if error */
796
797/* Hope this is OK .... */
798
88364bc2 799int get_cert_chain (X509 *cert, X509_STORE *store, STACK_OF(X509) **chain)
ee0508d4 800{
ee0508d4 801 X509_STORE_CTX store_ctx;
84c15db5 802 STACK_OF(X509) *chn;
ee0508d4 803 int i;
a873356c 804
79aa04ef
GT
805 /* FIXME: Should really check the return status of X509_STORE_CTX_init
806 * for an error, but how that fits into the return value of this
807 * function is less obvious. */
ee0508d4
DSH
808 X509_STORE_CTX_init(&store_ctx, store, cert, NULL);
809 if (X509_verify_cert(&store_ctx) <= 0) {
810 i = X509_STORE_CTX_get_error (&store_ctx);
811 goto err;
812 }
c7cb16a8 813 chn = X509_STORE_CTX_get1_chain(&store_ctx);
ee0508d4
DSH
814 i = 0;
815 *chain = chn;
816err:
817 X509_STORE_CTX_cleanup(&store_ctx);
ee0508d4
DSH
818
819 return i;
820}
821
6b691a5c 822int alg_print (BIO *x, X509_ALGOR *alg)
ee0508d4
DSH
823{
824 PBEPARAM *pbe;
875a644a 825 const unsigned char *p;
ee0508d4
DSH
826 p = alg->parameter->value.sequence->data;
827 pbe = d2i_PBEPARAM (NULL, &p, alg->parameter->value.sequence->length);
3ae70939
RL
828 BIO_printf (bio_err, "%s, Iteration %ld\n",
829 OBJ_nid2ln(OBJ_obj2nid(alg->algorithm)),
830 ASN1_INTEGER_get(pbe->iter));
ee0508d4
DSH
831 PBEPARAM_free (pbe);
832 return 0;
833}
834
835/* Load all certificates from a given file */
836
84c15db5 837int cert_load(BIO *in, STACK_OF(X509) *sk)
ee0508d4
DSH
838{
839 int ret;
840 X509 *cert;
841 ret = 0;
9ee1c838
RL
842#ifdef CRYPTO_MDEBUG
843 CRYPTO_push_info("cert_load(): reading one cert");
844#endif
74678cc2 845 while((cert = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
9ee1c838
RL
846#ifdef CRYPTO_MDEBUG
847 CRYPTO_pop_info();
848#endif
ee0508d4 849 ret = 1;
84c15db5 850 sk_X509_push(sk, cert);
9ee1c838
RL
851#ifdef CRYPTO_MDEBUG
852 CRYPTO_push_info("cert_load(): reading one cert");
853#endif
ee0508d4 854 }
9ee1c838
RL
855#ifdef CRYPTO_MDEBUG
856 CRYPTO_pop_info();
857#endif
ee0508d4
DSH
858 if(ret) ERR_clear_error();
859 return ret;
860}
861
862/* Generalised attribute print: handle PKCS#8 and bag attributes */
863
7d727231 864int print_attribs (BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst,const char *name)
ee0508d4
DSH
865{
866 X509_ATTRIBUTE *attr;
867 ASN1_TYPE *av;
868 char *value;
869 int i, attr_nid;
870 if(!attrlst) {
871 BIO_printf(out, "%s: <No Attributes>\n", name);
872 return 1;
873 }
84c15db5 874 if(!sk_X509_ATTRIBUTE_num(attrlst)) {
ee0508d4
DSH
875 BIO_printf(out, "%s: <Empty Attributes>\n", name);
876 return 1;
877 }
878 BIO_printf(out, "%s\n", name);
84c15db5
BL
879 for(i = 0; i < sk_X509_ATTRIBUTE_num(attrlst); i++) {
880 attr = sk_X509_ATTRIBUTE_value(attrlst, i);
ee0508d4
DSH
881 attr_nid = OBJ_obj2nid(attr->object);
882 BIO_printf(out, " ");
883 if(attr_nid == NID_undef) {
884 i2a_ASN1_OBJECT (out, attr->object);
885 BIO_printf(out, ": ");
886 } else BIO_printf(out, "%s: ", OBJ_nid2ln(attr_nid));
887
0b3f827c
BL
888 if(sk_ASN1_TYPE_num(attr->value.set)) {
889 av = sk_ASN1_TYPE_value(attr->value.set, 0);
ee0508d4
DSH
890 switch(av->type) {
891 case V_ASN1_BMPSTRING:
892 value = uni2asc(av->value.bmpstring->data,
893 av->value.bmpstring->length);
894 BIO_printf(out, "%s\n", value);
26a3a48d 895 OPENSSL_free(value);
ee0508d4
DSH
896 break;
897
898 case V_ASN1_OCTET_STRING:
688fbf54
DSH
899 hex_prin(out, av->value.octet_string->data,
900 av->value.octet_string->length);
ee0508d4
DSH
901 BIO_printf(out, "\n");
902 break;
903
904 case V_ASN1_BIT_STRING:
688fbf54
DSH
905 hex_prin(out, av->value.bit_string->data,
906 av->value.bit_string->length);
ee0508d4
DSH
907 BIO_printf(out, "\n");
908 break;
909
910 default:
911 BIO_printf(out, "<Unsupported tag %d>\n", av->type);
912 break;
913 }
914 } else BIO_printf(out, "<No Values>\n");
915 }
916 return 1;
917}
918
6b691a5c 919void hex_prin(BIO *out, unsigned char *buf, int len)
ee0508d4
DSH
920{
921 int i;
922 for (i = 0; i < len; i++) BIO_printf (out, "%02X ", buf[i]);
923}
a8515441
BM
924
925#endif