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