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