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