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