HTTP client: make server/proxy and port params more consistent; minor other improvements
[openssl.git] / apps / pkcs12.c
1 /*
2  * Copyright 1999-2018 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <openssl/opensslconf.h>
11 #if defined(OPENSSL_NO_DES)
12 NON_EMPTY_TRANSLATION_UNIT
13 #else
14
15 # include <stdio.h>
16 # include <stdlib.h>
17 # include <string.h>
18 # include "apps.h"
19 # include "progs.h"
20 # include <openssl/crypto.h>
21 # include <openssl/err.h>
22 # include <openssl/pem.h>
23 # include <openssl/pkcs12.h>
24
25 # define NOKEYS          0x1
26 # define NOCERTS         0x2
27 # define INFO            0x4
28 # define CLCERTS         0x8
29 # define CACERTS         0x10
30
31 #define PASSWD_BUF_SIZE 2048
32
33 static int get_cert_chain(X509 *cert, X509_STORE *store,
34                           STACK_OF(X509) **chain);
35 int dump_certs_keys_p12(BIO *out, const PKCS12 *p12,
36                         const char *pass, int passlen, int options,
37                         char *pempass, const EVP_CIPHER *enc);
38 int dump_certs_pkeys_bags(BIO *out, const STACK_OF(PKCS12_SAFEBAG) *bags,
39                           const char *pass, int passlen, int options,
40                           char *pempass, const EVP_CIPHER *enc);
41 int dump_certs_pkeys_bag(BIO *out, const PKCS12_SAFEBAG *bags,
42                          const char *pass, int passlen,
43                          int options, char *pempass, const EVP_CIPHER *enc);
44 void print_attribute(BIO *out, const ASN1_TYPE *av);
45 int print_attribs(BIO *out, const STACK_OF(X509_ATTRIBUTE) *attrlst,
46                   const char *name);
47 void hex_prin(BIO *out, unsigned char *buf, int len);
48 static int alg_print(const X509_ALGOR *alg);
49 int cert_load(BIO *in, STACK_OF(X509) *sk);
50 static int set_pbe(int *ppbe, const char *str);
51
52 typedef enum OPTION_choice {
53     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
54     OPT_CIPHER, OPT_NOKEYS, OPT_KEYEX, OPT_KEYSIG, OPT_NOCERTS, OPT_CLCERTS,
55     OPT_CACERTS, OPT_NOOUT, OPT_INFO, OPT_CHAIN, OPT_TWOPASS, OPT_NOMACVER,
56     OPT_DESCERT, OPT_EXPORT, OPT_ITER, OPT_NOITER, OPT_MACITER, OPT_NOMACITER,
57     OPT_NOMAC, OPT_LMK, OPT_NODES, OPT_MACALG, OPT_CERTPBE, OPT_KEYPBE,
58     OPT_INKEY, OPT_CERTFILE, OPT_NAME, OPT_CSP, OPT_CANAME,
59     OPT_IN, OPT_OUT, OPT_PASSIN, OPT_PASSOUT, OPT_PASSWORD, OPT_CAPATH,
60     OPT_CAFILE, OPT_CASTORE, OPT_NOCAPATH, OPT_NOCAFILE, OPT_NOCASTORE, OPT_ENGINE,
61     OPT_R_ENUM, OPT_PROV_ENUM
62 } OPTION_CHOICE;
63
64 const OPTIONS pkcs12_options[] = {
65     OPT_SECTION("General"),
66     {"help", OPT_HELP, '-', "Display this summary"},
67 # ifndef OPENSSL_NO_ENGINE
68     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
69 # endif
70
71     OPT_SECTION("CA"),
72     {"CApath", OPT_CAPATH, '/', "PEM-format directory of CA's"},
73     {"CAfile", OPT_CAFILE, '<', "PEM-format file of CA's"},
74     {"CAstore", OPT_CASTORE, ':', "URI to store of CA's"},
75     {"no-CAfile", OPT_NOCAFILE, '-',
76      "Do not load the default certificates file"},
77     {"no-CApath", OPT_NOCAPATH, '-',
78      "Do not load certificates from the default certificates directory"},
79     {"no-CAstore", OPT_NOCASTORE, '-',
80      "Do not load certificates from the default certificates store"},
81
82     OPT_SECTION("Input"),
83     {"inkey", OPT_INKEY, 's', "Private key if not infile"},
84     {"certfile", OPT_CERTFILE, '<', "Load certs from file"},
85     {"name", OPT_NAME, 's', "Use name as friendly name"},
86     {"CSP", OPT_CSP, 's', "Microsoft CSP name"},
87     {"caname", OPT_CANAME, 's',
88      "Use name as CA friendly name (can be repeated)"},
89     {"in", OPT_IN, '<', "Input filename"},
90     {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
91
92     OPT_SECTION("Output"),
93     {"export", OPT_EXPORT, '-', "Output PKCS12 file"},
94     {"LMK", OPT_LMK, '-',
95      "Add local machine keyset attribute to private key"},
96     {"macalg", OPT_MACALG, 's',
97      "Digest algorithm used in MAC (default SHA1)"},
98     {"keypbe", OPT_KEYPBE, 's', "Private key PBE algorithm (default 3DES)"},
99     {"out", OPT_OUT, '>', "Output filename"},
100     {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"},
101     {"password", OPT_PASSWORD, 's', "Set import/export password source"},
102     {"nocerts", OPT_NOCERTS, '-', "Don't output certificates"},
103     {"clcerts", OPT_CLCERTS, '-', "Only output client certificates"},
104     {"cacerts", OPT_CACERTS, '-', "Only output CA certificates"},
105     {"noout", OPT_NOOUT, '-', "Don't output anything, just verify"},
106     {"chain", OPT_CHAIN, '-', "Add certificate chain"},
107     {"twopass", OPT_TWOPASS, '-', "Separate MAC, encryption passwords"},
108     {"nomacver", OPT_NOMACVER, '-', "Don't verify MAC"},
109     {"info", OPT_INFO, '-', "Print info about PKCS#12 structure"},
110     {"nokeys", OPT_NOKEYS, '-', "Don't output private keys"},
111     {"keyex", OPT_KEYEX, '-', "Set MS key exchange type"},
112     {"keysig", OPT_KEYSIG, '-', "Set MS key signature type"},
113
114     OPT_SECTION("Encryption"),
115 # ifndef OPENSSL_NO_RC2
116     {"descert", OPT_DESCERT, '-',
117      "Encrypt output with 3DES (default RC2-40)"},
118     {"certpbe", OPT_CERTPBE, 's',
119      "Certificate PBE algorithm (default RC2-40)"},
120 # else
121     {"descert", OPT_DESCERT, '-', "Encrypt output with 3DES (the default)"},
122     {"certpbe", OPT_CERTPBE, 's', "Certificate PBE algorithm (default 3DES)"},
123 # endif
124     {"iter", OPT_ITER, 'p', "Specify the iteration count for encryption key and MAC"},
125     {"noiter", OPT_NOITER, '-', "Don't use encryption key iteration"},
126     {"maciter", OPT_MACITER, '-', "Unused, kept for backwards compatibility"},
127     {"nomaciter", OPT_NOMACITER, '-', "Don't use MAC iteration"},
128     {"nomac", OPT_NOMAC, '-', "Don't generate MAC"},
129     {"nodes", OPT_NODES, '-', "Don't encrypt private keys"},
130     {"", OPT_CIPHER, '-', "Any supported cipher"},
131
132     OPT_R_OPTIONS,
133     OPT_PROV_OPTIONS,
134     {NULL}
135 };
136
137 int pkcs12_main(int argc, char **argv)
138 {
139     char *infile = NULL, *outfile = NULL, *keyname = NULL, *certfile = NULL;
140     char *name = NULL, *csp_name = NULL;
141     char pass[PASSWD_BUF_SIZE] = "", macpass[PASSWD_BUF_SIZE] = "";
142     int export_cert = 0, options = 0, chain = 0, twopass = 0, keytype = 0;
143     int iter = PKCS12_DEFAULT_ITER, maciter = PKCS12_DEFAULT_ITER;
144 # ifndef OPENSSL_NO_RC2
145     int cert_pbe = NID_pbe_WithSHA1And40BitRC2_CBC;
146 # else
147     int cert_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
148 # endif
149     int key_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
150     int ret = 1, macver = 1, add_lmk = 0, private = 0;
151     int noprompt = 0;
152     char *passinarg = NULL, *passoutarg = NULL, *passarg = NULL;
153     char *passin = NULL, *passout = NULL, *macalg = NULL;
154     char *cpass = NULL, *mpass = NULL, *badpass = NULL;
155     const char *CApath = NULL, *CAfile = NULL, *CAstore = NULL, *prog;
156     int noCApath = 0, noCAfile = 0, noCAstore = 0;
157     ENGINE *e = NULL;
158     BIO *in = NULL, *out = NULL;
159     PKCS12 *p12 = NULL;
160     STACK_OF(OPENSSL_STRING) *canames = NULL;
161     const EVP_CIPHER *enc = EVP_des_ede3_cbc();
162     OPTION_CHOICE o;
163
164     prog = opt_init(argc, argv, pkcs12_options);
165     while ((o = opt_next()) != OPT_EOF) {
166         switch (o) {
167         case OPT_EOF:
168         case OPT_ERR:
169  opthelp:
170             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
171             goto end;
172         case OPT_HELP:
173             opt_help(pkcs12_options);
174             ret = 0;
175             goto end;
176         case OPT_NOKEYS:
177             options |= NOKEYS;
178             break;
179         case OPT_KEYEX:
180             keytype = KEY_EX;
181             break;
182         case OPT_KEYSIG:
183             keytype = KEY_SIG;
184             break;
185         case OPT_NOCERTS:
186             options |= NOCERTS;
187             break;
188         case OPT_CLCERTS:
189             options |= CLCERTS;
190             break;
191         case OPT_CACERTS:
192             options |= CACERTS;
193             break;
194         case OPT_NOOUT:
195             options |= (NOKEYS | NOCERTS);
196             break;
197         case OPT_INFO:
198             options |= INFO;
199             break;
200         case OPT_CHAIN:
201             chain = 1;
202             break;
203         case OPT_TWOPASS:
204             twopass = 1;
205             break;
206         case OPT_NOMACVER:
207             macver = 0;
208             break;
209         case OPT_DESCERT:
210             cert_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
211             break;
212         case OPT_EXPORT:
213             export_cert = 1;
214             break;
215         case OPT_CIPHER:
216             if (!opt_cipher(opt_unknown(), &enc))
217                 goto opthelp;
218             break;
219         case OPT_ITER:
220             if (!opt_int(opt_arg(), &iter))
221                 goto opthelp;
222             maciter = iter;
223             break;
224         case OPT_NOITER:
225             iter = 1;
226             break;
227         case OPT_MACITER:
228             /* no-op */
229             break;
230         case OPT_NOMACITER:
231             maciter = 1;
232             break;
233         case OPT_NOMAC:
234             maciter = -1;
235             break;
236         case OPT_MACALG:
237             macalg = opt_arg();
238             break;
239         case OPT_NODES:
240             enc = NULL;
241             break;
242         case OPT_CERTPBE:
243             if (!set_pbe(&cert_pbe, opt_arg()))
244                 goto opthelp;
245             break;
246         case OPT_KEYPBE:
247             if (!set_pbe(&key_pbe, opt_arg()))
248                 goto opthelp;
249             break;
250         case OPT_R_CASES:
251             if (!opt_rand(o))
252                 goto end;
253             break;
254         case OPT_INKEY:
255             keyname = opt_arg();
256             break;
257         case OPT_CERTFILE:
258             certfile = opt_arg();
259             break;
260         case OPT_NAME:
261             name = opt_arg();
262             break;
263         case OPT_LMK:
264             add_lmk = 1;
265             break;
266         case OPT_CSP:
267             csp_name = opt_arg();
268             break;
269         case OPT_CANAME:
270             if (canames == NULL
271                 && (canames = sk_OPENSSL_STRING_new_null()) == NULL)
272                 goto end;
273             sk_OPENSSL_STRING_push(canames, opt_arg());
274             break;
275         case OPT_IN:
276             infile = opt_arg();
277             break;
278         case OPT_OUT:
279             outfile = opt_arg();
280             break;
281         case OPT_PASSIN:
282             passinarg = opt_arg();
283             break;
284         case OPT_PASSOUT:
285             passoutarg = opt_arg();
286             break;
287         case OPT_PASSWORD:
288             passarg = opt_arg();
289             break;
290         case OPT_CAPATH:
291             CApath = opt_arg();
292             break;
293         case OPT_CASTORE:
294             CAstore = opt_arg();
295             break;
296         case OPT_CAFILE:
297             CAfile = opt_arg();
298             break;
299         case OPT_NOCAPATH:
300             noCApath = 1;
301             break;
302         case OPT_NOCASTORE:
303             noCAstore = 1;
304             break;
305         case OPT_NOCAFILE:
306             noCAfile = 1;
307             break;
308         case OPT_ENGINE:
309             e = setup_engine(opt_arg(), 0);
310             break;
311         case OPT_PROV_CASES:
312             if (!opt_provider(o))
313                 goto end;
314             break;
315         }
316     }
317     argc = opt_num_rest();
318     if (argc != 0)
319         goto opthelp;
320
321     private = 1;
322
323     if (passarg != NULL) {
324         if (export_cert)
325             passoutarg = passarg;
326         else
327             passinarg = passarg;
328     }
329
330     if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
331         BIO_printf(bio_err, "Error getting passwords\n");
332         goto end;
333     }
334
335     if (cpass == NULL) {
336         if (export_cert)
337             cpass = passout;
338         else
339             cpass = passin;
340     }
341
342     if (cpass != NULL) {
343         mpass = cpass;
344         noprompt = 1;
345         if (twopass) {
346             if (export_cert)
347                 BIO_printf(bio_err, "Option -twopass cannot be used with -passout or -password\n");
348             else
349                 BIO_printf(bio_err, "Option -twopass cannot be used with -passin or -password\n");
350             goto end;
351         }
352     } else {
353         cpass = pass;
354         mpass = macpass;
355     }
356
357     if (twopass) {
358         /* To avoid bit rot */
359         if (1) {
360 #ifndef OPENSSL_NO_UI_CONSOLE
361             if (EVP_read_pw_string(
362                 macpass, sizeof(macpass), "Enter MAC Password:", export_cert)) {
363                 BIO_printf(bio_err, "Can't read Password\n");
364                 goto end;
365             }
366         } else {
367 #endif
368             BIO_printf(bio_err, "Unsupported option -twopass\n");
369             goto end;
370         }
371     }
372
373     if (export_cert) {
374         EVP_PKEY *key = NULL;
375         X509 *ucert = NULL, *x = NULL;
376         STACK_OF(X509) *certs = NULL;
377         const EVP_MD *macmd = NULL;
378         unsigned char *catmp = NULL;
379         int i;
380
381         if ((options & (NOCERTS | NOKEYS)) == (NOCERTS | NOKEYS)) {
382             BIO_printf(bio_err, "Nothing to do!\n");
383             goto export_end;
384         }
385
386         if (options & NOCERTS)
387             chain = 0;
388
389         if (!(options & NOKEYS)) {
390             key = load_key(keyname ? keyname : infile,
391                            FORMAT_PEM, 1, passin, e, "private key");
392             if (key == NULL)
393                 goto export_end;
394         }
395
396         /* Load in all certs in input file */
397         if (!(options & NOCERTS)) {
398             if (!load_certs(infile, &certs, FORMAT_PEM, NULL,
399                             "certificates"))
400                 goto export_end;
401
402             if (key != NULL) {
403                 /* Look for matching private key */
404                 for (i = 0; i < sk_X509_num(certs); i++) {
405                     x = sk_X509_value(certs, i);
406                     if (X509_check_private_key(x, key)) {
407                         ucert = x;
408                         /* Zero keyid and alias */
409                         X509_keyid_set1(ucert, NULL, 0);
410                         X509_alias_set1(ucert, NULL, 0);
411                         /* Remove from list */
412                         (void)sk_X509_delete(certs, i);
413                         break;
414                     }
415                 }
416                 if (ucert == NULL) {
417                     BIO_printf(bio_err,
418                                "No certificate matches private key\n");
419                     goto export_end;
420                 }
421             }
422
423         }
424
425         /* Add any more certificates asked for */
426         if (certfile != NULL) {
427             if (!load_certs(certfile, &certs, FORMAT_PEM, NULL,
428                             "certificates from certfile"))
429                 goto export_end;
430         }
431
432         /* If chaining get chain from user cert */
433         if (chain) {
434             int vret;
435             STACK_OF(X509) *chain2;
436             X509_STORE *store;
437             if ((store = setup_verify(CAfile, noCAfile, CApath, noCApath,
438                                       CAstore, noCAstore))
439                     == NULL)
440                 goto export_end;
441
442             vret = get_cert_chain(ucert, store, &chain2);
443             X509_STORE_free(store);
444
445             if (vret == X509_V_OK) {
446                 /* Exclude verified certificate */
447                 for (i = 1; i < sk_X509_num(chain2); i++)
448                     sk_X509_push(certs, sk_X509_value(chain2, i));
449                 /* Free first certificate */
450                 X509_free(sk_X509_value(chain2, 0));
451                 sk_X509_free(chain2);
452             } else {
453                 if (vret != X509_V_ERR_UNSPECIFIED)
454                     BIO_printf(bio_err, "Error %s getting chain.\n",
455                                X509_verify_cert_error_string(vret));
456                 else
457                     ERR_print_errors(bio_err);
458                 goto export_end;
459             }
460         }
461
462         /* Add any CA names */
463
464         for (i = 0; i < sk_OPENSSL_STRING_num(canames); i++) {
465             catmp = (unsigned char *)sk_OPENSSL_STRING_value(canames, i);
466             X509_alias_set1(sk_X509_value(certs, i), catmp, -1);
467         }
468
469         if (csp_name != NULL && key != NULL)
470             EVP_PKEY_add1_attr_by_NID(key, NID_ms_csp_name,
471                                       MBSTRING_ASC, (unsigned char *)csp_name,
472                                       -1);
473
474         if (add_lmk && key != NULL)
475             EVP_PKEY_add1_attr_by_NID(key, NID_LocalKeySet, 0, NULL, -1);
476
477         if (!noprompt) {
478             /* To avoid bit rot */
479             if (1) {
480 #ifndef OPENSSL_NO_UI_CONSOLE
481                 if (EVP_read_pw_string(pass, sizeof(pass),
482                                        "Enter Export Password:", 1)) {
483                     BIO_printf(bio_err, "Can't read Password\n");
484                     goto export_end;
485                 }
486             } else {
487 #endif
488                 BIO_printf(bio_err, "Password required\n");
489                 goto export_end;
490             }
491         }
492
493         if (!twopass)
494             OPENSSL_strlcpy(macpass, pass, sizeof(macpass));
495
496         p12 = PKCS12_create(cpass, name, key, ucert, certs,
497                             key_pbe, cert_pbe, iter, -1, keytype);
498
499         if (p12 == NULL) {
500             ERR_print_errors(bio_err);
501             goto export_end;
502         }
503
504         if (macalg) {
505             if (!opt_md(macalg, &macmd))
506                 goto opthelp;
507         }
508
509         if (maciter != -1)
510             PKCS12_set_mac(p12, mpass, -1, NULL, 0, maciter, macmd);
511
512         assert(private);
513
514         out = bio_open_owner(outfile, FORMAT_PKCS12, private);
515         if (out == NULL)
516             goto end;
517
518         i2d_PKCS12_bio(out, p12);
519
520         ret = 0;
521
522  export_end:
523
524         EVP_PKEY_free(key);
525         sk_X509_pop_free(certs, X509_free);
526         X509_free(ucert);
527
528         goto end;
529
530     }
531
532     in = bio_open_default(infile, 'r', FORMAT_PKCS12);
533     if (in == NULL)
534         goto end;
535     out = bio_open_owner(outfile, FORMAT_PEM, private);
536     if (out == NULL)
537         goto end;
538
539     if ((p12 = d2i_PKCS12_bio(in, NULL)) == NULL) {
540         ERR_print_errors(bio_err);
541         goto end;
542     }
543
544     if (!noprompt) {
545         if (1) {
546 #ifndef OPENSSL_NO_UI_CONSOLE
547             if (EVP_read_pw_string(pass, sizeof(pass), "Enter Import Password:",
548                                    0)) {
549                 BIO_printf(bio_err, "Can't read Password\n");
550                 goto end;
551             }
552         } else {
553 #endif
554             BIO_printf(bio_err, "Password required\n");
555             goto end;
556         }
557     }
558
559     if (!twopass)
560         OPENSSL_strlcpy(macpass, pass, sizeof(macpass));
561
562     if ((options & INFO) && PKCS12_mac_present(p12)) {
563         const ASN1_INTEGER *tmaciter;
564         const X509_ALGOR *macalgid;
565         const ASN1_OBJECT *macobj;
566         const ASN1_OCTET_STRING *tmac;
567         const ASN1_OCTET_STRING *tsalt;
568
569         PKCS12_get0_mac(&tmac, &macalgid, &tsalt, &tmaciter, p12);
570         /* current hash algorithms do not use parameters so extract just name,
571            in future alg_print() may be needed */
572         X509_ALGOR_get0(&macobj, NULL, NULL, macalgid);
573         BIO_puts(bio_err, "MAC: ");
574         i2a_ASN1_OBJECT(bio_err, macobj);
575         BIO_printf(bio_err, ", Iteration %ld\n",
576                    tmaciter != NULL ? ASN1_INTEGER_get(tmaciter) : 1L);
577         BIO_printf(bio_err, "MAC length: %ld, salt length: %ld\n",
578                    tmac != NULL ? ASN1_STRING_length(tmac) : 0L,
579                    tsalt != NULL ? ASN1_STRING_length(tsalt) : 0L);
580     }
581     if (macver) {
582         /* If we enter empty password try no password first */
583         if (!mpass[0] && PKCS12_verify_mac(p12, NULL, 0)) {
584             /* If mac and crypto pass the same set it to NULL too */
585             if (!twopass)
586                 cpass = NULL;
587         } else if (!PKCS12_verify_mac(p12, mpass, -1)) {
588             /*
589              * May be UTF8 from previous version of OpenSSL:
590              * convert to a UTF8 form which will translate
591              * to the same Unicode password.
592              */
593             unsigned char *utmp;
594             int utmplen;
595             utmp = OPENSSL_asc2uni(mpass, -1, NULL, &utmplen);
596             if (utmp == NULL)
597                 goto end;
598             badpass = OPENSSL_uni2utf8(utmp, utmplen);
599             OPENSSL_free(utmp);
600             if (!PKCS12_verify_mac(p12, badpass, -1)) {
601                 BIO_printf(bio_err, "Mac verify error: invalid password?\n");
602                 ERR_print_errors(bio_err);
603                 goto end;
604             } else {
605                 BIO_printf(bio_err, "Warning: using broken algorithm\n");
606                 if (!twopass)
607                     cpass = badpass;
608             }
609         }
610     }
611
612     assert(private);
613     if (!dump_certs_keys_p12(out, p12, cpass, -1, options, passout, enc)) {
614         BIO_printf(bio_err, "Error outputting keys and certificates\n");
615         ERR_print_errors(bio_err);
616         goto end;
617     }
618     ret = 0;
619  end:
620     PKCS12_free(p12);
621     release_engine(e);
622     BIO_free(in);
623     BIO_free_all(out);
624     sk_OPENSSL_STRING_free(canames);
625     OPENSSL_free(badpass);
626     OPENSSL_free(passin);
627     OPENSSL_free(passout);
628     return ret;
629 }
630
631 int dump_certs_keys_p12(BIO *out, const PKCS12 *p12, const char *pass,
632                         int passlen, int options, char *pempass,
633                         const EVP_CIPHER *enc)
634 {
635     STACK_OF(PKCS7) *asafes = NULL;
636     STACK_OF(PKCS12_SAFEBAG) *bags;
637     int i, bagnid;
638     int ret = 0;
639     PKCS7 *p7;
640
641     if ((asafes = PKCS12_unpack_authsafes(p12)) == NULL)
642         return 0;
643     for (i = 0; i < sk_PKCS7_num(asafes); i++) {
644         p7 = sk_PKCS7_value(asafes, i);
645         bagnid = OBJ_obj2nid(p7->type);
646         if (bagnid == NID_pkcs7_data) {
647             bags = PKCS12_unpack_p7data(p7);
648             if (options & INFO)
649                 BIO_printf(bio_err, "PKCS7 Data\n");
650         } else if (bagnid == NID_pkcs7_encrypted) {
651             if (options & INFO) {
652                 BIO_printf(bio_err, "PKCS7 Encrypted data: ");
653                 alg_print(p7->d.encrypted->enc_data->algorithm);
654             }
655             bags = PKCS12_unpack_p7encdata(p7, pass, passlen);
656         } else {
657             continue;
658         }
659         if (!bags)
660             goto err;
661         if (!dump_certs_pkeys_bags(out, bags, pass, passlen,
662                                    options, pempass, enc)) {
663             sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free);
664             goto err;
665         }
666         sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free);
667         bags = NULL;
668     }
669     ret = 1;
670
671  err:
672     sk_PKCS7_pop_free(asafes, PKCS7_free);
673     return ret;
674 }
675
676 int dump_certs_pkeys_bags(BIO *out, const STACK_OF(PKCS12_SAFEBAG) *bags,
677                           const char *pass, int passlen, int options,
678                           char *pempass, const EVP_CIPHER *enc)
679 {
680     int i;
681     for (i = 0; i < sk_PKCS12_SAFEBAG_num(bags); i++) {
682         if (!dump_certs_pkeys_bag(out,
683                                   sk_PKCS12_SAFEBAG_value(bags, i),
684                                   pass, passlen, options, pempass, enc))
685             return 0;
686     }
687     return 1;
688 }
689
690 int dump_certs_pkeys_bag(BIO *out, const PKCS12_SAFEBAG *bag,
691                          const char *pass, int passlen, int options,
692                          char *pempass, const EVP_CIPHER *enc)
693 {
694     EVP_PKEY *pkey;
695     PKCS8_PRIV_KEY_INFO *p8;
696     const PKCS8_PRIV_KEY_INFO *p8c;
697     X509 *x509;
698     const STACK_OF(X509_ATTRIBUTE) *attrs;
699     int ret = 0;
700
701     attrs = PKCS12_SAFEBAG_get0_attrs(bag);
702
703     switch (PKCS12_SAFEBAG_get_nid(bag)) {
704     case NID_keyBag:
705         if (options & INFO)
706             BIO_printf(bio_err, "Key bag\n");
707         if (options & NOKEYS)
708             return 1;
709         print_attribs(out, attrs, "Bag Attributes");
710         p8c = PKCS12_SAFEBAG_get0_p8inf(bag);
711         if ((pkey = EVP_PKCS82PKEY(p8c)) == NULL)
712             return 0;
713         print_attribs(out, PKCS8_pkey_get0_attrs(p8c), "Key Attributes");
714         ret = PEM_write_bio_PrivateKey(out, pkey, enc, NULL, 0, NULL, pempass);
715         EVP_PKEY_free(pkey);
716         break;
717
718     case NID_pkcs8ShroudedKeyBag:
719         if (options & INFO) {
720             const X509_SIG *tp8;
721             const X509_ALGOR *tp8alg;
722
723             BIO_printf(bio_err, "Shrouded Keybag: ");
724             tp8 = PKCS12_SAFEBAG_get0_pkcs8(bag);
725             X509_SIG_get0(tp8, &tp8alg, NULL);
726             alg_print(tp8alg);
727         }
728         if (options & NOKEYS)
729             return 1;
730         print_attribs(out, attrs, "Bag Attributes");
731         if ((p8 = PKCS12_decrypt_skey(bag, pass, passlen)) == NULL)
732             return 0;
733         if ((pkey = EVP_PKCS82PKEY(p8)) == NULL) {
734             PKCS8_PRIV_KEY_INFO_free(p8);
735             return 0;
736         }
737         print_attribs(out, PKCS8_pkey_get0_attrs(p8), "Key Attributes");
738         PKCS8_PRIV_KEY_INFO_free(p8);
739         ret = PEM_write_bio_PrivateKey(out, pkey, enc, NULL, 0, NULL, pempass);
740         EVP_PKEY_free(pkey);
741         break;
742
743     case NID_certBag:
744         if (options & INFO)
745             BIO_printf(bio_err, "Certificate bag\n");
746         if (options & NOCERTS)
747             return 1;
748         if (PKCS12_SAFEBAG_get0_attr(bag, NID_localKeyID)) {
749             if (options & CACERTS)
750                 return 1;
751         } else if (options & CLCERTS)
752             return 1;
753         print_attribs(out, attrs, "Bag Attributes");
754         if (PKCS12_SAFEBAG_get_bag_nid(bag) != NID_x509Certificate)
755             return 1;
756         if ((x509 = PKCS12_SAFEBAG_get1_cert(bag)) == NULL)
757             return 0;
758         dump_cert_text(out, x509);
759         ret = PEM_write_bio_X509(out, x509);
760         X509_free(x509);
761         break;
762
763     case NID_safeContentsBag:
764         if (options & INFO)
765             BIO_printf(bio_err, "Safe Contents bag\n");
766         print_attribs(out, attrs, "Bag Attributes");
767         return dump_certs_pkeys_bags(out, PKCS12_SAFEBAG_get0_safes(bag),
768                                      pass, passlen, options, pempass, enc);
769
770     default:
771         BIO_printf(bio_err, "Warning unsupported bag type: ");
772         i2a_ASN1_OBJECT(bio_err, PKCS12_SAFEBAG_get0_type(bag));
773         BIO_printf(bio_err, "\n");
774         return 1;
775     }
776     return ret;
777 }
778
779 /* Given a single certificate return a verified chain or NULL if error */
780
781 static int get_cert_chain(X509 *cert, X509_STORE *store,
782                           STACK_OF(X509) **chain)
783 {
784     X509_STORE_CTX *store_ctx = NULL;
785     STACK_OF(X509) *chn = NULL;
786     int i = 0;
787
788     store_ctx = X509_STORE_CTX_new();
789     if (store_ctx == NULL) {
790         i =  X509_V_ERR_UNSPECIFIED;
791         goto end;
792     }
793     if (!X509_STORE_CTX_init(store_ctx, store, cert, NULL)) {
794         i =  X509_V_ERR_UNSPECIFIED;
795         goto end;
796     }
797
798
799     if (X509_verify_cert(store_ctx) > 0)
800         chn = X509_STORE_CTX_get1_chain(store_ctx);
801     else if ((i = X509_STORE_CTX_get_error(store_ctx)) == 0)
802         i = X509_V_ERR_UNSPECIFIED;
803
804 end:
805     X509_STORE_CTX_free(store_ctx);
806     *chain = chn;
807     return i;
808 }
809
810 static int alg_print(const X509_ALGOR *alg)
811 {
812     int pbenid, aparamtype;
813     const ASN1_OBJECT *aoid;
814     const void *aparam;
815     PBEPARAM *pbe = NULL;
816
817     X509_ALGOR_get0(&aoid, &aparamtype, &aparam, alg);
818
819     pbenid = OBJ_obj2nid(aoid);
820
821     BIO_printf(bio_err, "%s", OBJ_nid2ln(pbenid));
822
823     /*
824      * If PBE algorithm is PBES2 decode algorithm parameters
825      * for additional details.
826      */
827     if (pbenid == NID_pbes2) {
828         PBE2PARAM *pbe2 = NULL;
829         int encnid;
830         if (aparamtype == V_ASN1_SEQUENCE)
831             pbe2 = ASN1_item_unpack(aparam, ASN1_ITEM_rptr(PBE2PARAM));
832         if (pbe2 == NULL) {
833             BIO_puts(bio_err, ", <unsupported parameters>");
834             goto done;
835         }
836         X509_ALGOR_get0(&aoid, &aparamtype, &aparam, pbe2->keyfunc);
837         pbenid = OBJ_obj2nid(aoid);
838         X509_ALGOR_get0(&aoid, NULL, NULL, pbe2->encryption);
839         encnid = OBJ_obj2nid(aoid);
840         BIO_printf(bio_err, ", %s, %s", OBJ_nid2ln(pbenid),
841                    OBJ_nid2sn(encnid));
842         /* If KDF is PBKDF2 decode parameters */
843         if (pbenid == NID_id_pbkdf2) {
844             PBKDF2PARAM *kdf = NULL;
845             int prfnid;
846             if (aparamtype == V_ASN1_SEQUENCE)
847                 kdf = ASN1_item_unpack(aparam, ASN1_ITEM_rptr(PBKDF2PARAM));
848             if (kdf == NULL) {
849                 BIO_puts(bio_err, ", <unsupported parameters>");
850                 goto done;
851             }
852
853             if (kdf->prf == NULL) {
854                 prfnid = NID_hmacWithSHA1;
855             } else {
856                 X509_ALGOR_get0(&aoid, NULL, NULL, kdf->prf);
857                 prfnid = OBJ_obj2nid(aoid);
858             }
859             BIO_printf(bio_err, ", Iteration %ld, PRF %s",
860                        ASN1_INTEGER_get(kdf->iter), OBJ_nid2sn(prfnid));
861             PBKDF2PARAM_free(kdf);
862 #ifndef OPENSSL_NO_SCRYPT
863         } else if (pbenid == NID_id_scrypt) {
864             SCRYPT_PARAMS *kdf = NULL;
865
866             if (aparamtype == V_ASN1_SEQUENCE)
867                 kdf = ASN1_item_unpack(aparam, ASN1_ITEM_rptr(SCRYPT_PARAMS));
868             if (kdf == NULL) {
869                 BIO_puts(bio_err, ", <unsupported parameters>");
870                 goto done;
871             }
872             BIO_printf(bio_err, ", Salt length: %d, Cost(N): %ld, "
873                        "Block size(r): %ld, Parallelism(p): %ld",
874                        ASN1_STRING_length(kdf->salt),
875                        ASN1_INTEGER_get(kdf->costParameter),
876                        ASN1_INTEGER_get(kdf->blockSize),
877                        ASN1_INTEGER_get(kdf->parallelizationParameter));
878             SCRYPT_PARAMS_free(kdf);
879 #endif
880         }
881         PBE2PARAM_free(pbe2);
882     } else {
883         if (aparamtype == V_ASN1_SEQUENCE)
884             pbe = ASN1_item_unpack(aparam, ASN1_ITEM_rptr(PBEPARAM));
885         if (pbe == NULL) {
886             BIO_puts(bio_err, ", <unsupported parameters>");
887             goto done;
888         }
889         BIO_printf(bio_err, ", Iteration %ld", ASN1_INTEGER_get(pbe->iter));
890         PBEPARAM_free(pbe);
891     }
892  done:
893     BIO_puts(bio_err, "\n");
894     return 1;
895 }
896
897 /* Load all certificates from a given file */
898
899 int cert_load(BIO *in, STACK_OF(X509) *sk)
900 {
901     int ret = 0;
902     X509 *cert;
903
904     while ((cert = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
905         ret = 1;
906         if (!sk_X509_push(sk, cert))
907             return 0;
908     }
909     if (ret)
910         ERR_clear_error();
911     return ret;
912 }
913
914 /* Generalised x509 attribute value print */
915
916 void print_attribute(BIO *out, const ASN1_TYPE *av)
917 {
918     char *value;
919
920     switch (av->type) {
921     case V_ASN1_BMPSTRING:
922         value = OPENSSL_uni2asc(av->value.bmpstring->data,
923                                 av->value.bmpstring->length);
924         BIO_printf(out, "%s\n", value);
925         OPENSSL_free(value);
926         break;
927
928     case V_ASN1_OCTET_STRING:
929         hex_prin(out, av->value.octet_string->data,
930                  av->value.octet_string->length);
931         BIO_printf(out, "\n");
932         break;
933
934     case V_ASN1_BIT_STRING:
935         hex_prin(out, av->value.bit_string->data,
936                  av->value.bit_string->length);
937         BIO_printf(out, "\n");
938         break;
939
940     default:
941         BIO_printf(out, "<Unsupported tag %d>\n", av->type);
942         break;
943     }
944 }
945
946 /* Generalised attribute print: handle PKCS#8 and bag attributes */
947
948 int print_attribs(BIO *out, const STACK_OF(X509_ATTRIBUTE) *attrlst,
949                   const char *name)
950 {
951     X509_ATTRIBUTE *attr;
952     ASN1_TYPE *av;
953     int i, j, attr_nid;
954     if (!attrlst) {
955         BIO_printf(out, "%s: <No Attributes>\n", name);
956         return 1;
957     }
958     if (!sk_X509_ATTRIBUTE_num(attrlst)) {
959         BIO_printf(out, "%s: <Empty Attributes>\n", name);
960         return 1;
961     }
962     BIO_printf(out, "%s\n", name);
963     for (i = 0; i < sk_X509_ATTRIBUTE_num(attrlst); i++) {
964         ASN1_OBJECT *attr_obj;
965         attr = sk_X509_ATTRIBUTE_value(attrlst, i);
966         attr_obj = X509_ATTRIBUTE_get0_object(attr);
967         attr_nid = OBJ_obj2nid(attr_obj);
968         BIO_printf(out, "    ");
969         if (attr_nid == NID_undef) {
970             i2a_ASN1_OBJECT(out, attr_obj);
971             BIO_printf(out, ": ");
972         } else {
973             BIO_printf(out, "%s: ", OBJ_nid2ln(attr_nid));
974         }
975
976         if (X509_ATTRIBUTE_count(attr)) {
977             for (j = 0; j < X509_ATTRIBUTE_count(attr); j++)
978             {
979                 av = X509_ATTRIBUTE_get0_type(attr, j);
980                 print_attribute(out, av);
981             }
982         } else {
983             BIO_printf(out, "<No Values>\n");
984         }
985     }
986     return 1;
987 }
988
989 void hex_prin(BIO *out, unsigned char *buf, int len)
990 {
991     int i;
992     for (i = 0; i < len; i++)
993         BIO_printf(out, "%02X ", buf[i]);
994 }
995
996 static int set_pbe(int *ppbe, const char *str)
997 {
998     if (!str)
999         return 0;
1000     if (strcmp(str, "NONE") == 0) {
1001         *ppbe = -1;
1002         return 1;
1003     }
1004     *ppbe = OBJ_txt2nid(str);
1005     if (*ppbe == NID_undef) {
1006         BIO_printf(bio_err, "Unknown PBE algorithm %s\n", str);
1007         return 0;
1008     }
1009     return 1;
1010 }
1011
1012 #endif