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