Add support for MS CSP Name PKCS#12 attribute.
[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     if (engine != NULL) {
304         if((e = ENGINE_by_id(engine)) == NULL) {
305             BIO_printf(bio_err,"invalid engine \"%s\"\n", engine);
306             goto end;
307         }
308         if(!ENGINE_set_default(e, ENGINE_METHOD_ALL)) {
309             BIO_printf(bio_err,"can't use that engine\n");
310             goto end;
311         }
312         BIO_printf(bio_err,"engine \"%s\" set.\n", engine);
313         /* Free our "structural" reference. */
314         ENGINE_free(e);
315     }
316
317     if(passarg) {
318         if(export_cert) passargout = passarg;
319         else passargin = passarg;
320     }
321
322     if(!app_passwd(bio_err, passargin, passargout, &passin, &passout)) {
323         BIO_printf(bio_err, "Error getting passwords\n");
324         goto end;
325     }
326
327     if(!cpass) {
328         if(export_cert) cpass = passout;
329         else cpass = passin;
330     }
331
332     if(cpass) {
333         mpass = cpass;
334         noprompt = 1;
335     } else {
336         cpass = pass;
337         mpass = macpass;
338     }
339
340     if(export_cert || inrand) {
341         app_RAND_load_file(NULL, bio_err, (inrand != NULL));
342         if (inrand != NULL)
343                 BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
344                         app_RAND_load_files(inrand));
345     }
346     ERR_load_crypto_strings();
347
348 #ifdef CRYPTO_MDEBUG
349     CRYPTO_push_info("read files");
350 #endif
351
352     if (!infile) in = BIO_new_fp(stdin, BIO_NOCLOSE);
353     else in = BIO_new_file(infile, "rb");
354     if (!in) {
355             BIO_printf(bio_err, "Error opening input file %s\n",
356                                                 infile ? infile : "<stdin>");
357             perror (infile);
358             goto end;
359    }
360
361    if (certfile) {
362         if(!(certsin = BIO_new_file(certfile, "r"))) {
363             BIO_printf(bio_err, "Can't open certificate file %s\n", certfile);
364             perror (certfile);
365             goto end;
366         }
367     }
368
369     if (keyname) {
370         if(!(inkey = BIO_new_file(keyname, "r"))) {
371             BIO_printf(bio_err, "Can't key certificate file %s\n", keyname);
372             perror (keyname);
373             goto end;
374         }
375      }
376
377 #ifdef CRYPTO_MDEBUG
378     CRYPTO_pop_info();
379     CRYPTO_push_info("write files");
380 #endif
381
382     if (!outfile) {
383         out = BIO_new_fp(stdout, BIO_NOCLOSE);
384 #ifdef OPENSSL_SYS_VMS
385         {
386             BIO *tmpbio = BIO_new(BIO_f_linebuffer());
387             out = BIO_push(tmpbio, out);
388         }
389 #endif
390     } else out = BIO_new_file(outfile, "wb");
391     if (!out) {
392         BIO_printf(bio_err, "Error opening output file %s\n",
393                                                 outfile ? outfile : "<stdout>");
394         perror (outfile);
395         goto end;
396     }
397     if (twopass) {
398 #ifdef CRYPTO_MDEBUG
399     CRYPTO_push_info("read MAC password");
400 #endif
401         if(EVP_read_pw_string (macpass, 50, "Enter MAC Password:", export_cert))
402         {
403             BIO_printf (bio_err, "Can't read Password\n");
404             goto end;
405         }
406 #ifdef CRYPTO_MDEBUG
407     CRYPTO_pop_info();
408 #endif
409     }
410
411     if (export_cert) {
412         EVP_PKEY *key = NULL;
413         STACK_OF(PKCS12_SAFEBAG) *bags = NULL;
414         STACK_OF(PKCS7) *safes = NULL;
415         PKCS12_SAFEBAG *bag = NULL;
416         PKCS8_PRIV_KEY_INFO *p8 = NULL;
417         PKCS7 *authsafe = NULL;
418         X509 *ucert = NULL;
419         STACK_OF(X509) *certs=NULL;
420         char *catmp = NULL;
421         int i;
422         unsigned char keyid[EVP_MAX_MD_SIZE];
423         unsigned int keyidlen = 0;
424
425 #ifdef CRYPTO_MDEBUG
426         CRYPTO_push_info("process -export_cert");
427         CRYPTO_push_info("reading private key");
428 #endif
429         key = PEM_read_bio_PrivateKey(inkey ? inkey : in, NULL, NULL, passin);
430         if (!inkey) (void) BIO_reset(in);
431         else BIO_free(inkey);
432         if (!key) {
433                 BIO_printf (bio_err, "Error loading private key\n");
434                 ERR_print_errors(bio_err);
435                 goto export_end;
436         }
437
438 #ifdef CRYPTO_MDEBUG
439         CRYPTO_pop_info();
440         CRYPTO_push_info("reading certs from input");
441 #endif
442
443         certs = sk_X509_new_null();
444
445         /* Load in all certs in input file */
446         if(!cert_load(in, certs)) {
447                 BIO_printf(bio_err, "Error loading certificates from input\n");
448                 ERR_print_errors(bio_err);
449                 goto export_end;
450         }
451
452 #ifdef CRYPTO_MDEBUG
453         CRYPTO_pop_info();
454         CRYPTO_push_info("reading certs from input 2");
455 #endif
456
457         for(i = 0; i < sk_X509_num(certs); i++) {
458                 ucert = sk_X509_value(certs, i);
459                 if(X509_check_private_key(ucert, key)) {
460                         X509_digest(ucert, EVP_sha1(), keyid, &keyidlen);
461                         break;
462                 }
463         }
464         if(!keyidlen) {
465                 ucert = NULL;
466                 BIO_printf(bio_err, "No certificate matches private key\n");
467                 goto export_end;
468         }
469         
470 #ifdef CRYPTO_MDEBUG
471         CRYPTO_pop_info();
472         CRYPTO_push_info("reading certs from certfile");
473 #endif
474
475         bags = sk_PKCS12_SAFEBAG_new_null ();
476
477         /* Add any more certificates asked for */
478         if (certsin) {
479                 if(!cert_load(certsin, certs)) {
480                         BIO_printf(bio_err, "Error loading certificates from certfile\n");
481                         ERR_print_errors(bio_err);
482                         goto export_end;
483                 }
484                 BIO_free(certsin);
485         }
486
487 #ifdef CRYPTO_MDEBUG
488         CRYPTO_pop_info();
489         CRYPTO_push_info("building chain");
490 #endif
491
492         /* If chaining get chain from user cert */
493         if (chain) {
494                 int vret;
495                 STACK_OF(X509) *chain2;
496                 X509_STORE *store = X509_STORE_new();
497                 if (!store)
498                         {
499                         BIO_printf (bio_err, "Memory allocation error\n");
500                         goto export_end;
501                         }
502                 if (!X509_STORE_load_locations(store, CAfile, CApath))
503                         X509_STORE_set_default_paths (store);
504
505                 vret = get_cert_chain (ucert, store, &chain2);
506                 X509_STORE_free(store);
507
508                 if (!vret) {
509                     /* Exclude verified certificate */
510                     for (i = 1; i < sk_X509_num (chain2) ; i++) 
511                         sk_X509_push(certs, sk_X509_value (chain2, i));
512                 }
513                 sk_X509_free(chain2);
514                 if (vret) {
515                         BIO_printf (bio_err, "Error %s getting chain.\n",
516                                         X509_verify_cert_error_string(vret));
517                         goto export_end;
518                 }                       
519         }
520
521 #ifdef CRYPTO_MDEBUG
522         CRYPTO_pop_info();
523         CRYPTO_push_info("building bags");
524 #endif
525
526         /* We now have loads of certificates: include them all */
527         for(i = 0; i < sk_X509_num(certs); i++) {
528                 X509 *cert = NULL;
529                 cert = sk_X509_value(certs, i);
530                 bag = PKCS12_x5092certbag(cert);
531                 /* If it matches private key set id */
532                 if(cert == ucert) {
533                         if(name) PKCS12_add_friendlyname(bag, name, -1);
534                         PKCS12_add_localkeyid(bag, keyid, keyidlen);
535                 } else if((catmp = sk_shift(canames))) 
536                                 PKCS12_add_friendlyname(bag, catmp, -1);
537                 sk_PKCS12_SAFEBAG_push(bags, bag);
538         }
539         sk_X509_pop_free(certs, X509_free);
540         certs = NULL;
541         /* ucert is part of certs so it is already freed */
542         ucert = NULL;
543
544 #ifdef CRYPTO_MDEBUG
545         CRYPTO_pop_info();
546         CRYPTO_push_info("encrypting bags");
547 #endif
548
549         if(!noprompt &&
550                 EVP_read_pw_string(pass, 50, "Enter Export Password:", 1)) {
551             BIO_printf (bio_err, "Can't read Password\n");
552             goto export_end;
553         }
554         if (!twopass) strcpy(macpass, pass);
555         /* Turn certbags into encrypted authsafe */
556         authsafe = PKCS12_pack_p7encdata(cert_pbe, cpass, -1, NULL, 0,
557                                                                  iter, bags);
558         sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free);
559         bags = NULL;
560
561         if (!authsafe) {
562                 ERR_print_errors (bio_err);
563                 goto export_end;
564         }
565
566         safes = sk_PKCS7_new_null ();
567         sk_PKCS7_push (safes, authsafe);
568
569 #ifdef CRYPTO_MDEBUG
570         CRYPTO_pop_info();
571         CRYPTO_push_info("building shrouded key bag");
572 #endif
573
574         /* Make a shrouded key bag */
575         p8 = EVP_PKEY2PKCS8 (key);
576         if(keytype) PKCS8_add_keyusage(p8, keytype);
577         bag = PKCS12_MAKE_SHKEYBAG(key_pbe, cpass, -1, NULL, 0, iter, p8);
578         PKCS8_PRIV_KEY_INFO_free(p8);
579         p8 = NULL;
580         if (name) PKCS12_add_friendlyname (bag, name, -1);
581         if(csp_name) PKCS12_add_CSPName_asc(bag, csp_name, -1);
582         PKCS12_add_localkeyid (bag, keyid, keyidlen);
583         bags = sk_PKCS12_SAFEBAG_new_null();
584         sk_PKCS12_SAFEBAG_push (bags, bag);
585
586 #ifdef CRYPTO_MDEBUG
587         CRYPTO_pop_info();
588         CRYPTO_push_info("encrypting shrouded key bag");
589 #endif
590
591         /* Turn it into unencrypted safe bag */
592         authsafe = PKCS12_pack_p7data (bags);
593         sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free);
594         bags = NULL;
595         sk_PKCS7_push (safes, authsafe);
596
597 #ifdef CRYPTO_MDEBUG
598         CRYPTO_pop_info();
599         CRYPTO_push_info("building pkcs12");
600 #endif
601
602         p12 = PKCS12_init(NID_pkcs7_data);
603
604         PKCS12_pack_authsafes(p12, safes);
605
606         sk_PKCS7_pop_free(safes, PKCS7_free);
607         safes = NULL;
608
609         PKCS12_set_mac (p12, mpass, -1, NULL, 0, maciter, NULL);
610
611 #ifdef CRYPTO_MDEBUG
612         CRYPTO_pop_info();
613         CRYPTO_push_info("writing pkcs12");
614 #endif
615
616         i2d_PKCS12_bio (out, p12);
617
618         ret = 0;
619
620     export_end:
621 #ifdef CRYPTO_MDEBUG
622         CRYPTO_pop_info();
623         CRYPTO_pop_info();
624         CRYPTO_push_info("process -export_cert: freeing");
625 #endif
626
627         if (key) EVP_PKEY_free(key);
628         if (certs) sk_X509_pop_free(certs, X509_free);
629         if (safes) sk_PKCS7_pop_free(safes, PKCS7_free);
630         if (bags) sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free);
631         if (ucert) X509_free(ucert);
632
633 #ifdef CRYPTO_MDEBUG
634         CRYPTO_pop_info();
635 #endif
636         goto end;
637         
638     }
639
640     if (!(p12 = d2i_PKCS12_bio (in, NULL))) {
641         ERR_print_errors(bio_err);
642         goto end;
643     }
644
645 #ifdef CRYPTO_MDEBUG
646     CRYPTO_push_info("read import password");
647 #endif
648     if(!noprompt && EVP_read_pw_string(pass, 50, "Enter Import Password:", 0)) {
649         BIO_printf (bio_err, "Can't read Password\n");
650         goto end;
651     }
652 #ifdef CRYPTO_MDEBUG
653     CRYPTO_pop_info();
654 #endif
655
656     if (!twopass) strcpy(macpass, pass);
657
658     if (options & INFO) BIO_printf (bio_err, "MAC Iteration %ld\n", p12->mac->iter ? ASN1_INTEGER_get (p12->mac->iter) : 1);
659     if(macver) {
660 #ifdef CRYPTO_MDEBUG
661     CRYPTO_push_info("verify MAC");
662 #endif
663         /* If we enter empty password try no password first */
664         if(!macpass[0] && PKCS12_verify_mac(p12, NULL, 0)) {
665                 /* If mac and crypto pass the same set it to NULL too */
666                 if(!twopass) cpass = NULL;
667         } else if (!PKCS12_verify_mac(p12, mpass, -1)) {
668             BIO_printf (bio_err, "Mac verify error: invalid password?\n");
669             ERR_print_errors (bio_err);
670             goto end;
671         }
672         BIO_printf (bio_err, "MAC verified OK\n");
673 #ifdef CRYPTO_MDEBUG
674     CRYPTO_pop_info();
675 #endif
676     }
677
678 #ifdef CRYPTO_MDEBUG
679     CRYPTO_push_info("output keys and certificates");
680 #endif
681     if (!dump_certs_keys_p12 (out, p12, cpass, -1, options, passout)) {
682         BIO_printf(bio_err, "Error outputting keys and certificates\n");
683         ERR_print_errors (bio_err);
684         goto end;
685     }
686 #ifdef CRYPTO_MDEBUG
687     CRYPTO_pop_info();
688 #endif
689     ret = 0;
690  end:
691     if (p12) PKCS12_free(p12);
692     if(export_cert || inrand) app_RAND_write_file(NULL, bio_err);
693 #ifdef CRYPTO_MDEBUG
694     CRYPTO_remove_all_info();
695 #endif
696     BIO_free(in);
697     BIO_free_all(out);
698     if (canames) sk_free(canames);
699     if(passin) OPENSSL_free(passin);
700     if(passout) OPENSSL_free(passout);
701     EXIT(ret);
702 }
703
704 int dump_certs_keys_p12 (BIO *out, PKCS12 *p12, char *pass,
705              int passlen, int options, char *pempass)
706 {
707         STACK_OF(PKCS7) *asafes;
708         STACK_OF(PKCS12_SAFEBAG) *bags;
709         int i, bagnid;
710         PKCS7 *p7;
711
712         if (!( asafes = PKCS12_unpack_authsafes(p12))) return 0;
713         for (i = 0; i < sk_PKCS7_num (asafes); i++) {
714                 p7 = sk_PKCS7_value (asafes, i);
715                 bagnid = OBJ_obj2nid (p7->type);
716                 if (bagnid == NID_pkcs7_data) {
717                         bags = PKCS12_unpack_p7data(p7);
718                         if (options & INFO) BIO_printf (bio_err, "PKCS7 Data\n");
719                 } else if (bagnid == NID_pkcs7_encrypted) {
720                         if (options & INFO) {
721                                 BIO_printf(bio_err, "PKCS7 Encrypted data: ");
722                                 alg_print(bio_err, 
723                                         p7->d.encrypted->enc_data->algorithm);
724                         }
725                         bags = PKCS12_unpack_p7encdata(p7, pass, passlen);
726                 } else continue;
727                 if (!bags) return 0;
728                 if (!dump_certs_pkeys_bags (out, bags, pass, passlen, 
729                                                  options, pempass)) {
730                         sk_PKCS12_SAFEBAG_pop_free (bags, PKCS12_SAFEBAG_free);
731                         return 0;
732                 }
733                 sk_PKCS12_SAFEBAG_pop_free (bags, PKCS12_SAFEBAG_free);
734         }
735         sk_PKCS7_pop_free (asafes, PKCS7_free);
736         return 1;
737 }
738
739 int dump_certs_pkeys_bags (BIO *out, STACK_OF(PKCS12_SAFEBAG) *bags,
740                            char *pass, int passlen, int options, char *pempass)
741 {
742         int i;
743         for (i = 0; i < sk_PKCS12_SAFEBAG_num (bags); i++) {
744                 if (!dump_certs_pkeys_bag (out,
745                                            sk_PKCS12_SAFEBAG_value (bags, i),
746                                            pass, passlen,
747                                            options, pempass))
748                     return 0;
749         }
750         return 1;
751 }
752
753 int dump_certs_pkeys_bag (BIO *out, PKCS12_SAFEBAG *bag, char *pass,
754              int passlen, int options, char *pempass)
755 {
756         EVP_PKEY *pkey;
757         PKCS8_PRIV_KEY_INFO *p8;
758         X509 *x509;
759         
760         switch (M_PKCS12_bag_type(bag))
761         {
762         case NID_keyBag:
763                 if (options & INFO) BIO_printf (bio_err, "Key bag\n");
764                 if (options & NOKEYS) return 1;
765                 print_attribs (out, bag->attrib, "Bag Attributes");
766                 p8 = bag->value.keybag;
767                 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
768                 print_attribs (out, p8->attributes, "Key Attributes");
769                 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, pempass);
770                 EVP_PKEY_free(pkey);
771         break;
772
773         case NID_pkcs8ShroudedKeyBag:
774                 if (options & INFO) {
775                         BIO_printf (bio_err, "Shrouded Keybag: ");
776                         alg_print (bio_err, bag->value.shkeybag->algor);
777                 }
778                 if (options & NOKEYS) return 1;
779                 print_attribs (out, bag->attrib, "Bag Attributes");
780                 if (!(p8 = PKCS12_decrypt_skey(bag, pass, passlen)))
781                                 return 0;
782                 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
783                 print_attribs (out, p8->attributes, "Key Attributes");
784                 PKCS8_PRIV_KEY_INFO_free(p8);
785                 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, pempass);
786                 EVP_PKEY_free(pkey);
787         break;
788
789         case NID_certBag:
790                 if (options & INFO) BIO_printf (bio_err, "Certificate bag\n");
791                 if (options & NOCERTS) return 1;
792                 if (PKCS12_get_attr(bag, NID_localKeyID)) {
793                         if (options & CACERTS) return 1;
794                 } else if (options & CLCERTS) return 1;
795                 print_attribs (out, bag->attrib, "Bag Attributes");
796                 if (M_PKCS12_cert_bag_type(bag) != NID_x509Certificate )
797                                                                  return 1;
798                 if (!(x509 = PKCS12_certbag2x509(bag))) return 0;
799                 dump_cert_text (out, x509);
800                 PEM_write_bio_X509 (out, x509);
801                 X509_free(x509);
802         break;
803
804         case NID_safeContentsBag:
805                 if (options & INFO) BIO_printf (bio_err, "Safe Contents bag\n");
806                 print_attribs (out, bag->attrib, "Bag Attributes");
807                 return dump_certs_pkeys_bags (out, bag->value.safes, pass,
808                                                             passlen, options, pempass);
809                                         
810         default:
811                 BIO_printf (bio_err, "Warning unsupported bag type: ");
812                 i2a_ASN1_OBJECT (bio_err, bag->type);
813                 BIO_printf (bio_err, "\n");
814                 return 1;
815         break;
816         }
817         return 1;
818 }
819
820 /* Given a single certificate return a verified chain or NULL if error */
821
822 /* Hope this is OK .... */
823
824 int get_cert_chain (X509 *cert, X509_STORE *store, STACK_OF(X509) **chain)
825 {
826         X509_STORE_CTX store_ctx;
827         STACK_OF(X509) *chn;
828         int i;
829
830         X509_STORE_CTX_init(&store_ctx, store, cert, NULL);
831         if (X509_verify_cert(&store_ctx) <= 0) {
832                 i = X509_STORE_CTX_get_error (&store_ctx);
833                 goto err;
834         }
835         chn =  X509_STORE_CTX_get1_chain(&store_ctx);
836         i = 0;
837         *chain = chn;
838 err:
839         X509_STORE_CTX_cleanup(&store_ctx);
840         
841         return i;
842 }       
843
844 int alg_print (BIO *x, X509_ALGOR *alg)
845 {
846         PBEPARAM *pbe;
847         unsigned char *p;
848         p = alg->parameter->value.sequence->data;
849         pbe = d2i_PBEPARAM (NULL, &p, alg->parameter->value.sequence->length);
850         BIO_printf (bio_err, "%s, Iteration %d\n", 
851         OBJ_nid2ln(OBJ_obj2nid(alg->algorithm)), ASN1_INTEGER_get(pbe->iter));
852         PBEPARAM_free (pbe);
853         return 0;
854 }
855
856 /* Load all certificates from a given file */
857
858 int cert_load(BIO *in, STACK_OF(X509) *sk)
859 {
860         int ret;
861         X509 *cert;
862         ret = 0;
863 #ifdef CRYPTO_MDEBUG
864         CRYPTO_push_info("cert_load(): reading one cert");
865 #endif
866         while((cert = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
867 #ifdef CRYPTO_MDEBUG
868                 CRYPTO_pop_info();
869 #endif
870                 ret = 1;
871                 sk_X509_push(sk, cert);
872 #ifdef CRYPTO_MDEBUG
873                 CRYPTO_push_info("cert_load(): reading one cert");
874 #endif
875         }
876 #ifdef CRYPTO_MDEBUG
877         CRYPTO_pop_info();
878 #endif
879         if(ret) ERR_clear_error();
880         return ret;
881 }
882
883 /* Generalised attribute print: handle PKCS#8 and bag attributes */
884
885 int print_attribs (BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst, char *name)
886 {
887         X509_ATTRIBUTE *attr;
888         ASN1_TYPE *av;
889         char *value;
890         int i, attr_nid;
891         if(!attrlst) {
892                 BIO_printf(out, "%s: <No Attributes>\n", name);
893                 return 1;
894         }
895         if(!sk_X509_ATTRIBUTE_num(attrlst)) {
896                 BIO_printf(out, "%s: <Empty Attributes>\n", name);
897                 return 1;
898         }
899         BIO_printf(out, "%s\n", name);
900         for(i = 0; i < sk_X509_ATTRIBUTE_num(attrlst); i++) {
901                 attr = sk_X509_ATTRIBUTE_value(attrlst, i);
902                 attr_nid = OBJ_obj2nid(attr->object);
903                 BIO_printf(out, "    ");
904                 if(attr_nid == NID_undef) {
905                         i2a_ASN1_OBJECT (out, attr->object);
906                         BIO_printf(out, ": ");
907                 } else BIO_printf(out, "%s: ", OBJ_nid2ln(attr_nid));
908
909                 if(sk_ASN1_TYPE_num(attr->value.set)) {
910                         av = sk_ASN1_TYPE_value(attr->value.set, 0);
911                         switch(av->type) {
912                                 case V_ASN1_BMPSTRING:
913                                 value = uni2asc(av->value.bmpstring->data,
914                                                av->value.bmpstring->length);
915                                 BIO_printf(out, "%s\n", value);
916                                 OPENSSL_free(value);
917                                 break;
918
919                                 case V_ASN1_OCTET_STRING:
920                                 hex_prin(out, av->value.octet_string->data,
921                                         av->value.octet_string->length);
922                                 BIO_printf(out, "\n");  
923                                 break;
924
925                                 case V_ASN1_BIT_STRING:
926                                 hex_prin(out, av->value.bit_string->data,
927                                         av->value.bit_string->length);
928                                 BIO_printf(out, "\n");  
929                                 break;
930
931                                 default:
932                                         BIO_printf(out, "<Unsupported tag %d>\n", av->type);
933                                 break;
934                         }
935                 } else BIO_printf(out, "<No Values>\n");
936         }
937         return 1;
938 }
939
940 void hex_prin(BIO *out, unsigned char *buf, int len)
941 {
942         int i;
943         for (i = 0; i < len; i++) BIO_printf (out, "%02X ", buf[i]);
944 }
945
946 #endif