Add support for -no-CApath and -no-CAfile options
[openssl.git] / apps / pkcs12.c
1 /*
2  * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3  * project.
4  */
5 /* ====================================================================
6  * Copyright (c) 1999-2006 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    licensing@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58
59 #include <openssl/opensslconf.h>
60 #if !defined(OPENSSL_NO_DES)
61
62 # include <stdio.h>
63 # include <stdlib.h>
64 # include <string.h>
65 # include "apps.h"
66 # include <openssl/crypto.h>
67 # include <openssl/err.h>
68 # include <openssl/pem.h>
69 # include <openssl/pkcs12.h>
70
71 # define NOKEYS          0x1
72 # define NOCERTS         0x2
73 # define INFO            0x4
74 # define CLCERTS         0x8
75 # define CACERTS         0x10
76
77 int get_cert_chain(X509 *cert, X509_STORE *store, STACK_OF(X509) **chain);
78 int dump_certs_keys_p12(BIO *out, PKCS12 *p12, char *pass, int passlen,
79                         int options, char *pempass, const EVP_CIPHER *enc);
80 int dump_certs_pkeys_bags(BIO *out, STACK_OF(PKCS12_SAFEBAG) *bags,
81                           char *pass, int passlen, int options, char *pempass,
82                           const EVP_CIPHER *enc);
83 int dump_certs_pkeys_bag(BIO *out, PKCS12_SAFEBAG *bags, char *pass,
84                          int passlen, int options, char *pempass,
85                          const EVP_CIPHER *enc);
86 int print_attribs(BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst,
87                   const char *name);
88 void hex_prin(BIO *out, unsigned char *buf, int len);
89 static int alg_print(X509_ALGOR *alg);
90 int cert_load(BIO *in, STACK_OF(X509) *sk);
91 static int set_pbe(int *ppbe, const char *str);
92
93 typedef enum OPTION_choice {
94     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
95     OPT_CIPHER, OPT_NOKEYS, OPT_KEYEX, OPT_KEYSIG, OPT_NOCERTS, OPT_CLCERTS,
96     OPT_CACERTS, OPT_NOOUT, OPT_INFO, OPT_CHAIN, OPT_TWOPASS, OPT_NOMACVER,
97     OPT_DESCERT, OPT_EXPORT, OPT_NOITER, OPT_MACITER, OPT_NOMACITER,
98     OPT_NOMAC, OPT_LMK, OPT_NODES, OPT_MACALG, OPT_CERTPBE, OPT_KEYPBE,
99     OPT_RAND, OPT_INKEY, OPT_CERTFILE, OPT_NAME, OPT_CSP, OPT_CANAME,
100     OPT_IN, OPT_OUT, OPT_PASSIN, OPT_PASSOUT, OPT_PASSWORD, OPT_CAPATH,
101     OPT_CAFILE, OPT_NOCAPATH, OPT_NOCAFILE, OPT_ENGINE
102 } OPTION_CHOICE;
103
104 OPTIONS pkcs12_options[] = {
105     {"help", OPT_HELP, '-', "Display this summary"},
106     {"nokeys", OPT_NOKEYS, '-', "Don't output private keys"},
107     {"keyex", OPT_KEYEX, '-', "Set MS key exchange type"},
108     {"keysig", OPT_KEYSIG, '-', "Set MS key signature type"},
109     {"nocerts", OPT_NOCERTS, '-', "Don't output certificates"},
110     {"clcerts", OPT_CLCERTS, '-', "Only output client certificates"},
111     {"cacerts", OPT_CACERTS, '-', "Only output CA certificates"},
112     {"noout", OPT_NOOUT, '-', "Don't output anything, just verify"},
113     {"info", OPT_INFO, '-', "Print info about PKCS#12 structure"},
114     {"chain", OPT_CHAIN, '-', "Add certificate chain"},
115     {"twopass", OPT_TWOPASS, '-', "Separate MAC, encryption passwords"},
116     {"nomacver", OPT_NOMACVER, '-', "Don't verify MAC"},
117 # ifndef OPENSSL_NO_RC2
118     {"descert", OPT_DESCERT, '-',
119      "Encrypt output with 3DES (default RC2-40)"},
120     {"certpbe", OPT_CERTPBE, 's',
121      "Certificate PBE algorithm (default RC2-40)"},
122 # else
123     {"descert", OPT_DESCERT, '-', "Encrypt output with 3DES (the default)"},
124     {"certpbe", OPT_CERTPBE, 's', "Certificate PBE algorithm (default 3DES)"},
125 # endif
126     {"export", OPT_EXPORT, '-', "Output PKCS12 file"},
127     {"noiter", OPT_NOITER, '-', "Don't use encryption iteration"},
128     {"maciter", OPT_MACITER, '-', "Use MAC iteration"},
129     {"nomaciter", OPT_NOMACITER, '-', "Don't use MAC iteration"},
130     {"nomac", OPT_NOMAC, '-', "Don't generate MAC"},
131     {"LMK", OPT_LMK, '-',
132      "Add local machine keyset attribute to private key"},
133     {"nodes", OPT_NODES, '-', "Don't encrypt private keys"},
134     {"macalg", OPT_MACALG, 's',
135      "Digest algorithm used in MAC (default SHA1)"},
136     {"keypbe", OPT_KEYPBE, 's', "Private key PBE algorithm (default 3DES)"},
137     {"rand", OPT_RAND, 's',
138      "Load the file(s) into the random number generator"},
139     {"inkey", OPT_INKEY, '<', "Private key if not infile"},
140     {"certfile", OPT_CERTFILE, '<', "Load certs from file"},
141     {"name", OPT_NAME, 's', "Use name as friendly name"},
142     {"CSP", OPT_CSP, 's', "Microsoft CSP name"},
143     {"caname", OPT_CANAME, 's',
144      "Use name as CA friendly name (can be repeated)"},
145     {"in", OPT_IN, '<', "Input filename"},
146     {"out", OPT_OUT, '>', "Output filename"},
147     {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
148     {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"},
149     {"password", OPT_PASSWORD, 's', "Set import/export password source"},
150     {"CApath", OPT_CAPATH, '/', "PEM-format directory of CA's"},
151     {"CAfile", OPT_CAFILE, '<', "PEM-format file of CA's"},
152     {"no-CAfile", OPT_NOCAFILE, '-',
153      "Do not load the default certificates file"},
154     {"no-CApath", OPT_NOCAPATH, '-',
155      "Do not load certificates from the default certificates directory"},
156     {"", OPT_CIPHER, '-', "Any supported cipher"},
157 # ifndef OPENSSL_NO_ENGINE
158     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
159 # endif
160     {NULL}
161 };
162
163 int pkcs12_main(int argc, char **argv)
164 {
165     char *infile = NULL, *outfile = NULL, *keyname = NULL, *certfile = NULL;
166     char *name = NULL, *csp_name = NULL;
167     char pass[2048], macpass[2048];
168     int export_cert = 0, options = 0, chain = 0, twopass = 0, keytype = 0;
169     int iter = PKCS12_DEFAULT_ITER, maciter = PKCS12_DEFAULT_ITER;
170 # ifndef OPENSSL_NO_RC2
171     int cert_pbe = NID_pbe_WithSHA1And40BitRC2_CBC;
172 # else
173     int cert_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
174 # endif
175     int key_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
176     int ret = 1, macver = 1, noprompt = 0, add_lmk = 0, private = 0;
177     char *passinarg = NULL, *passoutarg = NULL, *passarg = NULL;
178     char *passin = NULL, *passout = NULL, *inrand = NULL, *macalg = NULL;
179     char *cpass = NULL, *mpass = NULL, *CApath = NULL, *CAfile = NULL;
180     char *prog;
181     int noCApath = 0, noCAfile = 0;
182     ENGINE *e = NULL;
183     BIO *in = NULL, *out = NULL;
184     PKCS12 *p12 = NULL;
185     STACK_OF(OPENSSL_STRING) *canames = NULL;
186     const EVP_CIPHER *enc = EVP_des_ede3_cbc();
187     OPTION_CHOICE o;
188
189     prog = opt_init(argc, argv, pkcs12_options);
190     while ((o = opt_next()) != OPT_EOF) {
191         switch (o) {
192         case OPT_EOF:
193         case OPT_ERR:
194  opthelp:
195             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
196             goto end;
197         case OPT_HELP:
198             opt_help(pkcs12_options);
199             ret = 0;
200             goto end;
201         case OPT_NOKEYS:
202             options |= NOKEYS;
203             break;
204         case OPT_KEYEX:
205             keytype = KEY_EX;
206             break;
207         case OPT_KEYSIG:
208             keytype = KEY_SIG;
209             break;
210         case OPT_NOCERTS:
211             options |= NOCERTS;
212             break;
213         case OPT_CLCERTS:
214             options |= CLCERTS;
215             break;
216         case OPT_CACERTS:
217             options |= CACERTS;
218             break;
219         case OPT_NOOUT:
220             options |= (NOKEYS | NOCERTS);
221             break;
222         case OPT_INFO:
223             options |= INFO;
224             break;
225         case OPT_CHAIN:
226             chain = 1;
227             break;
228         case OPT_TWOPASS:
229             twopass = 1;
230             break;
231         case OPT_NOMACVER:
232             macver = 0;
233             break;
234         case OPT_DESCERT:
235             cert_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
236             break;
237         case OPT_EXPORT:
238             export_cert = 1;
239             break;
240         case OPT_CIPHER:
241             if (!opt_cipher(opt_unknown(), &enc))
242                 goto opthelp;
243             break;
244         case OPT_NOITER:
245             iter = 1;
246             break;
247         case OPT_MACITER:
248             maciter = PKCS12_DEFAULT_ITER;
249             break;
250         case OPT_NOMACITER:
251             maciter = 1;
252             break;
253         case OPT_NOMAC:
254             maciter = -1;
255             break;
256         case OPT_MACALG:
257             macalg = opt_arg();
258             break;
259         case OPT_NODES:
260             enc = NULL;
261             break;
262         case OPT_CERTPBE:
263             if (!set_pbe(&cert_pbe, opt_arg()))
264                 goto opthelp;
265             break;
266         case OPT_KEYPBE:
267             if (!set_pbe(&key_pbe, opt_arg()))
268                 goto opthelp;
269             break;
270         case OPT_RAND:
271             inrand = opt_arg();
272             break;
273         case OPT_INKEY:
274             keyname = opt_arg();
275             break;
276         case OPT_CERTFILE:
277             certfile = opt_arg();
278             break;
279         case OPT_NAME:
280             name = opt_arg();
281             break;
282         case OPT_LMK:
283             add_lmk = 1;
284             break;
285         case OPT_CSP:
286             csp_name = opt_arg();
287             break;
288         case OPT_CANAME:
289             if (canames == NULL
290                 && (canames = sk_OPENSSL_STRING_new_null()) == NULL)
291                 goto end;
292             sk_OPENSSL_STRING_push(canames, opt_arg());
293             break;
294         case OPT_IN:
295             infile = opt_arg();
296             break;
297         case OPT_OUT:
298             outfile = opt_arg();
299             break;
300         case OPT_PASSIN:
301             passinarg = opt_arg();
302             break;
303         case OPT_PASSOUT:
304             passoutarg = opt_arg();
305             break;
306         case OPT_PASSWORD:
307             passarg = opt_arg();
308             break;
309         case OPT_CAPATH:
310             CApath = opt_arg();
311             break;
312         case OPT_CAFILE:
313             CAfile = opt_arg();
314             break;
315         case OPT_NOCAPATH:
316             noCApath = 1;
317             break;
318         case OPT_NOCAFILE:
319             noCAfile = 1;
320             break;
321         case OPT_ENGINE:
322             e = setup_engine(opt_arg(), 0);
323             break;
324         }
325     }
326     argc = opt_num_rest();
327     argv = opt_rest();
328     private = 1;
329
330     if (passarg) {
331         if (export_cert)
332             passoutarg = passarg;
333         else
334             passinarg = passarg;
335     }
336
337     if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
338         BIO_printf(bio_err, "Error getting passwords\n");
339         goto end;
340     }
341
342     if (!cpass) {
343         if (export_cert)
344             cpass = passout;
345         else
346             cpass = passin;
347     }
348
349     if (cpass) {
350         mpass = cpass;
351         noprompt = 1;
352     } else {
353         cpass = pass;
354         mpass = macpass;
355     }
356
357     if (!app_load_modules(NULL))
358         goto end;
359
360     if (export_cert || inrand) {
361         app_RAND_load_file(NULL, (inrand != NULL));
362         if (inrand != NULL)
363             BIO_printf(bio_err, "%ld semi-random bytes loaded\n",
364                        app_RAND_load_files(inrand));
365     }
366
367     if (twopass) {
368         if (EVP_read_pw_string
369             (macpass, sizeof macpass, "Enter MAC Password:", export_cert)) {
370             BIO_printf(bio_err, "Can't read Password\n");
371             goto end;
372         }
373     }
374
375     if (export_cert) {
376         EVP_PKEY *key = NULL;
377         X509 *ucert = NULL, *x = NULL;
378         STACK_OF(X509) *certs = NULL;
379         const EVP_MD *macmd = NULL;
380         unsigned char *catmp = NULL;
381         int i;
382
383         if ((options & (NOCERTS | NOKEYS)) == (NOCERTS | NOKEYS)) {
384             BIO_printf(bio_err, "Nothing to do!\n");
385             goto export_end;
386         }
387
388         if (options & NOCERTS)
389             chain = 0;
390
391         if (!(options & NOKEYS)) {
392             key = load_key(keyname ? keyname : infile,
393                            FORMAT_PEM, 1, passin, e, "private key");
394             if (!key)
395                 goto export_end;
396         }
397
398         /* Load in all certs in input file */
399         if (!(options & NOCERTS)) {
400             certs = load_certs(infile, FORMAT_PEM, NULL, e,
401                                "certificates");
402             if (!certs)
403                 goto export_end;
404
405             if (key) {
406                 /* Look for matching private key */
407                 for (i = 0; i < sk_X509_num(certs); i++) {
408                     x = sk_X509_value(certs, i);
409                     if (X509_check_private_key(x, key)) {
410                         ucert = x;
411                         /* Zero keyid and alias */
412                         X509_keyid_set1(ucert, NULL, 0);
413                         X509_alias_set1(ucert, NULL, 0);
414                         /* Remove from list */
415                         (void)sk_X509_delete(certs, i);
416                         break;
417                     }
418                 }
419                 if (!ucert) {
420                     BIO_printf(bio_err,
421                                "No certificate matches private key\n");
422                     goto export_end;
423                 }
424             }
425
426         }
427
428         /* Add any more certificates asked for */
429         if (certfile) {
430             STACK_OF(X509) *morecerts = NULL;
431             if ((morecerts = load_certs(certfile, FORMAT_PEM, NULL, e,
432                                         "certificates from certfile")) == NULL)
433                 goto export_end;
434             while (sk_X509_num(morecerts) > 0)
435                 sk_X509_push(certs, sk_X509_shift(morecerts));
436             sk_X509_free(morecerts);
437         }
438
439         /* If chaining get chain from user cert */
440         if (chain) {
441             int vret;
442             STACK_OF(X509) *chain2;
443             X509_STORE *store;
444             if ((store = setup_verify(CAfile, CApath, noCAfile, noCApath))
445                     == NULL)
446                 goto export_end;
447
448             vret = get_cert_chain(ucert, store, &chain2);
449             X509_STORE_free(store);
450
451             if (!vret) {
452                 /* Exclude verified certificate */
453                 for (i = 1; i < sk_X509_num(chain2); i++)
454                     sk_X509_push(certs, sk_X509_value(chain2, i));
455                 /* Free first certificate */
456                 X509_free(sk_X509_value(chain2, 0));
457                 sk_X509_free(chain2);
458             } else {
459                 if (vret >= 0)
460                     BIO_printf(bio_err, "Error %s getting chain.\n",
461                                X509_verify_cert_error_string(vret));
462                 else
463                     ERR_print_errors(bio_err);
464                 goto export_end;
465             }
466         }
467
468         /* Add any CA names */
469
470         for (i = 0; i < sk_OPENSSL_STRING_num(canames); i++) {
471             catmp = (unsigned char *)sk_OPENSSL_STRING_value(canames, i);
472             X509_alias_set1(sk_X509_value(certs, i), catmp, -1);
473         }
474
475         if (csp_name && key)
476             EVP_PKEY_add1_attr_by_NID(key, NID_ms_csp_name,
477                                       MBSTRING_ASC, (unsigned char *)csp_name,
478                                       -1);
479
480         if (add_lmk && key)
481             EVP_PKEY_add1_attr_by_NID(key, NID_LocalKeySet, 0, NULL, -1);
482
483         if (!noprompt &&
484             EVP_read_pw_string(pass, sizeof pass, "Enter Export Password:",
485                                1)) {
486             BIO_printf(bio_err, "Can't read Password\n");
487             goto export_end;
488         }
489         if (!twopass)
490             BUF_strlcpy(macpass, pass, sizeof macpass);
491
492         p12 = PKCS12_create(cpass, name, key, ucert, certs,
493                             key_pbe, cert_pbe, iter, -1, keytype);
494
495         if (!p12) {
496             ERR_print_errors(bio_err);
497             goto export_end;
498         }
499
500         if (macalg) {
501             if (!opt_md(macalg, &macmd))
502                 goto opthelp;
503         }
504
505         if (maciter != -1)
506             PKCS12_set_mac(p12, mpass, -1, NULL, 0, maciter, macmd);
507
508         assert(private);
509
510         out = bio_open_owner(outfile, FORMAT_PKCS12, private);
511         if (out == NULL)
512             goto end;
513
514         i2d_PKCS12_bio(out, p12);
515
516         ret = 0;
517
518  export_end:
519
520         EVP_PKEY_free(key);
521         sk_X509_pop_free(certs, X509_free);
522         X509_free(ucert);
523
524         goto end;
525
526     }
527
528     in = bio_open_default(infile, 'r', FORMAT_PKCS12);
529     if (in == NULL)
530         goto end;
531     out = bio_open_owner(outfile, FORMAT_PEM, private);
532     if (out == NULL)
533         goto end;
534
535     if ((p12 = d2i_PKCS12_bio(in, NULL)) == NULL) {
536         ERR_print_errors(bio_err);
537         goto end;
538     }
539
540     if (!noprompt
541         && EVP_read_pw_string(pass, sizeof pass, "Enter Import Password:",
542                               0)) {
543         BIO_printf(bio_err, "Can't read Password\n");
544         goto end;
545     }
546
547     if (!twopass)
548         BUF_strlcpy(macpass, pass, sizeof macpass);
549
550     if ((options & INFO) && p12->mac)
551         BIO_printf(bio_err, "MAC Iteration %ld\n",
552                    p12->mac->iter ? ASN1_INTEGER_get(p12->mac->iter) : 1);
553     if (macver) {
554         /* If we enter empty password try no password first */
555         if (!mpass[0] && PKCS12_verify_mac(p12, NULL, 0)) {
556             /* If mac and crypto pass the same set it to NULL too */
557             if (!twopass)
558                 cpass = NULL;
559         } else if (!PKCS12_verify_mac(p12, mpass, -1)) {
560             BIO_printf(bio_err, "Mac verify error: invalid password?\n");
561             ERR_print_errors(bio_err);
562             goto end;
563         }
564     }
565
566     assert(private);
567     if (!dump_certs_keys_p12(out, p12, cpass, -1, options, passout, enc)) {
568         BIO_printf(bio_err, "Error outputting keys and certificates\n");
569         ERR_print_errors(bio_err);
570         goto end;
571     }
572     ret = 0;
573  end:
574     PKCS12_free(p12);
575     if (export_cert || inrand)
576         app_RAND_write_file(NULL);
577     BIO_free(in);
578     BIO_free_all(out);
579     sk_OPENSSL_STRING_free(canames);
580     OPENSSL_free(passin);
581     OPENSSL_free(passout);
582     return (ret);
583 }
584
585 int dump_certs_keys_p12(BIO *out, PKCS12 *p12, char *pass,
586                         int passlen, int options, char *pempass,
587                         const EVP_CIPHER *enc)
588 {
589     STACK_OF(PKCS7) *asafes = NULL;
590     STACK_OF(PKCS12_SAFEBAG) *bags;
591     int i, bagnid;
592     int ret = 0;
593     PKCS7 *p7;
594
595     if ((asafes = PKCS12_unpack_authsafes(p12)) == NULL)
596         return 0;
597     for (i = 0; i < sk_PKCS7_num(asafes); i++) {
598         p7 = sk_PKCS7_value(asafes, i);
599         bagnid = OBJ_obj2nid(p7->type);
600         if (bagnid == NID_pkcs7_data) {
601             bags = PKCS12_unpack_p7data(p7);
602             if (options & INFO)
603                 BIO_printf(bio_err, "PKCS7 Data\n");
604         } else if (bagnid == NID_pkcs7_encrypted) {
605             if (options & INFO) {
606                 BIO_printf(bio_err, "PKCS7 Encrypted data: ");
607                 alg_print(p7->d.encrypted->enc_data->algorithm);
608             }
609             bags = PKCS12_unpack_p7encdata(p7, pass, passlen);
610         } else
611             continue;
612         if (!bags)
613             goto err;
614         if (!dump_certs_pkeys_bags(out, bags, pass, passlen,
615                                    options, pempass, enc)) {
616             sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free);
617             goto err;
618         }
619         sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free);
620         bags = NULL;
621     }
622     ret = 1;
623
624  err:
625     sk_PKCS7_pop_free(asafes, PKCS7_free);
626     return ret;
627 }
628
629 int dump_certs_pkeys_bags(BIO *out, STACK_OF(PKCS12_SAFEBAG) *bags,
630                           char *pass, int passlen, int options, char *pempass,
631                           const EVP_CIPHER *enc)
632 {
633     int i;
634     for (i = 0; i < sk_PKCS12_SAFEBAG_num(bags); i++) {
635         if (!dump_certs_pkeys_bag(out,
636                                   sk_PKCS12_SAFEBAG_value(bags, i),
637                                   pass, passlen, options, pempass, enc))
638             return 0;
639     }
640     return 1;
641 }
642
643 int dump_certs_pkeys_bag(BIO *out, PKCS12_SAFEBAG *bag, char *pass,
644                          int passlen, int options, char *pempass,
645                          const EVP_CIPHER *enc)
646 {
647     EVP_PKEY *pkey;
648     PKCS8_PRIV_KEY_INFO *p8;
649     X509 *x509;
650
651     switch (M_PKCS12_bag_type(bag)) {
652     case NID_keyBag:
653         if (options & INFO)
654             BIO_printf(bio_err, "Key bag\n");
655         if (options & NOKEYS)
656             return 1;
657         print_attribs(out, bag->attrib, "Bag Attributes");
658         p8 = bag->value.keybag;
659         if ((pkey = EVP_PKCS82PKEY(p8)) == NULL)
660             return 0;
661         print_attribs(out, p8->attributes, "Key Attributes");
662         PEM_write_bio_PrivateKey(out, pkey, enc, NULL, 0, NULL, pempass);
663         EVP_PKEY_free(pkey);
664         break;
665
666     case NID_pkcs8ShroudedKeyBag:
667         if (options & INFO) {
668             BIO_printf(bio_err, "Shrouded Keybag: ");
669             alg_print(bag->value.shkeybag->algor);
670         }
671         if (options & NOKEYS)
672             return 1;
673         print_attribs(out, bag->attrib, "Bag Attributes");
674         if ((p8 = PKCS12_decrypt_skey(bag, pass, passlen)) == NULL)
675             return 0;
676         if ((pkey = EVP_PKCS82PKEY(p8)) == NULL) {
677             PKCS8_PRIV_KEY_INFO_free(p8);
678             return 0;
679         }
680         print_attribs(out, p8->attributes, "Key Attributes");
681         PKCS8_PRIV_KEY_INFO_free(p8);
682         PEM_write_bio_PrivateKey(out, pkey, enc, NULL, 0, NULL, pempass);
683         EVP_PKEY_free(pkey);
684         break;
685
686     case NID_certBag:
687         if (options & INFO)
688             BIO_printf(bio_err, "Certificate bag\n");
689         if (options & NOCERTS)
690             return 1;
691         if (PKCS12_get_attr(bag, NID_localKeyID)) {
692             if (options & CACERTS)
693                 return 1;
694         } else if (options & CLCERTS)
695             return 1;
696         print_attribs(out, bag->attrib, "Bag Attributes");
697         if (M_PKCS12_cert_bag_type(bag) != NID_x509Certificate)
698             return 1;
699         if ((x509 = PKCS12_certbag2x509(bag)) == NULL)
700             return 0;
701         dump_cert_text(out, x509);
702         PEM_write_bio_X509(out, x509);
703         X509_free(x509);
704         break;
705
706     case NID_safeContentsBag:
707         if (options & INFO)
708             BIO_printf(bio_err, "Safe Contents bag\n");
709         print_attribs(out, bag->attrib, "Bag Attributes");
710         return dump_certs_pkeys_bags(out, bag->value.safes, pass,
711                                      passlen, options, pempass, enc);
712
713     default:
714         BIO_printf(bio_err, "Warning unsupported bag type: ");
715         i2a_ASN1_OBJECT(bio_err, bag->type);
716         BIO_printf(bio_err, "\n");
717         return 1;
718     }
719     return 1;
720 }
721
722 /* Given a single certificate return a verified chain or NULL if error */
723
724 /* Hope this is OK .... */
725
726 int get_cert_chain(X509 *cert, X509_STORE *store, STACK_OF(X509) **chain)
727 {
728     X509_STORE_CTX store_ctx;
729     STACK_OF(X509) *chn;
730     int i = 0;
731
732     /*
733      * FIXME: Should really check the return status of X509_STORE_CTX_init
734      * for an error, but how that fits into the return value of this function
735      * is less obvious.
736      */
737     X509_STORE_CTX_init(&store_ctx, store, cert, NULL);
738     if (X509_verify_cert(&store_ctx) <= 0) {
739         i = X509_STORE_CTX_get_error(&store_ctx);
740         if (i == 0)
741             /*
742              * avoid returning 0 if X509_verify_cert() did not set an
743              * appropriate error value in the context
744              */
745             i = -1;
746         chn = NULL;
747         goto err;
748     } else
749         chn = X509_STORE_CTX_get1_chain(&store_ctx);
750  err:
751     X509_STORE_CTX_cleanup(&store_ctx);
752     *chain = chn;
753
754     return i;
755 }
756
757 static int alg_print(X509_ALGOR *alg)
758 {
759     PBEPARAM *pbe;
760     const unsigned char *p = alg->parameter->value.sequence->data;
761
762     pbe = d2i_PBEPARAM(NULL, &p, alg->parameter->value.sequence->length);
763     if (!pbe)
764         return 1;
765     BIO_printf(bio_err, "%s, Iteration %ld\n",
766                OBJ_nid2ln(OBJ_obj2nid(alg->algorithm)),
767                ASN1_INTEGER_get(pbe->iter));
768     PBEPARAM_free(pbe);
769     return 1;
770 }
771
772 /* Load all certificates from a given file */
773
774 int cert_load(BIO *in, STACK_OF(X509) *sk)
775 {
776     int ret;
777     X509 *cert;
778     ret = 0;
779     while ((cert = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
780         ret = 1;
781         sk_X509_push(sk, cert);
782     }
783     if (ret)
784         ERR_clear_error();
785     return ret;
786 }
787
788 /* Generalised attribute print: handle PKCS#8 and bag attributes */
789
790 int print_attribs(BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst,
791                   const char *name)
792 {
793     X509_ATTRIBUTE *attr;
794     ASN1_TYPE *av;
795     char *value;
796     int i, attr_nid;
797     if (!attrlst) {
798         BIO_printf(out, "%s: <No Attributes>\n", name);
799         return 1;
800     }
801     if (!sk_X509_ATTRIBUTE_num(attrlst)) {
802         BIO_printf(out, "%s: <Empty Attributes>\n", name);
803         return 1;
804     }
805     BIO_printf(out, "%s\n", name);
806     for (i = 0; i < sk_X509_ATTRIBUTE_num(attrlst); i++) {
807         ASN1_OBJECT *attr_obj;
808         attr = sk_X509_ATTRIBUTE_value(attrlst, i);
809         attr_obj = X509_ATTRIBUTE_get0_object(attr);
810         attr_nid = OBJ_obj2nid(attr_obj);
811         BIO_printf(out, "    ");
812         if (attr_nid == NID_undef) {
813             i2a_ASN1_OBJECT(out, attr_obj);
814             BIO_printf(out, ": ");
815         } else
816             BIO_printf(out, "%s: ", OBJ_nid2ln(attr_nid));
817
818         if (X509_ATTRIBUTE_count(attr)) {
819             av = X509_ATTRIBUTE_get0_type(attr, 0);
820             switch (av->type) {
821             case V_ASN1_BMPSTRING:
822                 value = OPENSSL_uni2asc(av->value.bmpstring->data,
823                                         av->value.bmpstring->length);
824                 BIO_printf(out, "%s\n", value);
825                 OPENSSL_free(value);
826                 break;
827
828             case V_ASN1_OCTET_STRING:
829                 hex_prin(out, av->value.octet_string->data,
830                          av->value.octet_string->length);
831                 BIO_printf(out, "\n");
832                 break;
833
834             case V_ASN1_BIT_STRING:
835                 hex_prin(out, av->value.bit_string->data,
836                          av->value.bit_string->length);
837                 BIO_printf(out, "\n");
838                 break;
839
840             default:
841                 BIO_printf(out, "<Unsupported tag %d>\n", av->type);
842                 break;
843             }
844         } else
845             BIO_printf(out, "<No Values>\n");
846     }
847     return 1;
848 }
849
850 void hex_prin(BIO *out, unsigned char *buf, int len)
851 {
852     int i;
853     for (i = 0; i < len; i++)
854         BIO_printf(out, "%02X ", buf[i]);
855 }
856
857 static int set_pbe(int *ppbe, const char *str)
858 {
859     if (!str)
860         return 0;
861     if (strcmp(str, "NONE") == 0) {
862         *ppbe = -1;
863         return 1;
864     }
865     *ppbe = OBJ_txt2nid(str);
866     if (*ppbe == NID_undef) {
867         BIO_printf(bio_err, "Unknown PBE algorithm %s\n", str);
868         return 0;
869     }
870     return 1;
871 }
872
873 #endif