OSSL_STORE: Add reference docs for the built-in Windows store implementation
[openssl.git] / apps / dhparam.c
1 /*
2  * Copyright 1995-2020 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
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <time.h>
15 #include <string.h>
16 #include "apps.h"
17 #include "progs.h"
18 #include <openssl/bio.h>
19 #include <openssl/err.h>
20 #include <openssl/bn.h>
21 #include <openssl/dsa.h>
22 #include <openssl/dh.h>
23 #include <openssl/x509.h>
24 #include <openssl/pem.h>
25 #include <openssl/core_names.h>
26 #include <openssl/core_dispatch.h>
27 #include <openssl/param_build.h>
28 #include <openssl/encoder.h>
29 #include <openssl/decoder.h>
30
31 #define DEFBITS 2048
32
33 static EVP_PKEY *dsa_to_dh(EVP_PKEY *dh);
34 static int gendh_cb(EVP_PKEY_CTX *ctx);
35
36 typedef enum OPTION_choice {
37     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
38     OPT_INFORM, OPT_OUTFORM, OPT_IN, OPT_OUT,
39     OPT_ENGINE, OPT_CHECK, OPT_TEXT, OPT_NOOUT,
40     OPT_DSAPARAM, OPT_2, OPT_3, OPT_5,
41     OPT_R_ENUM, OPT_PROV_ENUM
42 } OPTION_CHOICE;
43
44 const OPTIONS dhparam_options[] = {
45     {OPT_HELP_STR, 1, '-', "Usage: %s [options] [numbits]\n"},
46
47     OPT_SECTION("General"),
48     {"help", OPT_HELP, '-', "Display this summary"},
49     {"check", OPT_CHECK, '-', "Check the DH parameters"},
50 #ifndef OPENSSL_NO_DSA
51     {"dsaparam", OPT_DSAPARAM, '-',
52      "Read or generate DSA parameters, convert to DH"},
53 #endif
54 #ifndef OPENSSL_NO_ENGINE
55     {"engine", OPT_ENGINE, 's', "Use engine e, possibly a hardware device"},
56 #endif
57
58     OPT_SECTION("Input"),
59     {"in", OPT_IN, '<', "Input file"},
60     {"inform", OPT_INFORM, 'F', "Input format, DER or PEM"},
61
62     OPT_SECTION("Output"),
63     {"out", OPT_OUT, '>', "Output file"},
64     {"outform", OPT_OUTFORM, 'F', "Output format, DER or PEM"},
65     {"text", OPT_TEXT, '-', "Print a text form of the DH parameters"},
66     {"noout", OPT_NOOUT, '-', "Don't output any DH parameters"},
67     {"2", OPT_2, '-', "Generate parameters using 2 as the generator value"},
68     {"3", OPT_3, '-', "Generate parameters using 3 as the generator value"},
69     {"5", OPT_5, '-', "Generate parameters using 5 as the generator value"},
70
71     OPT_R_OPTIONS,
72     OPT_PROV_OPTIONS,
73
74     OPT_PARAMETERS(),
75     {"numbits", 0, 0, "Number of bits if generating parameters (optional)"},
76     {NULL}
77 };
78
79 int dhparam_main(int argc, char **argv)
80 {
81     BIO *in = NULL, *out = NULL;
82     EVP_PKEY *pkey = NULL, *tmppkey = NULL;
83     EVP_PKEY_CTX *ctx = NULL;
84     char *infile = NULL, *outfile = NULL, *prog;
85     ENGINE *e = NULL;
86     int dsaparam = 0;
87     int text = 0, ret = 1, num = 0, g = 0;
88     int informat = FORMAT_PEM, outformat = FORMAT_PEM, check = 0, noout = 0;
89     OPTION_CHOICE o;
90
91     prog = opt_init(argc, argv, dhparam_options);
92     while ((o = opt_next()) != OPT_EOF) {
93         switch (o) {
94         case OPT_EOF:
95         case OPT_ERR:
96  opthelp:
97             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
98             goto end;
99         case OPT_HELP:
100             opt_help(dhparam_options);
101             ret = 0;
102             goto end;
103         case OPT_INFORM:
104             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &informat))
105                 goto opthelp;
106             break;
107         case OPT_OUTFORM:
108             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &outformat))
109                 goto opthelp;
110             break;
111         case OPT_IN:
112             infile = opt_arg();
113             break;
114         case OPT_OUT:
115             outfile = opt_arg();
116             break;
117         case OPT_ENGINE:
118             e = setup_engine(opt_arg(), 0);
119             break;
120         case OPT_CHECK:
121             check = 1;
122             break;
123         case OPT_TEXT:
124             text = 1;
125             break;
126         case OPT_DSAPARAM:
127             dsaparam = 1;
128             break;
129         case OPT_2:
130             g = 2;
131             break;
132         case OPT_3:
133             g = 3;
134             break;
135         case OPT_5:
136             g = 5;
137             break;
138         case OPT_NOOUT:
139             noout = 1;
140             break;
141         case OPT_R_CASES:
142             if (!opt_rand(o))
143                 goto end;
144             break;
145         case OPT_PROV_CASES:
146             if (!opt_provider(o))
147                 goto end;
148             break;
149         }
150     }
151     argc = opt_num_rest();
152     argv = opt_rest();
153
154     if (argv[0] != NULL && (!opt_int(argv[0], &num) || num <= 0))
155         goto end;
156
157     if (g && !num)
158         num = DEFBITS;
159
160     if (dsaparam && g) {
161         BIO_printf(bio_err,
162                    "Error, generator may not be chosen for DSA parameters\n");
163         goto end;
164     }
165
166     out = bio_open_default(outfile, 'w', outformat);
167     if (out == NULL)
168         goto end;
169
170     /* DH parameters */
171     if (num && !g)
172         g = 2;
173
174     if (num) {
175         const char *alg = dsaparam ? "DSA" : "DH";
176
177         ctx = EVP_PKEY_CTX_new_from_name(NULL, alg, NULL);
178         if (ctx == NULL) {
179             BIO_printf(bio_err,
180                         "Error, %s param generation context allocation failed\n",
181                         alg);
182             goto end;
183         }
184         EVP_PKEY_CTX_set_cb(ctx, gendh_cb);
185         EVP_PKEY_CTX_set_app_data(ctx, bio_err);
186         BIO_printf(bio_err,
187                     "Generating %s parameters, %d bit long %sprime\n",
188                     alg, num, dsaparam ? "" : "safe ");
189
190         if (!EVP_PKEY_paramgen_init(ctx)) {
191             BIO_printf(bio_err,
192                         "Error, unable to initialise %s parameters\n",
193                         alg);
194             goto end;
195         }
196
197         if (dsaparam) {
198             if (!EVP_PKEY_CTX_set_dsa_paramgen_bits(ctx, num)) {
199                 BIO_printf(bio_err, "Error, unable to set DSA prime length\n");
200                 goto end;
201             }
202         } else {
203             if (!EVP_PKEY_CTX_set_dh_paramgen_prime_len(ctx, num)) {
204                 BIO_printf(bio_err, "Error, unable to set DH prime length\n");
205                 goto end;
206             }
207             if (!EVP_PKEY_CTX_set_dh_paramgen_generator(ctx, g)) {
208                 BIO_printf(bio_err, "Error, unable to set generator\n");
209                 goto end;
210             }
211         }
212
213         if (!EVP_PKEY_paramgen(ctx, &tmppkey)) {
214             BIO_printf(bio_err, "Error, %s generation failed\n", alg);
215             goto end;
216         }
217
218         EVP_PKEY_CTX_free(ctx);
219         ctx = NULL;
220         if (dsaparam) {
221             pkey = dsa_to_dh(tmppkey);
222             if (pkey == NULL)
223                 goto end;
224             EVP_PKEY_free(tmppkey);
225         } else {
226             pkey = tmppkey;
227         }
228         tmppkey = NULL;
229     } else {
230         OSSL_DECODER_CTX *decoderctx = NULL;
231         const char *keytype = "DH";
232         int done;
233
234         in = bio_open_default(infile, 'r', informat);
235         if (in == NULL)
236             goto end;
237
238         do {
239             /*
240              * We assume we're done unless we explicitly want to retry and set
241              * this to 0 below.
242              */
243             done = 1;
244             /*
245             * We set NULL for the keytype to allow any key type. We don't know
246             * if we're going to get DH or DHX (or DSA in the event of dsaparam).
247             * We check that we got one of those key types afterwards.
248             */
249             decoderctx
250                 = OSSL_DECODER_CTX_new_by_EVP_PKEY(&tmppkey,
251                                                     (informat == FORMAT_ASN1)
252                                                     ? "DER" : "PEM",
253                                                     NULL,
254                                                     (informat == FORMAT_ASN1)
255                                                     ? keytype : NULL,
256                                                     OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
257                                                     NULL, NULL);
258
259             if (decoderctx != NULL
260                     && !OSSL_DECODER_from_bio(decoderctx, in)
261                     && informat == FORMAT_ASN1
262                     && strcmp(keytype, "DH") == 0) {
263                 /*
264                 * When reading DER we explicitly state the expected keytype
265                 * because, unlike PEM, there is no header to declare what
266                 * the contents of the DER file are. The decoders just try
267                 * and guess. Unfortunately with DHX key types they may guess
268                 * wrong and think we have a DSA keytype. Therefore we try
269                 * both DH and DHX sequentially.
270                 */
271                 keytype = "DHX";
272                 /*
273                     * BIO_reset() returns 0 for success for file BIOs only!!!
274                     * This won't work for stdin (and never has done)
275                     * TODO: We should fix this at some point
276                     */
277                 if (BIO_reset(in) == 0)
278                     done = 0;
279             }
280             OSSL_DECODER_CTX_free(decoderctx);
281         } while (!done);
282         if (tmppkey == NULL) {
283             BIO_printf(bio_err, "Error, unable to load parameters\n");
284             goto end;
285         }
286
287         if (dsaparam) {
288             if (!EVP_PKEY_is_a(tmppkey, "DSA")) {
289                 BIO_printf(bio_err, "Error, unable to load DSA parameters\n");
290                 goto end;
291             }
292             pkey = dsa_to_dh(tmppkey);
293             if (pkey == NULL)
294                 goto end;
295         } else {
296             if (!EVP_PKEY_is_a(tmppkey, "DH")
297                     && !EVP_PKEY_is_a(tmppkey, "DHX")) {
298                 BIO_printf(bio_err, "Error, unable to load DH parameters\n");
299                 goto end;
300             }
301             pkey = tmppkey;
302             tmppkey = NULL;
303         }
304     }
305
306     if (text)
307         EVP_PKEY_print_params(out, pkey, 4, NULL);
308
309     if (check) {
310         ctx = EVP_PKEY_CTX_new_from_pkey(NULL, pkey, NULL);
311         if (ctx == NULL) {
312             BIO_printf(bio_err, "Error, failed to check DH parameters\n");
313             goto end;
314         }
315         if (!EVP_PKEY_param_check(ctx)) {
316             BIO_printf(bio_err, "Error, invalid parameters generated\n");
317             goto end;
318         }
319         BIO_printf(bio_err, "DH parameters appear to be ok.\n");
320     }
321
322     if (!noout) {
323         OSSL_ENCODER_CTX *ectx =
324             OSSL_ENCODER_CTX_new_by_EVP_PKEY(pkey,
325                                              OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
326                                              outformat == FORMAT_ASN1
327                                              ? "DER" : "PEM",
328                                              NULL, NULL);
329
330         if (ectx == NULL || !OSSL_ENCODER_to_bio(ectx, out)) {
331             OSSL_ENCODER_CTX_free(ectx);
332             BIO_printf(bio_err, "Error, unable to write DH parameters\n");
333             goto end;
334         }
335         OSSL_ENCODER_CTX_free(ectx);
336     }
337     ret = 0;
338  end:
339     if (ret != 0)
340         ERR_print_errors(bio_err);
341     BIO_free(in);
342     BIO_free_all(out);
343     EVP_PKEY_free(pkey);
344     EVP_PKEY_free(tmppkey);
345     EVP_PKEY_CTX_free(ctx);
346     release_engine(e);
347     return ret;
348 }
349
350 /*
351  * Historically we had the low level call DSA_dup_DH() to do this.
352  * That is now deprecated with no replacement. Since we still need to do this
353  * for backwards compatibility reasons, we do it "manually".
354  */
355 static EVP_PKEY *dsa_to_dh(EVP_PKEY *dh)
356 {
357     OSSL_PARAM_BLD *tmpl = NULL;
358     OSSL_PARAM *params = NULL;
359     BIGNUM *bn_p = NULL, *bn_q = NULL, *bn_g = NULL;
360     EVP_PKEY_CTX *ctx = NULL;
361     EVP_PKEY *pkey = NULL;
362
363     if (!EVP_PKEY_get_bn_param(dh, OSSL_PKEY_PARAM_FFC_P, &bn_p)
364             || !EVP_PKEY_get_bn_param(dh, OSSL_PKEY_PARAM_FFC_Q, &bn_q)
365             || !EVP_PKEY_get_bn_param(dh, OSSL_PKEY_PARAM_FFC_G, &bn_g)) {
366         BIO_printf(bio_err, "Error, failed to set DH parameters\n");
367         goto err;
368     }
369
370     if ((tmpl = OSSL_PARAM_BLD_new()) == NULL
371             || !OSSL_PARAM_BLD_push_BN(tmpl, OSSL_PKEY_PARAM_FFC_P,
372                                         bn_p)
373             || !OSSL_PARAM_BLD_push_BN(tmpl, OSSL_PKEY_PARAM_FFC_Q,
374                                         bn_q)
375             || !OSSL_PARAM_BLD_push_BN(tmpl, OSSL_PKEY_PARAM_FFC_G,
376                                         bn_g)
377             || (params = OSSL_PARAM_BLD_to_param(tmpl)) == NULL) {
378         BIO_printf(bio_err, "Error, failed to set DH parameters\n");
379         goto err;
380     }
381
382     ctx = EVP_PKEY_CTX_new_from_name(NULL, "DHX", NULL);
383     if (ctx == NULL
384             || !EVP_PKEY_param_fromdata_init(ctx)
385             || !EVP_PKEY_fromdata(ctx, &pkey, params)) {
386         BIO_printf(bio_err, "Error, failed to set DH parameters\n");
387         goto err;
388     }
389
390  err:
391     EVP_PKEY_CTX_free(ctx);
392     OSSL_PARAM_BLD_free_params(params);
393     OSSL_PARAM_BLD_free(tmpl);
394     BN_free(bn_p);
395     BN_free(bn_q);
396     BN_free(bn_g);
397     return pkey;
398 }
399
400 static int gendh_cb(EVP_PKEY_CTX *ctx)
401 {
402     int p = EVP_PKEY_CTX_get_keygen_info(ctx, 0);
403     BIO *b = EVP_PKEY_CTX_get_app_data(ctx);
404     static const char symbols[] = ".+*\n";
405     char c = (p >= 0 && (size_t)p < sizeof(symbols) - 1) ? symbols[p] : '?';
406
407     BIO_write(b, &c, 1);
408     (void)BIO_flush(b);
409     return 1;
410 }