DOC: Modify one example in EVP_PKEY_fromdata(3)
[openssl.git] / apps / genpkey.c
1 /*
2  * Copyright 2006-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 /* We need to use some engine deprecated APIs */
11 #define OPENSSL_SUPPRESS_DEPRECATED
12
13 #include <stdio.h>
14 #include <string.h>
15 #include "apps.h"
16 #include "progs.h"
17 #include <openssl/pem.h>
18 #include <openssl/err.h>
19 #include <openssl/evp.h>
20 #ifndef OPENSSL_NO_ENGINE
21 # include <openssl/engine.h>
22 #endif
23
24 static int init_keygen_file(EVP_PKEY_CTX **pctx, const char *file, ENGINE *e,
25                             OPENSSL_CTX *libctx, const char *propq);
26 static int genpkey_cb(EVP_PKEY_CTX *ctx);
27
28 typedef enum OPTION_choice {
29     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
30     OPT_ENGINE, OPT_OUTFORM, OPT_OUT, OPT_PASS, OPT_PARAMFILE,
31     OPT_ALGORITHM, OPT_PKEYOPT, OPT_GENPARAM, OPT_TEXT, OPT_CIPHER,
32     OPT_CONFIG,
33     OPT_PROV_ENUM
34 } OPTION_CHOICE;
35
36 const OPTIONS genpkey_options[] = {
37     OPT_SECTION("General"),
38     {"help", OPT_HELP, '-', "Display this summary"},
39 #ifndef OPENSSL_NO_ENGINE
40     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
41 #endif
42     {"paramfile", OPT_PARAMFILE, '<', "Parameters file"},
43     {"algorithm", OPT_ALGORITHM, 's', "The public key algorithm"},
44     {"pkeyopt", OPT_PKEYOPT, 's',
45      "Set the public key algorithm option as opt:value"},
46      OPT_CONFIG_OPTION,
47
48     OPT_SECTION("Output"),
49     {"out", OPT_OUT, '>', "Output file"},
50     {"outform", OPT_OUTFORM, 'F', "output format (DER or PEM)"},
51     {"pass", OPT_PASS, 's', "Output file pass phrase source"},
52     {"genparam", OPT_GENPARAM, '-', "Generate parameters, not key"},
53     {"text", OPT_TEXT, '-', "Print the in text"},
54     {"", OPT_CIPHER, '-', "Cipher to use to encrypt the key"},
55
56     OPT_PROV_OPTIONS,
57
58     /* This is deliberately last. */
59     {OPT_HELP_STR, 1, 1,
60      "Order of options may be important!  See the documentation.\n"},
61     {NULL}
62 };
63
64 int genpkey_main(int argc, char **argv)
65 {
66     CONF *conf = NULL;
67     BIO *in = NULL, *out = NULL;
68     ENGINE *e = NULL;
69     EVP_PKEY *pkey = NULL;
70     EVP_PKEY_CTX *ctx = NULL;
71     char *outfile = NULL, *passarg = NULL, *pass = NULL, *prog;
72     const EVP_CIPHER *cipher = NULL;
73     OPTION_CHOICE o;
74     int outformat = FORMAT_PEM, text = 0, ret = 1, rv, do_param = 0;
75     int private = 0;
76     OPENSSL_CTX *libctx = app_get0_libctx();
77     const char *propq = app_get0_propq();
78
79     prog = opt_init(argc, argv, genpkey_options);
80     while ((o = opt_next()) != OPT_EOF) {
81         switch (o) {
82         case OPT_EOF:
83         case OPT_ERR:
84  opthelp:
85             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
86             goto end;
87         case OPT_HELP:
88             ret = 0;
89             opt_help(genpkey_options);
90             goto end;
91         case OPT_OUTFORM:
92             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &outformat))
93                 goto opthelp;
94             break;
95         case OPT_OUT:
96             outfile = opt_arg();
97             break;
98         case OPT_PASS:
99             passarg = opt_arg();
100             break;
101         case OPT_ENGINE:
102             e = setup_engine(opt_arg(), 0);
103             break;
104         case OPT_PARAMFILE:
105             if (do_param == 1)
106                 goto opthelp;
107             if (!init_keygen_file(&ctx, opt_arg(), e, libctx, propq))
108                 goto end;
109             break;
110         case OPT_ALGORITHM:
111             if (!init_gen_str(&ctx, opt_arg(), e, do_param, libctx, propq))
112                 goto end;
113             break;
114         case OPT_PKEYOPT:
115             if (ctx == NULL) {
116                 BIO_printf(bio_err, "%s: No keytype specified.\n", prog);
117                 goto opthelp;
118             }
119             if (pkey_ctrl_string(ctx, opt_arg()) <= 0) {
120                 BIO_printf(bio_err,
121                            "%s: Error setting %s parameter:\n",
122                            prog, opt_arg());
123                 ERR_print_errors(bio_err);
124                 goto end;
125             }
126             break;
127         case OPT_GENPARAM:
128             if (ctx != NULL)
129                 goto opthelp;
130             do_param = 1;
131             break;
132         case OPT_TEXT:
133             text = 1;
134             break;
135         case OPT_CIPHER:
136             if (!opt_cipher(opt_unknown(), &cipher)
137                 || do_param == 1)
138                 goto opthelp;
139             if (EVP_CIPHER_mode(cipher) == EVP_CIPH_GCM_MODE ||
140                 EVP_CIPHER_mode(cipher) == EVP_CIPH_CCM_MODE ||
141                 EVP_CIPHER_mode(cipher) == EVP_CIPH_XTS_MODE ||
142                 EVP_CIPHER_mode(cipher) == EVP_CIPH_OCB_MODE) {
143                 BIO_printf(bio_err, "%s: cipher mode not supported\n", prog);
144                 goto end;
145             }
146             break;
147         case OPT_CONFIG:
148             conf = app_load_config_modules(opt_arg());
149             if (conf == NULL)
150                 goto end;
151             break;
152         case OPT_PROV_CASES:
153             if (!opt_provider(o))
154                 goto end;
155             break;
156         }
157     }
158     argc = opt_num_rest();
159     if (argc != 0)
160         goto opthelp;
161
162     private = do_param ? 0 : 1;
163
164     if (ctx == NULL)
165         goto opthelp;
166
167     if (!app_passwd(passarg, NULL, &pass, NULL)) {
168         BIO_puts(bio_err, "Error getting password\n");
169         goto end;
170     }
171
172     out = bio_open_owner(outfile, outformat, private);
173     if (out == NULL)
174         goto end;
175
176     EVP_PKEY_CTX_set_cb(ctx, genpkey_cb);
177     EVP_PKEY_CTX_set_app_data(ctx, bio_err);
178
179     if (do_param) {
180         if (EVP_PKEY_paramgen(ctx, &pkey) <= 0) {
181             BIO_puts(bio_err, "Error generating parameters\n");
182             ERR_print_errors(bio_err);
183             goto end;
184         }
185     } else {
186         if (EVP_PKEY_keygen(ctx, &pkey) <= 0) {
187             BIO_puts(bio_err, "Error generating key\n");
188             ERR_print_errors(bio_err);
189             goto end;
190         }
191     }
192
193     if (do_param) {
194         rv = PEM_write_bio_Parameters(out, pkey);
195     } else if (outformat == FORMAT_PEM) {
196         assert(private);
197         rv = PEM_write_bio_PrivateKey(out, pkey, cipher, NULL, 0, NULL, pass);
198     } else if (outformat == FORMAT_ASN1) {
199         assert(private);
200         rv = i2d_PrivateKey_bio(out, pkey);
201     } else {
202         BIO_printf(bio_err, "Bad format specified for key\n");
203         goto end;
204     }
205
206     ret = 0;
207
208     if (rv <= 0) {
209         BIO_puts(bio_err, "Error writing key\n");
210         ERR_print_errors(bio_err);
211         ret = 1;
212     }
213
214     if (text) {
215         if (do_param)
216             rv = EVP_PKEY_print_params(out, pkey, 0, NULL);
217         else
218             rv = EVP_PKEY_print_private(out, pkey, 0, NULL);
219
220         if (rv <= 0) {
221             BIO_puts(bio_err, "Error printing key\n");
222             ERR_print_errors(bio_err);
223             ret = 1;
224         }
225     }
226
227  end:
228     EVP_PKEY_free(pkey);
229     EVP_PKEY_CTX_free(ctx);
230     BIO_free_all(out);
231     BIO_free(in);
232     release_engine(e);
233     OPENSSL_free(pass);
234     NCONF_free(conf);
235     return ret;
236 }
237
238 static int init_keygen_file(EVP_PKEY_CTX **pctx, const char *file, ENGINE *e,
239                             OPENSSL_CTX *libctx, const char *propq)
240 {
241     BIO *pbio;
242     EVP_PKEY *pkey = NULL;
243     EVP_PKEY_CTX *ctx = NULL;
244     if (*pctx) {
245         BIO_puts(bio_err, "Parameters already set!\n");
246         return 0;
247     }
248
249     pbio = BIO_new_file(file, "r");
250     if (pbio == NULL) {
251         BIO_printf(bio_err, "Can't open parameter file %s\n", file);
252         return 0;
253     }
254
255     pkey = PEM_read_bio_Parameters(pbio, NULL);
256     BIO_free(pbio);
257
258     if (pkey == NULL) {
259         BIO_printf(bio_err, "Error reading parameter file %s\n", file);
260         return 0;
261     }
262
263     if (e != NULL)
264         ctx = EVP_PKEY_CTX_new(pkey, e);
265     else
266         ctx = EVP_PKEY_CTX_new_from_pkey(libctx, pkey, propq);
267     if (ctx == NULL)
268         goto err;
269     if (EVP_PKEY_keygen_init(ctx) <= 0)
270         goto err;
271     EVP_PKEY_free(pkey);
272     *pctx = ctx;
273     return 1;
274
275  err:
276     BIO_puts(bio_err, "Error initializing context\n");
277     ERR_print_errors(bio_err);
278     EVP_PKEY_CTX_free(ctx);
279     EVP_PKEY_free(pkey);
280     return 0;
281
282 }
283
284 int init_gen_str(EVP_PKEY_CTX **pctx,
285                  const char *algname, ENGINE *e, int do_param,
286                  OPENSSL_CTX *libctx, const char *propq)
287 {
288     EVP_PKEY_CTX *ctx = NULL;
289     const EVP_PKEY_ASN1_METHOD *ameth;
290     ENGINE *tmpeng = NULL;
291     int pkey_id;
292
293     if (*pctx) {
294         BIO_puts(bio_err, "Algorithm already set!\n");
295         return 0;
296     }
297
298     if (libctx == NULL || e != NULL) {
299         ameth = EVP_PKEY_asn1_find_str(&tmpeng, algname, -1);
300
301 #if !defined(OPENSSL_NO_ENGINE) && !defined(OPENSSL_NO_DEPRECATED_3_0)
302         if (ameth == NULL && e != NULL)
303             ameth = ENGINE_get_pkey_asn1_meth_str(e, algname, -1);
304 #endif
305         if (ameth == NULL) {
306             BIO_printf(bio_err, "Algorithm %s not found\n", algname);
307             return 0;
308         }
309         ERR_clear_error();
310
311         EVP_PKEY_asn1_get0_info(&pkey_id, NULL, NULL, NULL, NULL, ameth);
312 #if !defined(OPENSSL_NO_ENGINE) && !defined(OPENSSL_NO_DEPRECATED_3_0)
313         ENGINE_finish(tmpeng);
314 #endif
315         ctx = EVP_PKEY_CTX_new_id(pkey_id, e);
316     } else {
317         ctx = EVP_PKEY_CTX_new_from_name(libctx, algname, propq);
318     }
319
320     if (!ctx)
321         goto err;
322     if (do_param) {
323         if (EVP_PKEY_paramgen_init(ctx) <= 0)
324             goto err;
325     } else {
326         if (EVP_PKEY_keygen_init(ctx) <= 0)
327             goto err;
328     }
329
330     *pctx = ctx;
331     return 1;
332
333  err:
334     BIO_printf(bio_err, "Error initializing %s context\n", algname);
335     ERR_print_errors(bio_err);
336     EVP_PKEY_CTX_free(ctx);
337     return 0;
338
339 }
340
341 static int genpkey_cb(EVP_PKEY_CTX *ctx)
342 {
343     char c = '*';
344     BIO *b = EVP_PKEY_CTX_get_app_data(ctx);
345     int p;
346     p = EVP_PKEY_CTX_get_keygen_info(ctx, 0);
347     if (p == 0)
348         c = '.';
349     if (p == 1)
350         c = '+';
351     if (p == 2)
352         c = '*';
353     if (p == 3)
354         c = '\n';
355     BIO_write(b, &c, 1);
356     (void)BIO_flush(b);
357     return 1;
358 }