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