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