]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/pkcs12.c
We have AES support in openssl speed
[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
DSH
4/* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
5 * project 1999.
6 */
7/* ====================================================================
8 * Copyright (c) 1999 The OpenSSL Project. All rights reserved.
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);
84c15db5 86int print_attribs(BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst, 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;
5270e702 123 char *engine=NULL;
ee0508d4
DSH
124
125 apps_startup();
126
127 enc = EVP_des_ede3_cbc();
128 if (bio_err == NULL ) bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
129
130 args = argv + 1;
131
132
133 while (*args) {
134 if (*args[0] == '-') {
135 if (!strcmp (*args, "-nokeys")) options |= NOKEYS;
136 else if (!strcmp (*args, "-keyex")) keytype = KEY_EX;
137 else if (!strcmp (*args, "-keysig")) keytype = KEY_SIG;
138 else if (!strcmp (*args, "-nocerts")) options |= NOCERTS;
139 else if (!strcmp (*args, "-clcerts")) options |= CLCERTS;
140 else if (!strcmp (*args, "-cacerts")) options |= CACERTS;
141 else if (!strcmp (*args, "-noout")) options |= (NOKEYS|NOCERTS);
142 else if (!strcmp (*args, "-info")) options |= INFO;
143 else if (!strcmp (*args, "-chain")) chain = 1;
144 else if (!strcmp (*args, "-twopass")) twopass = 1;
145 else if (!strcmp (*args, "-nomacver")) macver = 0;
146 else if (!strcmp (*args, "-descert"))
147 cert_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
148 else if (!strcmp (*args, "-export")) export_cert = 1;
149 else if (!strcmp (*args, "-des")) enc=EVP_des_cbc();
cf1b7d96 150#ifndef OPENSSL_NO_IDEA
ee0508d4
DSH
151 else if (!strcmp (*args, "-idea")) enc=EVP_idea_cbc();
152#endif
153 else if (!strcmp (*args, "-des3")) enc = EVP_des_ede3_cbc();
b3dfaaa1
RL
154#ifndef OPENSSL_NO_AES
155 else if (!strcmp(*argv,"-aes128")) enc=EVP_aes_128_cbc();
156 else if (!strcmp(*argv,"-aes192")) enc=EVP_aes_192_cbc();
157 else if (!strcmp(*argv,"-aes256")) enc=EVP_aes_256_cbc();
158#endif
ee0508d4 159 else if (!strcmp (*args, "-noiter")) iter = 1;
e84240d4
DSH
160 else if (!strcmp (*args, "-maciter"))
161 maciter = PKCS12_DEFAULT_ITER;
dad666fb
DSH
162 else if (!strcmp (*args, "-nomaciter"))
163 maciter = 1;
ee0508d4 164 else if (!strcmp (*args, "-nodes")) enc=NULL;
525f51f6
DSH
165 else if (!strcmp (*args, "-certpbe")) {
166 if (args[1]) {
167 args++;
168 cert_pbe=OBJ_txt2nid(*args);
169 if(cert_pbe == NID_undef) {
170 BIO_printf(bio_err,
171 "Unknown PBE algorithm %s\n", *args);
172 badarg = 1;
173 }
174 } else badarg = 1;
175 } else if (!strcmp (*args, "-keypbe")) {
176 if (args[1]) {
177 args++;
178 key_pbe=OBJ_txt2nid(*args);
179 if(key_pbe == NID_undef) {
180 BIO_printf(bio_err,
181 "Unknown PBE algorithm %s\n", *args);
182 badarg = 1;
183 }
184 } else badarg = 1;
d13e4eb0
DSH
185 } else if (!strcmp (*args, "-rand")) {
186 if (args[1]) {
187 args++;
188 inrand = *args;
189 } else badarg = 1;
525f51f6 190 } else if (!strcmp (*args, "-inkey")) {
ee0508d4
DSH
191 if (args[1]) {
192 args++;
193 keyname = *args;
194 } else badarg = 1;
195 } else if (!strcmp (*args, "-certfile")) {
196 if (args[1]) {
197 args++;
198 certfile = *args;
199 } else badarg = 1;
200 } else if (!strcmp (*args, "-name")) {
201 if (args[1]) {
202 args++;
203 name = *args;
204 } else badarg = 1;
f2a253e0
DSH
205 } else if (!strcmp (*args, "-CSP")) {
206 if (args[1]) {
207 args++;
208 csp_name = *args;
209 } else badarg = 1;
ee0508d4
DSH
210 } else if (!strcmp (*args, "-caname")) {
211 if (args[1]) {
212 args++;
62324627 213 if (!canames) canames = sk_new_null();
ee0508d4
DSH
214 sk_push(canames, *args);
215 } else badarg = 1;
216 } else if (!strcmp (*args, "-in")) {
217 if (args[1]) {
218 args++;
219 infile = *args;
220 } else badarg = 1;
221 } else if (!strcmp (*args, "-out")) {
222 if (args[1]) {
223 args++;
224 outfile = *args;
225 } else badarg = 1;
f07fb9b2
DSH
226 } else if (!strcmp(*args,"-passin")) {
227 if (args[1]) {
228 args++;
a3fe382e 229 passargin = *args;
f07fb9b2
DSH
230 } else badarg = 1;
231 } else if (!strcmp(*args,"-passout")) {
232 if (args[1]) {
233 args++;
a3fe382e 234 passargout = *args;
e40b7abe
DSH
235 } else badarg = 1;
236 } else if (!strcmp (*args, "-password")) {
237 if (args[1]) {
238 args++;
a3fe382e 239 passarg = *args;
e40b7abe
DSH
240 noprompt = 1;
241 } else badarg = 1;
88364bc2
RL
242 } else if (!strcmp(*args,"-CApath")) {
243 if (args[1]) {
244 args++;
245 CApath = *args;
246 } else badarg = 1;
247 } else if (!strcmp(*args,"-CAfile")) {
248 if (args[1]) {
249 args++;
250 CAfile = *args;
251 } else badarg = 1;
5270e702
RL
252 } else if (!strcmp(*args,"-engine")) {
253 if (args[1]) {
254 args++;
255 engine = *args;
256 } else badarg = 1;
ee0508d4
DSH
257 } else badarg = 1;
258
259 } else badarg = 1;
260 args++;
261 }
262
263 if (badarg) {
264 BIO_printf (bio_err, "Usage: pkcs12 [options]\n");
265 BIO_printf (bio_err, "where options are\n");
266 BIO_printf (bio_err, "-export output PKCS12 file\n");
267 BIO_printf (bio_err, "-chain add certificate chain\n");
268 BIO_printf (bio_err, "-inkey file private key if not infile\n");
269 BIO_printf (bio_err, "-certfile f add all certs in f\n");
88364bc2
RL
270 BIO_printf (bio_err, "-CApath arg - PEM format directory of CA's\n");
271 BIO_printf (bio_err, "-CAfile arg - PEM format file of CA's\n");
ee0508d4
DSH
272 BIO_printf (bio_err, "-name \"name\" use name as friendly name\n");
273 BIO_printf (bio_err, "-caname \"nm\" use nm as CA friendly name (can be used more than once).\n");
274 BIO_printf (bio_err, "-in infile input filename\n");
275 BIO_printf (bio_err, "-out outfile output filename\n");
276 BIO_printf (bio_err, "-noout don't output anything, just verify.\n");
277 BIO_printf (bio_err, "-nomacver don't verify MAC.\n");
278 BIO_printf (bio_err, "-nocerts don't output certificates.\n");
279 BIO_printf (bio_err, "-clcerts only output client certificates.\n");
280 BIO_printf (bio_err, "-cacerts only output CA certificates.\n");
281 BIO_printf (bio_err, "-nokeys don't output private keys.\n");
282 BIO_printf (bio_err, "-info give info about PKCS#12 structure.\n");
283 BIO_printf (bio_err, "-des encrypt private keys with DES\n");
284 BIO_printf (bio_err, "-des3 encrypt private keys with triple DES (default)\n");
cf1b7d96 285#ifndef OPENSSL_NO_IDEA
ee0508d4 286 BIO_printf (bio_err, "-idea encrypt private keys with idea\n");
b3dfaaa1
RL
287#endif
288#ifndef OPENSSL_NO_AES
289 BIO_printf (bio_err, "-aes128, -aes192, -aes256\n");
290 BIO_printf (bio_err, " encrypt PEM output with cbc aes\n");
ee0508d4
DSH
291#endif
292 BIO_printf (bio_err, "-nodes don't encrypt private keys\n");
293 BIO_printf (bio_err, "-noiter don't use encryption iteration\n");
294 BIO_printf (bio_err, "-maciter use MAC iteration\n");
295 BIO_printf (bio_err, "-twopass separate MAC, encryption passwords\n");
296 BIO_printf (bio_err, "-descert encrypt PKCS#12 certificates with triple DES (default RC2-40)\n");
525f51f6
DSH
297 BIO_printf (bio_err, "-certpbe alg specify certificate PBE algorithm (default RC2-40)\n");
298 BIO_printf (bio_err, "-keypbe alg specify private key PBE algorithm (default 3DES)\n");
ee0508d4
DSH
299 BIO_printf (bio_err, "-keyex set MS key exchange type\n");
300 BIO_printf (bio_err, "-keysig set MS key signature type\n");
a3fe382e
DSH
301 BIO_printf (bio_err, "-password p set import/export password source\n");
302 BIO_printf (bio_err, "-passin p input file pass phrase source\n");
303 BIO_printf (bio_err, "-passout p output file pass phrase source\n");
5270e702 304 BIO_printf (bio_err, "-engine e use engine e, possibly a hardware device.\n");
afbd0746 305 BIO_printf(bio_err, "-rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
d13e4eb0
DSH
306 BIO_printf(bio_err, " load the file (or the files in the directory) into\n");
307 BIO_printf(bio_err, " the random number generator\n");
ee0508d4
DSH
308 goto end;
309 }
310
531d630b 311 e = setup_engine(bio_err, engine, 0);
5270e702 312
a3fe382e
DSH
313 if(passarg) {
314 if(export_cert) passargout = passarg;
315 else passargin = passarg;
316 }
317
318 if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) {
319 BIO_printf(bio_err, "Error getting passwords\n");
320 goto end;
321 }
322
f07fb9b2
DSH
323 if(!cpass) {
324 if(export_cert) cpass = passout;
325 else cpass = passin;
326 }
327
328 if(cpass) {
329 mpass = cpass;
330 noprompt = 1;
331 } else {
e40b7abe
DSH
332 cpass = pass;
333 mpass = macpass;
334 }
335
d13e4eb0 336 if(export_cert || inrand) {
f365611c 337 app_RAND_load_file(NULL, bio_err, (inrand != NULL));
d13e4eb0
DSH
338 if (inrand != NULL)
339 BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
340 app_RAND_load_files(inrand));
341 }
ee0508d4
DSH
342 ERR_load_crypto_strings();
343
a873356c
BM
344#ifdef CRYPTO_MDEBUG
345 CRYPTO_push_info("read files");
346#endif
347
12ea4470
DSH
348 if (!infile) in = BIO_new_fp(stdin, BIO_NOCLOSE);
349 else in = BIO_new_file(infile, "rb");
350 if (!in) {
351 BIO_printf(bio_err, "Error opening input file %s\n",
352 infile ? infile : "<stdin>");
ee0508d4
DSH
353 perror (infile);
354 goto end;
12ea4470 355 }
ee0508d4 356
5abc8ae6 357#if 0
ee0508d4 358 if (certfile) {
12ea4470
DSH
359 if(!(certsin = BIO_new_file(certfile, "r"))) {
360 BIO_printf(bio_err, "Can't open certificate file %s\n", certfile);
ee0508d4
DSH
361 perror (certfile);
362 goto end;
363 }
364 }
365
366 if (keyname) {
12ea4470
DSH
367 if(!(inkey = BIO_new_file(keyname, "r"))) {
368 BIO_printf(bio_err, "Can't key certificate file %s\n", keyname);
ee0508d4
DSH
369 perror (keyname);
370 goto end;
371 }
372 }
5abc8ae6 373#endif
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
12ea4470
DSH
399 if(EVP_read_pw_string (macpass, 50, "Enter MAC Password:", export_cert))
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
RL
410 EVP_PKEY *key = NULL;
411 STACK_OF(PKCS12_SAFEBAG) *bags = NULL;
412 STACK_OF(PKCS7) *safes = NULL;
413 PKCS12_SAFEBAG *bag = NULL;
414 PKCS8_PRIV_KEY_INFO *p8 = NULL;
415 PKCS7 *authsafe = NULL;
2d681b77 416 X509 *ucert = NULL;
d4cec6a1 417 STACK_OF(X509) *certs=NULL;
9ee1c838 418 char *catmp = NULL;
12ea4470 419 int i;
ee0508d4 420 unsigned char keyid[EVP_MAX_MD_SIZE];
12ea4470 421 unsigned int keyidlen = 0;
a873356c
BM
422
423#ifdef CRYPTO_MDEBUG
424 CRYPTO_push_info("process -export_cert");
9ee1c838 425 CRYPTO_push_info("reading private key");
a873356c 426#endif
5abc8ae6
RL
427 key = load_key(bio_err, keyname ? keyname : infile, FORMAT_PEM,
428 passin, e, "private key");
ee0508d4 429 if (!key) {
9ee1c838 430 goto export_end;
ee0508d4
DSH
431 }
432
9ee1c838
RL
433#ifdef CRYPTO_MDEBUG
434 CRYPTO_pop_info();
435 CRYPTO_push_info("reading certs from input");
436#endif
437
ee0508d4 438 /* Load in all certs in input file */
5abc8ae6
RL
439 if(!(certs = load_certs(bio_err, infile, FORMAT_PEM, NULL, e,
440 "certificates"))) {
9ee1c838 441 goto export_end;
ee0508d4 442 }
12ea4470 443
9ee1c838
RL
444#ifdef CRYPTO_MDEBUG
445 CRYPTO_pop_info();
446 CRYPTO_push_info("reading certs from input 2");
447#endif
448
12ea4470
DSH
449 for(i = 0; i < sk_X509_num(certs); i++) {
450 ucert = sk_X509_value(certs, i);
451 if(X509_check_private_key(ucert, key)) {
2d681b77 452 X509_digest(ucert, EVP_sha1(), keyid, &keyidlen);
12ea4470
DSH
453 break;
454 }
455 }
12ea4470 456 if(!keyidlen) {
5ce42a7e 457 ucert = NULL;
12ea4470 458 BIO_printf(bio_err, "No certificate matches private key\n");
9ee1c838 459 goto export_end;
12ea4470 460 }
ee0508d4 461
9ee1c838
RL
462#ifdef CRYPTO_MDEBUG
463 CRYPTO_pop_info();
464 CRYPTO_push_info("reading certs from certfile");
465#endif
466
62324627 467 bags = sk_PKCS12_SAFEBAG_new_null ();
ee0508d4
DSH
468
469 /* Add any more certificates asked for */
5abc8ae6 470 if (certfile) {
206eb6a1
RL
471 STACK_OF(X509) *morecerts=NULL;
472 if(!(morecerts = load_certs(bio_err, certfile, FORMAT_PEM,
473 NULL, e,
474 "certificates from certfile"))) {
9ee1c838 475 goto export_end;
ee0508d4 476 }
206eb6a1
RL
477 while(sk_X509_num(morecerts) > 0) {
478 sk_X509_push(certs, sk_X509_shift(morecerts));
479 }
480 sk_X509_free(morecerts);
ee0508d4
DSH
481 }
482
9ee1c838
RL
483#ifdef CRYPTO_MDEBUG
484 CRYPTO_pop_info();
485 CRYPTO_push_info("building chain");
486#endif
487
ee0508d4
DSH
488 /* If chaining get chain from user cert */
489 if (chain) {
490 int vret;
84c15db5 491 STACK_OF(X509) *chain2;
88364bc2
RL
492 X509_STORE *store = X509_STORE_new();
493 if (!store)
494 {
495 BIO_printf (bio_err, "Memory allocation error\n");
9ee1c838 496 goto export_end;
88364bc2
RL
497 }
498 if (!X509_STORE_load_locations(store, CAfile, CApath))
499 X509_STORE_set_default_paths (store);
500
501 vret = get_cert_chain (ucert, store, &chain2);
9ee1c838
RL
502 X509_STORE_free(store);
503
504 if (!vret) {
505 /* Exclude verified certificate */
506 for (i = 1; i < sk_X509_num (chain2) ; i++)
507 sk_X509_push(certs, sk_X509_value (chain2, i));
508 }
509 sk_X509_free(chain2);
ee0508d4
DSH
510 if (vret) {
511 BIO_printf (bio_err, "Error %s getting chain.\n",
512 X509_verify_cert_error_string(vret));
9ee1c838
RL
513 goto export_end;
514 }
ee0508d4
DSH
515 }
516
9ee1c838
RL
517#ifdef CRYPTO_MDEBUG
518 CRYPTO_pop_info();
519 CRYPTO_push_info("building bags");
520#endif
521
ee0508d4 522 /* We now have loads of certificates: include them all */
84c15db5 523 for(i = 0; i < sk_X509_num(certs); i++) {
2d681b77 524 X509 *cert = NULL;
84c15db5 525 cert = sk_X509_value(certs, i);
ecbe0781 526 bag = PKCS12_x5092certbag(cert);
12ea4470 527 /* If it matches private key set id */
ee0508d4
DSH
528 if(cert == ucert) {
529 if(name) PKCS12_add_friendlyname(bag, name, -1);
ee0508d4 530 PKCS12_add_localkeyid(bag, keyid, keyidlen);
ee0508d4
DSH
531 } else if((catmp = sk_shift(canames)))
532 PKCS12_add_friendlyname(bag, catmp, -1);
f2716dad 533 sk_PKCS12_SAFEBAG_push(bags, bag);
ee0508d4 534 }
d4cec6a1 535 sk_X509_pop_free(certs, X509_free);
9ee1c838 536 certs = NULL;
eaa28181
DSH
537 /* ucert is part of certs so it is already freed */
538 ucert = NULL;
9ee1c838
RL
539
540#ifdef CRYPTO_MDEBUG
541 CRYPTO_pop_info();
542 CRYPTO_push_info("encrypting bags");
543#endif
ee0508d4 544
e40b7abe
DSH
545 if(!noprompt &&
546 EVP_read_pw_string(pass, 50, "Enter Export Password:", 1)) {
ee0508d4 547 BIO_printf (bio_err, "Can't read Password\n");
9ee1c838 548 goto export_end;
ee0508d4
DSH
549 }
550 if (!twopass) strcpy(macpass, pass);
551 /* Turn certbags into encrypted authsafe */
12ea4470 552 authsafe = PKCS12_pack_p7encdata(cert_pbe, cpass, -1, NULL, 0,
ee0508d4 553 iter, bags);
f2716dad 554 sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free);
9ee1c838 555 bags = NULL;
ee0508d4
DSH
556
557 if (!authsafe) {
558 ERR_print_errors (bio_err);
9ee1c838 559 goto export_end;
ee0508d4
DSH
560 }
561
62324627 562 safes = sk_PKCS7_new_null ();
5de603ab 563 sk_PKCS7_push (safes, authsafe);
ee0508d4 564
9ee1c838
RL
565#ifdef CRYPTO_MDEBUG
566 CRYPTO_pop_info();
567 CRYPTO_push_info("building shrouded key bag");
568#endif
569
ee0508d4
DSH
570 /* Make a shrouded key bag */
571 p8 = EVP_PKEY2PKCS8 (key);
ee0508d4 572 if(keytype) PKCS8_add_keyusage(p8, keytype);
525f51f6 573 bag = PKCS12_MAKE_SHKEYBAG(key_pbe, cpass, -1, NULL, 0, iter, p8);
ee0508d4 574 PKCS8_PRIV_KEY_INFO_free(p8);
9ee1c838 575 p8 = NULL;
ee0508d4 576 if (name) PKCS12_add_friendlyname (bag, name, -1);
f2a253e0 577 if(csp_name) PKCS12_add_CSPName_asc(bag, csp_name, -1);
12ea4470 578 PKCS12_add_localkeyid (bag, keyid, keyidlen);
62324627 579 bags = sk_PKCS12_SAFEBAG_new_null();
f2716dad 580 sk_PKCS12_SAFEBAG_push (bags, bag);
9ee1c838
RL
581
582#ifdef CRYPTO_MDEBUG
583 CRYPTO_pop_info();
584 CRYPTO_push_info("encrypting shrouded key bag");
585#endif
586
ee0508d4
DSH
587 /* Turn it into unencrypted safe bag */
588 authsafe = PKCS12_pack_p7data (bags);
f2716dad 589 sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free);
9ee1c838 590 bags = NULL;
5de603ab 591 sk_PKCS7_push (safes, authsafe);
ee0508d4 592
9ee1c838
RL
593#ifdef CRYPTO_MDEBUG
594 CRYPTO_pop_info();
595 CRYPTO_push_info("building pkcs12");
596#endif
597
ecbe0781 598 p12 = PKCS12_init(NID_pkcs7_data);
ee0508d4 599
ecbe0781 600 PKCS12_pack_authsafes(p12, safes);
ee0508d4 601
5de603ab 602 sk_PKCS7_pop_free(safes, PKCS7_free);
9ee1c838 603 safes = NULL;
ee0508d4 604
e40b7abe 605 PKCS12_set_mac (p12, mpass, -1, NULL, 0, maciter, NULL);
ee0508d4 606
9ee1c838
RL
607#ifdef CRYPTO_MDEBUG
608 CRYPTO_pop_info();
609 CRYPTO_push_info("writing pkcs12");
610#endif
611
ee0508d4
DSH
612 i2d_PKCS12_bio (out, p12);
613
ee0508d4 614 ret = 0;
a873356c 615
9ee1c838
RL
616 export_end:
617#ifdef CRYPTO_MDEBUG
618 CRYPTO_pop_info();
619 CRYPTO_pop_info();
620 CRYPTO_push_info("process -export_cert: freeing");
621#endif
622
623 if (key) EVP_PKEY_free(key);
624 if (certs) sk_X509_pop_free(certs, X509_free);
625 if (safes) sk_PKCS7_pop_free(safes, PKCS7_free);
626 if (bags) sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free);
5ce42a7e 627 if (ucert) X509_free(ucert);
9ee1c838 628
a873356c
BM
629#ifdef CRYPTO_MDEBUG
630 CRYPTO_pop_info();
631#endif
ee0508d4
DSH
632 goto end;
633
ee86c3f5 634 }
ee0508d4
DSH
635
636 if (!(p12 = d2i_PKCS12_bio (in, NULL))) {
637 ERR_print_errors(bio_err);
638 goto end;
639 }
640
a873356c
BM
641#ifdef CRYPTO_MDEBUG
642 CRYPTO_push_info("read import password");
643#endif
e40b7abe 644 if(!noprompt && EVP_read_pw_string(pass, 50, "Enter Import Password:", 0)) {
ee0508d4
DSH
645 BIO_printf (bio_err, "Can't read Password\n");
646 goto end;
647 }
a873356c
BM
648#ifdef CRYPTO_MDEBUG
649 CRYPTO_pop_info();
650#endif
ee0508d4
DSH
651
652 if (!twopass) strcpy(macpass, pass);
653
654 if (options & INFO) BIO_printf (bio_err, "MAC Iteration %ld\n", p12->mac->iter ? ASN1_INTEGER_get (p12->mac->iter) : 1);
655 if(macver) {
a873356c
BM
656#ifdef CRYPTO_MDEBUG
657 CRYPTO_push_info("verify MAC");
658#endif
a331a305
DSH
659 /* If we enter empty password try no password first */
660 if(!macpass[0] && PKCS12_verify_mac(p12, NULL, 0)) {
661 /* If mac and crypto pass the same set it to NULL too */
662 if(!twopass) cpass = NULL;
663 } else if (!PKCS12_verify_mac(p12, mpass, -1)) {
657e60fa 664 BIO_printf (bio_err, "Mac verify error: invalid password?\n");
ee0508d4
DSH
665 ERR_print_errors (bio_err);
666 goto end;
a331a305
DSH
667 }
668 BIO_printf (bio_err, "MAC verified OK\n");
a873356c
BM
669#ifdef CRYPTO_MDEBUG
670 CRYPTO_pop_info();
671#endif
ee0508d4
DSH
672 }
673
a873356c
BM
674#ifdef CRYPTO_MDEBUG
675 CRYPTO_push_info("output keys and certificates");
676#endif
f07fb9b2 677 if (!dump_certs_keys_p12 (out, p12, cpass, -1, options, passout)) {
ee0508d4
DSH
678 BIO_printf(bio_err, "Error outputting keys and certificates\n");
679 ERR_print_errors (bio_err);
680 goto end;
681 }
a873356c
BM
682#ifdef CRYPTO_MDEBUG
683 CRYPTO_pop_info();
684#endif
ee0508d4 685 ret = 0;
88364bc2
RL
686 end:
687 if (p12) PKCS12_free(p12);
d13e4eb0 688 if(export_cert || inrand) app_RAND_write_file(NULL, bio_err);
a873356c
BM
689#ifdef CRYPTO_MDEBUG
690 CRYPTO_remove_all_info();
691#endif
692 BIO_free(in);
645749ef 693 BIO_free_all(out);
9ee1c838 694 if (canames) sk_free(canames);
26a3a48d
RL
695 if(passin) OPENSSL_free(passin);
696 if(passout) OPENSSL_free(passout);
5abc8ae6 697 apps_shutdown();
ee0508d4
DSH
698 EXIT(ret);
699}
700
61f5b6f3 701int dump_certs_keys_p12 (BIO *out, PKCS12 *p12, char *pass,
f07fb9b2 702 int passlen, int options, char *pempass)
ee0508d4 703{
5de603ab 704 STACK_OF(PKCS7) *asafes;
f2716dad 705 STACK_OF(PKCS12_SAFEBAG) *bags;
ee0508d4
DSH
706 int i, bagnid;
707 PKCS7 *p7;
5de603ab 708
ecbe0781 709 if (!( asafes = PKCS12_unpack_authsafes(p12))) return 0;
5de603ab
BL
710 for (i = 0; i < sk_PKCS7_num (asafes); i++) {
711 p7 = sk_PKCS7_value (asafes, i);
ee0508d4
DSH
712 bagnid = OBJ_obj2nid (p7->type);
713 if (bagnid == NID_pkcs7_data) {
ecbe0781 714 bags = PKCS12_unpack_p7data(p7);
ee0508d4
DSH
715 if (options & INFO) BIO_printf (bio_err, "PKCS7 Data\n");
716 } else if (bagnid == NID_pkcs7_encrypted) {
717 if (options & INFO) {
ecbe0781
DSH
718 BIO_printf(bio_err, "PKCS7 Encrypted data: ");
719 alg_print(bio_err,
ee0508d4
DSH
720 p7->d.encrypted->enc_data->algorithm);
721 }
ecbe0781 722 bags = PKCS12_unpack_p7encdata(p7, pass, passlen);
ee0508d4
DSH
723 } else continue;
724 if (!bags) return 0;
725 if (!dump_certs_pkeys_bags (out, bags, pass, passlen,
f07fb9b2 726 options, pempass)) {
f2716dad 727 sk_PKCS12_SAFEBAG_pop_free (bags, PKCS12_SAFEBAG_free);
ee0508d4
DSH
728 return 0;
729 }
f2716dad 730 sk_PKCS12_SAFEBAG_pop_free (bags, PKCS12_SAFEBAG_free);
ee0508d4 731 }
5de603ab 732 sk_PKCS7_pop_free (asafes, PKCS7_free);
ee0508d4
DSH
733 return 1;
734}
735
f2716dad
BL
736int dump_certs_pkeys_bags (BIO *out, STACK_OF(PKCS12_SAFEBAG) *bags,
737 char *pass, int passlen, int options, char *pempass)
ee0508d4
DSH
738{
739 int i;
f2716dad 740 for (i = 0; i < sk_PKCS12_SAFEBAG_num (bags); i++) {
ee0508d4 741 if (!dump_certs_pkeys_bag (out,
f2716dad
BL
742 sk_PKCS12_SAFEBAG_value (bags, i),
743 pass, passlen,
744 options, pempass))
745 return 0;
ee0508d4
DSH
746 }
747 return 1;
748}
749
61f5b6f3 750int dump_certs_pkeys_bag (BIO *out, PKCS12_SAFEBAG *bag, char *pass,
f07fb9b2 751 int passlen, int options, char *pempass)
ee0508d4
DSH
752{
753 EVP_PKEY *pkey;
754 PKCS8_PRIV_KEY_INFO *p8;
755 X509 *x509;
756
757 switch (M_PKCS12_bag_type(bag))
758 {
759 case NID_keyBag:
760 if (options & INFO) BIO_printf (bio_err, "Key bag\n");
761 if (options & NOKEYS) return 1;
762 print_attribs (out, bag->attrib, "Bag Attributes");
763 p8 = bag->value.keybag;
764 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
765 print_attribs (out, p8->attributes, "Key Attributes");
a3fe382e 766 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, pempass);
ee0508d4
DSH
767 EVP_PKEY_free(pkey);
768 break;
769
770 case NID_pkcs8ShroudedKeyBag:
771 if (options & INFO) {
772 BIO_printf (bio_err, "Shrouded Keybag: ");
773 alg_print (bio_err, bag->value.shkeybag->algor);
774 }
775 if (options & NOKEYS) return 1;
776 print_attribs (out, bag->attrib, "Bag Attributes");
ecbe0781 777 if (!(p8 = PKCS12_decrypt_skey(bag, pass, passlen)))
ee0508d4
DSH
778 return 0;
779 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
780 print_attribs (out, p8->attributes, "Key Attributes");
781 PKCS8_PRIV_KEY_INFO_free(p8);
a3fe382e 782 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, pempass);
ee0508d4
DSH
783 EVP_PKEY_free(pkey);
784 break;
785
786 case NID_certBag:
787 if (options & INFO) BIO_printf (bio_err, "Certificate bag\n");
788 if (options & NOCERTS) return 1;
789 if (PKCS12_get_attr(bag, NID_localKeyID)) {
790 if (options & CACERTS) return 1;
791 } else if (options & CLCERTS) return 1;
792 print_attribs (out, bag->attrib, "Bag Attributes");
793 if (M_PKCS12_cert_bag_type(bag) != NID_x509Certificate )
794 return 1;
ecbe0781 795 if (!(x509 = PKCS12_certbag2x509(bag))) return 0;
ee0508d4
DSH
796 dump_cert_text (out, x509);
797 PEM_write_bio_X509 (out, x509);
798 X509_free(x509);
799 break;
800
801 case NID_safeContentsBag:
802 if (options & INFO) BIO_printf (bio_err, "Safe Contents bag\n");
803 print_attribs (out, bag->attrib, "Bag Attributes");
804 return dump_certs_pkeys_bags (out, bag->value.safes, pass,
f07fb9b2 805 passlen, options, pempass);
ee0508d4
DSH
806
807 default:
808 BIO_printf (bio_err, "Warning unsupported bag type: ");
809 i2a_ASN1_OBJECT (bio_err, bag->type);
810 BIO_printf (bio_err, "\n");
811 return 1;
812 break;
813 }
814 return 1;
815}
816
817/* Given a single certificate return a verified chain or NULL if error */
818
819/* Hope this is OK .... */
820
88364bc2 821int get_cert_chain (X509 *cert, X509_STORE *store, STACK_OF(X509) **chain)
ee0508d4 822{
ee0508d4 823 X509_STORE_CTX store_ctx;
84c15db5 824 STACK_OF(X509) *chn;
ee0508d4 825 int i;
a873356c 826
79aa04ef
GT
827 /* FIXME: Should really check the return status of X509_STORE_CTX_init
828 * for an error, but how that fits into the return value of this
829 * function is less obvious. */
ee0508d4
DSH
830 X509_STORE_CTX_init(&store_ctx, store, cert, NULL);
831 if (X509_verify_cert(&store_ctx) <= 0) {
832 i = X509_STORE_CTX_get_error (&store_ctx);
833 goto err;
834 }
c7cb16a8 835 chn = X509_STORE_CTX_get1_chain(&store_ctx);
ee0508d4
DSH
836 i = 0;
837 *chain = chn;
838err:
839 X509_STORE_CTX_cleanup(&store_ctx);
ee0508d4
DSH
840
841 return i;
842}
843
6b691a5c 844int alg_print (BIO *x, X509_ALGOR *alg)
ee0508d4
DSH
845{
846 PBEPARAM *pbe;
847 unsigned char *p;
848 p = alg->parameter->value.sequence->data;
849 pbe = d2i_PBEPARAM (NULL, &p, alg->parameter->value.sequence->length);
850 BIO_printf (bio_err, "%s, Iteration %d\n",
851 OBJ_nid2ln(OBJ_obj2nid(alg->algorithm)), ASN1_INTEGER_get(pbe->iter));
852 PBEPARAM_free (pbe);
853 return 0;
854}
855
856/* Load all certificates from a given file */
857
84c15db5 858int cert_load(BIO *in, STACK_OF(X509) *sk)
ee0508d4
DSH
859{
860 int ret;
861 X509 *cert;
862 ret = 0;
9ee1c838
RL
863#ifdef CRYPTO_MDEBUG
864 CRYPTO_push_info("cert_load(): reading one cert");
865#endif
74678cc2 866 while((cert = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
9ee1c838
RL
867#ifdef CRYPTO_MDEBUG
868 CRYPTO_pop_info();
869#endif
ee0508d4 870 ret = 1;
84c15db5 871 sk_X509_push(sk, cert);
9ee1c838
RL
872#ifdef CRYPTO_MDEBUG
873 CRYPTO_push_info("cert_load(): reading one cert");
874#endif
ee0508d4 875 }
9ee1c838
RL
876#ifdef CRYPTO_MDEBUG
877 CRYPTO_pop_info();
878#endif
ee0508d4
DSH
879 if(ret) ERR_clear_error();
880 return ret;
881}
882
883/* Generalised attribute print: handle PKCS#8 and bag attributes */
884
84c15db5 885int print_attribs (BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst, char *name)
ee0508d4
DSH
886{
887 X509_ATTRIBUTE *attr;
888 ASN1_TYPE *av;
889 char *value;
890 int i, attr_nid;
891 if(!attrlst) {
892 BIO_printf(out, "%s: <No Attributes>\n", name);
893 return 1;
894 }
84c15db5 895 if(!sk_X509_ATTRIBUTE_num(attrlst)) {
ee0508d4
DSH
896 BIO_printf(out, "%s: <Empty Attributes>\n", name);
897 return 1;
898 }
899 BIO_printf(out, "%s\n", name);
84c15db5
BL
900 for(i = 0; i < sk_X509_ATTRIBUTE_num(attrlst); i++) {
901 attr = sk_X509_ATTRIBUTE_value(attrlst, i);
ee0508d4
DSH
902 attr_nid = OBJ_obj2nid(attr->object);
903 BIO_printf(out, " ");
904 if(attr_nid == NID_undef) {
905 i2a_ASN1_OBJECT (out, attr->object);
906 BIO_printf(out, ": ");
907 } else BIO_printf(out, "%s: ", OBJ_nid2ln(attr_nid));
908
0b3f827c
BL
909 if(sk_ASN1_TYPE_num(attr->value.set)) {
910 av = sk_ASN1_TYPE_value(attr->value.set, 0);
ee0508d4
DSH
911 switch(av->type) {
912 case V_ASN1_BMPSTRING:
913 value = uni2asc(av->value.bmpstring->data,
914 av->value.bmpstring->length);
915 BIO_printf(out, "%s\n", value);
26a3a48d 916 OPENSSL_free(value);
ee0508d4
DSH
917 break;
918
919 case V_ASN1_OCTET_STRING:
688fbf54
DSH
920 hex_prin(out, av->value.octet_string->data,
921 av->value.octet_string->length);
ee0508d4
DSH
922 BIO_printf(out, "\n");
923 break;
924
925 case V_ASN1_BIT_STRING:
688fbf54
DSH
926 hex_prin(out, av->value.bit_string->data,
927 av->value.bit_string->length);
ee0508d4
DSH
928 BIO_printf(out, "\n");
929 break;
930
931 default:
932 BIO_printf(out, "<Unsupported tag %d>\n", av->type);
933 break;
934 }
935 } else BIO_printf(out, "<No Values>\n");
936 }
937 return 1;
938}
939
6b691a5c 940void hex_prin(BIO *out, unsigned char *buf, int len)
ee0508d4
DSH
941{
942 int i;
943 for (i = 0; i < len; i++) BIO_printf (out, "%02X ", buf[i]);
944}
a8515441
BM
945
946#endif