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