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