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