Check non-option arguments
[openssl.git] / apps / pkey.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 #include <stdio.h>
11 #include <string.h>
12 #include "apps.h"
13 #include "progs.h"
14 #include <openssl/pem.h>
15 #include <openssl/err.h>
16 #include <openssl/evp.h>
17
18 #ifndef OPENSSL_NO_EC
19 # include <openssl/ec.h>
20
21 static OPT_PAIR ec_conv_forms[] = {
22     {"compressed", POINT_CONVERSION_COMPRESSED},
23     {"uncompressed", POINT_CONVERSION_UNCOMPRESSED},
24     {"hybrid", POINT_CONVERSION_HYBRID},
25     {NULL}
26 };
27
28 static OPT_PAIR ec_param_enc[] = {
29     {"named_curve", OPENSSL_EC_NAMED_CURVE},
30     {"explicit", 0},
31     {NULL}
32 };
33 #endif
34
35 typedef enum OPTION_choice {
36     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
37     OPT_INFORM, OPT_OUTFORM, OPT_PASSIN, OPT_PASSOUT, OPT_ENGINE,
38     OPT_IN, OPT_OUT, OPT_PUBIN, OPT_PUBOUT, OPT_TEXT_PUB,
39     OPT_TEXT, OPT_NOOUT, OPT_MD, OPT_TRADITIONAL, OPT_CHECK, OPT_PUB_CHECK,
40     OPT_EC_PARAM_ENC, OPT_EC_CONV_FORM,
41     OPT_PROV_ENUM
42 } OPTION_CHOICE;
43
44 const OPTIONS pkey_options[] = {
45     OPT_SECTION("General"),
46     {"help", OPT_HELP, '-', "Display this summary"},
47 #ifndef OPENSSL_NO_ENGINE
48     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
49 #endif
50     {"check", OPT_CHECK, '-', "Check key consistency"},
51     {"pubcheck", OPT_PUB_CHECK, '-', "Check public key consistency"},
52     {"", OPT_MD, '-', "Any supported cipher"},
53     {"ec_param_enc", OPT_EC_PARAM_ENC, 's',
54      "Specifies the way the ec parameters are encoded"},
55     {"ec_conv_form", OPT_EC_CONV_FORM, 's',
56      "Specifies the point conversion form "},
57
58     OPT_SECTION("Input"),
59     {"in", OPT_IN, 's', "Input key"},
60     {"inform", OPT_INFORM, 'f', "Input format (DER/PEM/P12/ENGINE)"},
61     {"passin", OPT_PASSIN, 's', "Input file pass phrase source"},
62     {"pubin", OPT_PUBIN, '-',
63      "Read public key from input (default is private key)"},
64     {"traditional", OPT_TRADITIONAL, '-',
65      "Use traditional format for private keys"},
66
67     OPT_SECTION("Output"),
68     {"outform", OPT_OUTFORM, 'F', "Output format (DER or PEM)"},
69     {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"},
70     {"out", OPT_OUT, '>', "Output file"},
71     {"pubout", OPT_PUBOUT, '-', "Output public key, not private"},
72     {"text_pub", OPT_TEXT_PUB, '-', "Only output public key components"},
73     {"text", OPT_TEXT, '-', "Output in plaintext as well"},
74     {"noout", OPT_NOOUT, '-', "Don't output the key"},
75
76     OPT_PROV_OPTIONS,
77     {NULL}
78 };
79
80 int pkey_main(int argc, char **argv)
81 {
82     BIO *in = NULL, *out = NULL;
83     ENGINE *e = NULL;
84     EVP_PKEY *pkey = NULL;
85     const EVP_CIPHER *cipher = NULL;
86     char *infile = NULL, *outfile = NULL, *passin = NULL, *passout = NULL;
87     char *passinarg = NULL, *passoutarg = NULL, *prog;
88     OPTION_CHOICE o;
89     int informat = FORMAT_PEM, outformat = FORMAT_PEM;
90     int pubin = 0, pubout = 0, pubtext = 0, text = 0, noout = 0, ret = 1;
91     int private = 0, traditional = 0, check = 0, pub_check = 0;
92 #ifndef OPENSSL_NO_EC
93     EC_KEY *eckey;
94     int ec_asn1_flag = OPENSSL_EC_NAMED_CURVE, new_ec_asn1_flag = 0;
95     int i, new_ec_form = 0;
96     point_conversion_form_t ec_form = POINT_CONVERSION_UNCOMPRESSED;
97 #endif
98
99     prog = opt_init(argc, argv, pkey_options);
100     while ((o = opt_next()) != OPT_EOF) {
101         switch (o) {
102         case OPT_EOF:
103         case OPT_ERR:
104  opthelp:
105             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
106             goto end;
107         case OPT_HELP:
108             opt_help(pkey_options);
109             ret = 0;
110             goto end;
111         case OPT_INFORM:
112             if (!opt_format(opt_arg(), OPT_FMT_ANY, &informat))
113                 goto opthelp;
114             break;
115         case OPT_OUTFORM:
116             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &outformat))
117                 goto opthelp;
118             break;
119         case OPT_PASSIN:
120             passinarg = opt_arg();
121             break;
122         case OPT_PASSOUT:
123             passoutarg = opt_arg();
124             break;
125         case OPT_ENGINE:
126             e = setup_engine(opt_arg(), 0);
127             break;
128         case OPT_IN:
129             infile = opt_arg();
130             break;
131         case OPT_OUT:
132             outfile = opt_arg();
133             break;
134         case OPT_PUBIN:
135             pubin = pubout = pubtext = 1;
136             break;
137         case OPT_PUBOUT:
138             pubout = 1;
139             break;
140         case OPT_TEXT_PUB:
141             pubtext = text = 1;
142             break;
143         case OPT_TEXT:
144             text = 1;
145             break;
146         case OPT_NOOUT:
147             noout = 1;
148             break;
149         case OPT_TRADITIONAL:
150             traditional = 1;
151             break;
152         case OPT_CHECK:
153             check = 1;
154             break;
155         case OPT_PUB_CHECK:
156             pub_check = 1;
157             break;
158         case OPT_MD:
159             if (!opt_cipher(opt_unknown(), &cipher))
160                 goto opthelp;
161             break;
162         case OPT_EC_CONV_FORM:
163 #ifdef OPENSSL_NO_EC
164             goto opthelp;
165 #else
166             if (!opt_pair(opt_arg(), ec_conv_forms, &i))
167                 goto opthelp;
168             new_ec_form = 1;
169             ec_form = i;
170             break;
171 #endif
172         case OPT_EC_PARAM_ENC:
173 #ifdef OPENSSL_NO_EC
174             goto opthelp;
175 #else
176             if (!opt_pair(opt_arg(), ec_param_enc, &i))
177                 goto opthelp;
178             new_ec_asn1_flag = 1;
179             ec_asn1_flag = i;
180             break;
181 #endif
182         case OPT_PROV_CASES:
183             if (!opt_provider(o))
184                 goto end;
185             break;
186         }
187     }
188
189     /* No extra arguments. */
190     argc = opt_num_rest();
191     if (argc != 0)
192         goto opthelp;
193
194     private = !noout && !pubout ? 1 : 0;
195     if (text && !pubtext)
196         private = 1;
197
198     if (!app_passwd(passinarg, passoutarg, &passin, &passout)) {
199         BIO_printf(bio_err, "Error getting passwords\n");
200         goto end;
201     }
202
203     out = bio_open_owner(outfile, outformat, private);
204     if (out == NULL)
205         goto end;
206
207     if (pubin)
208         pkey = load_pubkey(infile, informat, 1, passin, e, "Public Key");
209     else
210         pkey = load_key(infile, informat, 1, passin, e, "key");
211     if (pkey == NULL)
212         goto end;
213
214 #ifndef OPENSSL_NO_EC
215     /*
216      * TODO: remove this and use a set params call with a 'pkeyopt' command
217      * line option instead.
218      */
219     if (new_ec_form || new_ec_asn1_flag) {
220         if ((eckey = EVP_PKEY_get0_EC_KEY(pkey)) == NULL) {
221             ERR_print_errors(bio_err);
222             goto end;
223         }
224         if (new_ec_form)
225             EC_KEY_set_conv_form(eckey, ec_form);
226
227         if (new_ec_asn1_flag)
228             EC_KEY_set_asn1_flag(eckey, ec_asn1_flag);
229     }
230 #endif
231
232     if (check || pub_check) {
233         int r;
234         EVP_PKEY_CTX *ctx;
235
236         ctx = EVP_PKEY_CTX_new(pkey, e);
237         if (ctx == NULL) {
238             ERR_print_errors(bio_err);
239             goto end;
240         }
241
242         if (check)
243             r = EVP_PKEY_check(ctx);
244         else
245             r = EVP_PKEY_public_check(ctx);
246
247         if (r == 1) {
248             BIO_printf(out, "Key is valid\n");
249         } else {
250             /*
251              * Note: at least for RSA keys if this function returns
252              * -1, there will be no error reasons.
253              */
254             unsigned long err;
255
256             BIO_printf(out, "Key is invalid\n");
257
258             while ((err = ERR_peek_error()) != 0) {
259                 BIO_printf(out, "Detailed error: %s\n",
260                            ERR_reason_error_string(err));
261                 ERR_get_error(); /* remove err from error stack */
262             }
263         }
264         EVP_PKEY_CTX_free(ctx);
265     }
266
267     if (!noout) {
268         if (outformat == FORMAT_PEM) {
269             if (pubout) {
270                 if (!PEM_write_bio_PUBKEY(out, pkey))
271                     goto end;
272             } else {
273                 assert(private);
274                 if (traditional) {
275                     if (!PEM_write_bio_PrivateKey_traditional(out, pkey, cipher,
276                                                               NULL, 0, NULL,
277                                                               passout))
278                         goto end;
279                 } else {
280                     if (!PEM_write_bio_PrivateKey(out, pkey, cipher,
281                                                   NULL, 0, NULL, passout))
282                         goto end;
283                 }
284             }
285         } else if (outformat == FORMAT_ASN1) {
286             if (pubout) {
287                 if (!i2d_PUBKEY_bio(out, pkey))
288                     goto end;
289             } else {
290                 assert(private);
291                 if (!i2d_PrivateKey_bio(out, pkey))
292                     goto end;
293             }
294         } else {
295             BIO_printf(bio_err, "Bad format specified for key\n");
296             goto end;
297         }
298     }
299
300     if (text) {
301         if (pubtext) {
302             if (EVP_PKEY_print_public(out, pkey, 0, NULL) <= 0)
303                 goto end;
304         } else {
305             assert(private);
306             if (EVP_PKEY_print_private(out, pkey, 0, NULL) <= 0)
307                 goto end;
308         }
309     }
310
311     ret = 0;
312
313  end:
314     if (ret != 0)
315         ERR_print_errors(bio_err);
316     EVP_PKEY_free(pkey);
317     release_engine(e);
318     BIO_free_all(out);
319     BIO_free(in);
320     OPENSSL_free(passin);
321     OPENSSL_free(passout);
322
323     return ret;
324 }