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