]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/req.c
apps/x509.c: Improve print_name() and coding style of large print loop in x509_main()
[thirdparty/openssl.git] / apps / req.c
CommitLineData
846e33c7 1/*
4333b89f 2 * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
d02b48c6 3 *
dffa7520 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
846e33c7
RS
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
d02b48c6
RE
8 */
9
10#include <stdio.h>
11#include <stdlib.h>
12#include <time.h>
13#include <string.h>
2ddee136 14#include <ctype.h>
d02b48c6 15#include "apps.h"
dab2cd68 16#include "progs.h"
ec577822
BM
17#include <openssl/bio.h>
18#include <openssl/evp.h>
ec577822
BM
19#include <openssl/conf.h>
20#include <openssl/err.h>
21#include <openssl/asn1.h>
22#include <openssl/x509.h>
23#include <openssl/x509v3.h>
24#include <openssl/objects.h>
25#include <openssl/pem.h>
3eeaab4b 26#include <openssl/bn.h>
2ddee136 27#include <openssl/lhash.h>
3a1ee3c1 28#include <openssl/rsa.h>
3eeaab4b 29#ifndef OPENSSL_NO_DSA
0f113f3e 30# include <openssl/dsa.h>
3eeaab4b 31#endif
d02b48c6 32
6ad957f1
DDO
33#define BITS "default_bits"
34#define KEYFILE "default_keyfile"
35#define PROMPT "prompt"
36#define DISTINGUISHED_NAME "distinguished_name"
37#define ATTRIBUTES "attributes"
38#define V3_EXTENSIONS "x509_extensions"
39#define REQ_EXTENSIONS "req_extensions"
40#define STRING_MASK "string_mask"
41#define UTF8_IN "utf8"
42
43#define DEFAULT_KEY_LENGTH 2048
44#define MIN_KEY_LENGTH 512
45#define DEFAULT_DAYS 30 /* default cert validity period in days */
46#define UNSET_DAYS -2 /* -1 may be used for testing expiration checks */
b65c5ec8 47#define EXT_COPY_UNSET -1
d02b48c6 48
ea9fd333
DDO
49static int make_REQ(X509_REQ *req, EVP_PKEY *pkey, X509_NAME *fsubj,
50 int mutlirdn, int attribs, unsigned long chtype);
b38f9f66 51static int prompt_info(X509_REQ *req,
cc696296
F
52 STACK_OF(CONF_VALUE) *dn_sk, const char *dn_sect,
53 STACK_OF(CONF_VALUE) *attr_sk, const char *attr_sect,
0f113f3e 54 int attribs, unsigned long chtype);
b38f9f66 55static int auto_info(X509_REQ *req, STACK_OF(CONF_VALUE) *sk,
0f113f3e
MC
56 STACK_OF(CONF_VALUE) *attr, int attribs,
57 unsigned long chtype);
7d727231 58static int add_attribute_object(X509_REQ *req, char *text, const char *def,
0f113f3e
MC
59 char *value, int nid, int n_min, int n_max,
60 unsigned long chtype);
61static int add_DN_object(X509_NAME *n, char *text, const char *def,
62 char *value, int nid, int n_min, int n_max,
63 unsigned long chtype, int mval);
959e8dfe 64static int genpkey_cb(EVP_PKEY_CTX *ctx);
6ad957f1
DDO
65static int build_data(char *text, const char *def, char *value,
66 int n_min, int n_max, char *buf, const int buf_size,
67 const char *desc1, const char *desc2);
0f113f3e 68static int req_check_len(int len, int n_min, int n_max);
7d727231 69static int check_end(const char *str, const char *end);
9a0953ed
P
70static int join(char buf[], size_t buf_size, const char *name,
71 const char *tail, const char *desc);
7e1b7485 72static EVP_PKEY_CTX *set_keygen_ctx(const char *gstr,
0f113f3e
MC
73 int *pkey_type, long *pkeylen,
74 char **palgnam, ENGINE *keygen_engine);
d462b5ff
RS
75
76static const char *section = "req";
0f113f3e 77static CONF *req_conf = NULL;
bfa470a4 78static CONF *addext_conf = NULL;
0f113f3e 79static int batch = 0;
d02b48c6 80
7e1b7485
RS
81typedef enum OPTION_choice {
82 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
83 OPT_INFORM, OPT_OUTFORM, OPT_ENGINE, OPT_KEYGEN_ENGINE, OPT_KEY,
84 OPT_PUBKEY, OPT_NEW, OPT_CONFIG, OPT_KEYFORM, OPT_IN, OPT_OUT,
3ee1eac2 85 OPT_KEYOUT, OPT_PASSIN, OPT_PASSOUT, OPT_NEWKEY,
2292c8e1 86 OPT_PKEYOPT, OPT_SIGOPT, OPT_VFYOPT, OPT_BATCH, OPT_NEWHDR, OPT_MODULUS,
ef898017 87 OPT_VERIFY, OPT_NOENC, OPT_NODES, OPT_NOOUT, OPT_VERBOSE, OPT_UTF8,
29eca1c0 88 OPT_NAMEOPT, OPT_REQOPT, OPT_SUBJ, OPT_SUBJECT, OPT_TEXT, OPT_X509,
6ad957f1 89 OPT_CA, OPT_CAKEY,
b65c5ec8
DDO
90 OPT_MULTIVALUE_RDN, OPT_DAYS, OPT_SET_SERIAL,
91 OPT_COPY_EXTENSIONS, OPT_ADDEXT, OPT_EXTENSIONS,
2292c8e1 92 OPT_REQEXTS, OPT_PRECERT, OPT_MD,
d462b5ff 93 OPT_SECTION,
6bd4e3f2 94 OPT_R_ENUM, OPT_PROV_ENUM
7e1b7485
RS
95} OPTION_CHOICE;
96
44c83ebd 97const OPTIONS req_options[] = {
5388f986 98 OPT_SECTION("General"),
7e1b7485 99 {"help", OPT_HELP, '-', "Display this summary"},
5388f986
RS
100#ifndef OPENSSL_NO_ENGINE
101 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
102 {"keygen_engine", OPT_KEYGEN_ENGINE, 's',
103 "Specify engine to be used for key generation operations"},
1aa516b9 104#endif
6ad957f1 105 {"in", OPT_IN, '<', "X.509 request input file"},
5388f986 106 {"inform", OPT_INFORM, 'F', "Input format - DER or PEM"},
04a1b3fa 107 {"verify", OPT_VERIFY, '-', "Verify self-signature on the request"},
5388f986
RS
108
109 OPT_SECTION("Certificate"),
7e1b7485
RS
110 {"new", OPT_NEW, '-', "New request"},
111 {"config", OPT_CONFIG, '<', "Request template file"},
d462b5ff 112 {"section", OPT_SECTION, 's', "Config section to use (default \"req\")"},
7e1b7485 113 {"utf8", OPT_UTF8, '-', "Input characters are UTF8 (default ASCII)"},
2b264aee 114 {"nameopt", OPT_NAMEOPT, 's', "Certificate subject/issuer name printing options"},
7e1b7485
RS
115 {"reqopt", OPT_REQOPT, 's', "Various request text options"},
116 {"text", OPT_TEXT, '-', "Text form of request"},
117 {"x509", OPT_X509, '-',
5388f986 118 "Output an x509 structure instead of a cert request"},
6ad957f1
DDO
119 {"CA", OPT_CA, '<', "Issuer certificate to use with -x509"},
120 {"CAkey", OPT_CAKEY, 's',
121 "Issuer private key to use with -x509; default is -CA arg"},
7e1b7485 122 {OPT_MORE_STR, 1, 1, "(Required by some CA's)"},
6ad957f1
DDO
123 {"subj", OPT_SUBJ, 's', "Set or modify subject of request or cert"},
124 {"subject", OPT_SUBJECT, '-',
125 "Print the subject of the output request or cert"},
7e1b7485 126 {"multivalue-rdn", OPT_MULTIVALUE_RDN, '-',
5a0991d0 127 "Deprecated; multi-valued RDNs support is always on."},
7e1b7485 128 {"days", OPT_DAYS, 'p', "Number of days cert is valid for"},
be4c82aa 129 {"set_serial", OPT_SET_SERIAL, 's', "Serial number to use"},
b65c5ec8
DDO
130 {"copy_extensions", OPT_COPY_EXTENSIONS, 's',
131 "copy extensions from request when using -x509"},
bfa470a4
RL
132 {"addext", OPT_ADDEXT, 's',
133 "Additional cert extension key=value pair (may be given more than once)"},
7e1b7485
RS
134 {"extensions", OPT_EXTENSIONS, 's',
135 "Cert extension section (override value in config file)"},
136 {"reqexts", OPT_REQEXTS, 's',
137 "Request extension section (override value in config file)"},
65b3dff7 138 {"precert", OPT_PRECERT, '-', "Add a poison extension (implies -new)"},
5388f986
RS
139
140 OPT_SECTION("Keys and Signing"),
141 {"key", OPT_KEY, 's', "Private key to use"},
6d382c74 142 {"keyform", OPT_KEYFORM, 'f', "Key file format (ENGINE, other values ignored)"},
5388f986 143 {"pubkey", OPT_PUBKEY, '-', "Output public key"},
6ad957f1
DDO
144 {"keyout", OPT_KEYOUT, '>', "File to save newly created private key"},
145 {"passin", OPT_PASSIN, 's', "Private key and certificate password source"},
5388f986
RS
146 {"passout", OPT_PASSOUT, 's', "Output file pass phrase source"},
147 {"newkey", OPT_NEWKEY, 's', "Specify as type:bits"},
148 {"pkeyopt", OPT_PKEYOPT, 's', "Public key options as opt:value"},
149 {"sigopt", OPT_SIGOPT, 's', "Signature parameter in n:v form"},
2292c8e1 150 {"vfyopt", OPT_VFYOPT, 's', "Verification parameter in n:v form"},
9c3bcfa0 151 {"", OPT_MD, '-', "Any supported digest"},
5388f986
RS
152
153 OPT_SECTION("Output"),
154 {"out", OPT_OUT, '>', "Output file"},
155 {"outform", OPT_OUTFORM, 'F', "Output format - DER or PEM"},
156 {"batch", OPT_BATCH, '-',
157 "Do not ask anything during request generation"},
158 {"verbose", OPT_VERBOSE, '-', "Verbose output"},
ef898017
DDO
159 {"noenc", OPT_NOENC, '-', "Don't encrypt private keys"},
160 {"nodes", OPT_NODES, '-', "Don't encrypt private keys; deprecated"},
5388f986
RS
161 {"noout", OPT_NOOUT, '-', "Do not output REQ"},
162 {"newhdr", OPT_NEWHDR, '-', "Output \"NEW\" in the header lines"},
163 {"modulus", OPT_MODULUS, '-', "RSA modulus"},
164
165 OPT_R_OPTIONS,
6bd4e3f2 166 OPT_PROV_OPTIONS,
7e1b7485
RS
167 {NULL}
168};
667ac4ec 169
2ddee136
RS
170/*
171 * An LHASH of strings, where each string is an extension name.
172 */
173static unsigned long ext_name_hash(const OPENSSL_STRING *a)
174{
175 return OPENSSL_LH_strhash((const char *)a);
176}
177
178static int ext_name_cmp(const OPENSSL_STRING *a, const OPENSSL_STRING *b)
179{
180 return strcmp((const char *)a, (const char *)b);
181}
182
183static void exts_cleanup(OPENSSL_STRING *x)
184{
185 OPENSSL_free((char *)x);
186}
187
188/*
6ad957f1
DDO
189 * Is the |kv| key already duplicated? This is remarkably tricky to get right.
190 * Return 0 if unique, -1 on runtime error; 1 if found or a syntax error.
2ddee136
RS
191 */
192static int duplicated(LHASH_OF(OPENSSL_STRING) *addexts, char *kv)
193{
194 char *p;
750d5587 195 size_t off;
2ddee136
RS
196
197 /* Check syntax. */
2ddee136
RS
198 /* Skip leading whitespace, make a copy. */
199 while (*kv && isspace(*kv))
200 if (*++kv == '\0')
201 return 1;
750d5587
AP
202 if ((p = strchr(kv, '=')) == NULL)
203 return 1;
204 off = p - kv;
2ddee136
RS
205 if ((kv = OPENSSL_strdup(kv)) == NULL)
206 return -1;
207
208 /* Skip trailing space before the equal sign. */
750d5587
AP
209 for (p = kv + off; p > kv; --p)
210 if (!isspace(p[-1]))
2ddee136
RS
211 break;
212 if (p == kv) {
213 OPENSSL_free(kv);
214 return 1;
215 }
216 *p = '\0';
217
750d5587 218 /* Finally have a clean "key"; see if it's there [by attempt to add it]. */
6ad957f1 219 p = (char *)lh_OPENSSL_STRING_insert(addexts, (OPENSSL_STRING *)kv);
1aeec3db 220 if (p != NULL) {
221 OPENSSL_free(p);
222 return 1;
223 } else if (lh_OPENSSL_STRING_error(addexts)) {
224 OPENSSL_free(kv);
750d5587 225 return -1;
2ddee136
RS
226 }
227
2ddee136
RS
228 return 0;
229}
230
7e1b7485 231int req_main(int argc, char **argv)
0f113f3e 232{
7e1b7485 233 ASN1_INTEGER *serial = NULL;
9d5aca65 234 BIO *out = NULL;
0f113f3e 235 ENGINE *e = NULL, *gen_eng = NULL;
6ad957f1 236 EVP_PKEY *pkey = NULL, *CAkey = NULL;
0f113f3e 237 EVP_PKEY_CTX *genctx = NULL;
2292c8e1 238 STACK_OF(OPENSSL_STRING) *pkeyopts = NULL, *sigopts = NULL, *vfyopts = NULL;
2ddee136 239 LHASH_OF(OPENSSL_STRING) *addexts = NULL;
6ad957f1 240 X509 *new_x509 = NULL, *CAcert = NULL;
7e1b7485 241 X509_REQ *req = NULL;
0f113f3e 242 const EVP_CIPHER *cipher = NULL;
0f113f3e 243 const EVP_MD *md_alg = NULL, *digest = NULL;
b65c5ec8 244 int ext_copy = EXT_COPY_UNSET;
bfa470a4 245 BIO *addext_bio = NULL;
6ad957f1
DDO
246 char *extensions = NULL;
247 const char *infile = NULL, *CAfile = NULL, *CAkeyfile = NULL;
d0190e11 248 char *outfile = NULL, *keyfile = NULL, *digestname = NULL;
7e1b7485 249 char *keyalgstr = NULL, *p, *prog, *passargin = NULL, *passargout = NULL;
ebc4815f
VD
250 char *passin = NULL, *passout = NULL;
251 char *nofree_passin = NULL, *nofree_passout = NULL;
ea9fd333
DDO
252 char *req_exts = NULL, *subj = NULL;
253 X509_NAME *fsubj = NULL;
cc01d217 254 char *template = default_config_file, *keyout = NULL;
7e1b7485
RS
255 const char *keyalg = NULL;
256 OPTION_CHOICE o;
6ad957f1
DDO
257 int days = UNSET_DAYS;
258 int ret = 1, gen_x509 = 0, i = 0, newreq = 0, verbose = 0;
259 int pkey_type = -1;
7e1b7485 260 int informat = FORMAT_PEM, outformat = FORMAT_PEM, keyform = FORMAT_PEM;
5a0991d0 261 int modulus = 0, multirdn = 1, verify = 0, noout = 0, text = 0;
ef898017 262 int noenc = 0, newhdr = 0, subject = 0, pubkey = 0, precert = 0;
6ad957f1 263 long newkey_len = -1;
b5c4209b 264 unsigned long chtype = MBSTRING_ASC, reqflag = 0;
d02b48c6 265
cf1b7d96 266#ifndef OPENSSL_NO_DES
0f113f3e 267 cipher = EVP_des_ede3_cbc();
d02b48c6 268#endif
7e1b7485
RS
269
270 prog = opt_init(argc, argv, req_options);
271 while ((o = opt_next()) != OPT_EOF) {
272 switch (o) {
273 case OPT_EOF:
274 case OPT_ERR:
275 opthelp:
276 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
277 goto end;
278 case OPT_HELP:
279 opt_help(req_options);
280 ret = 0;
281 goto end;
282 case OPT_INFORM:
283 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &informat))
284 goto opthelp;
285 break;
286 case OPT_OUTFORM:
287 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &outformat))
288 goto opthelp;
289 break;
7e1b7485 290 case OPT_ENGINE:
43db7aa2 291 e = setup_engine(opt_arg(), 0);
7e1b7485
RS
292 break;
293 case OPT_KEYGEN_ENGINE:
333b070e 294#ifndef OPENSSL_NO_ENGINE
6514dee7 295 gen_eng = setup_engine(opt_arg(), 0);
0f113f3e
MC
296 if (gen_eng == NULL) {
297 BIO_printf(bio_err, "Can't find keygen engine %s\n", *argv);
333b070e 298 goto opthelp;
0f113f3e 299 }
0b13e9f0 300#endif
333b070e 301 break;
7e1b7485
RS
302 case OPT_KEY:
303 keyfile = opt_arg();
304 break;
305 case OPT_PUBKEY:
0f113f3e 306 pubkey = 1;
7e1b7485
RS
307 break;
308 case OPT_NEW:
0f113f3e 309 newreq = 1;
7e1b7485
RS
310 break;
311 case OPT_CONFIG:
312 template = opt_arg();
313 break;
d462b5ff
RS
314 case OPT_SECTION:
315 section = opt_arg();
316 break;
7e1b7485 317 case OPT_KEYFORM:
43db7aa2 318 if (!opt_format(opt_arg(), OPT_FMT_ANY, &keyform))
7e1b7485
RS
319 goto opthelp;
320 break;
321 case OPT_IN:
322 infile = opt_arg();
323 break;
324 case OPT_OUT:
325 outfile = opt_arg();
326 break;
327 case OPT_KEYOUT:
328 keyout = opt_arg();
329 break;
330 case OPT_PASSIN:
331 passargin = opt_arg();
332 break;
333 case OPT_PASSOUT:
334 passargout = opt_arg();
335 break;
3ee1eac2
RS
336 case OPT_R_CASES:
337 if (!opt_rand(o))
338 goto end;
7e1b7485 339 break;
6bd4e3f2
P
340 case OPT_PROV_CASES:
341 if (!opt_provider(o))
342 goto end;
343 break;
7e1b7485
RS
344 case OPT_NEWKEY:
345 keyalg = opt_arg();
0f113f3e 346 newreq = 1;
7e1b7485
RS
347 break;
348 case OPT_PKEYOPT:
12a765a5 349 if (pkeyopts == NULL)
0f113f3e 350 pkeyopts = sk_OPENSSL_STRING_new_null();
12a765a5
RS
351 if (pkeyopts == NULL
352 || !sk_OPENSSL_STRING_push(pkeyopts, opt_arg()))
7e1b7485
RS
353 goto opthelp;
354 break;
355 case OPT_SIGOPT:
0f113f3e
MC
356 if (!sigopts)
357 sigopts = sk_OPENSSL_STRING_new_null();
7e1b7485
RS
358 if (!sigopts || !sk_OPENSSL_STRING_push(sigopts, opt_arg()))
359 goto opthelp;
360 break;
2292c8e1
RL
361 case OPT_VFYOPT:
362 if (!vfyopts)
363 vfyopts = sk_OPENSSL_STRING_new_null();
364 if (!vfyopts || !sk_OPENSSL_STRING_push(vfyopts, opt_arg()))
365 goto opthelp;
366 break;
7e1b7485 367 case OPT_BATCH:
0f113f3e 368 batch = 1;
7e1b7485
RS
369 break;
370 case OPT_NEWHDR:
0f113f3e 371 newhdr = 1;
7e1b7485
RS
372 break;
373 case OPT_MODULUS:
0f113f3e 374 modulus = 1;
7e1b7485
RS
375 break;
376 case OPT_VERIFY:
0f113f3e 377 verify = 1;
7e1b7485
RS
378 break;
379 case OPT_NODES:
ef898017
DDO
380 case OPT_NOENC:
381 noenc = 1;
7e1b7485
RS
382 break;
383 case OPT_NOOUT:
0f113f3e 384 noout = 1;
7e1b7485
RS
385 break;
386 case OPT_VERBOSE:
0f113f3e 387 verbose = 1;
7e1b7485
RS
388 break;
389 case OPT_UTF8:
0f113f3e 390 chtype = MBSTRING_UTF8;
7e1b7485
RS
391 break;
392 case OPT_NAMEOPT:
b5c4209b 393 if (!set_nameopt(opt_arg()))
7e1b7485
RS
394 goto opthelp;
395 break;
396 case OPT_REQOPT:
397 if (!set_cert_ex(&reqflag, opt_arg()))
398 goto opthelp;
399 break;
400 case OPT_TEXT:
0f113f3e 401 text = 1;
7e1b7485
RS
402 break;
403 case OPT_X509:
6ad957f1
DDO
404 gen_x509 = 1;
405 break;
406 case OPT_CA:
407 CAfile = opt_arg();
408 break;
409 case OPT_CAKEY:
410 CAkeyfile = opt_arg();
7e1b7485 411 break;
7e1b7485
RS
412 case OPT_DAYS:
413 days = atoi(opt_arg());
6ad957f1
DDO
414 if (days < -1) {
415 BIO_printf(bio_err, "%s: -days parameter arg must be >= -1\n",
416 prog);
417 goto end;
418 }
7e1b7485
RS
419 break;
420 case OPT_SET_SERIAL:
08f6ae5b 421 if (serial != NULL) {
efba7787 422 BIO_printf(bio_err, "Serial number supplied twice\n");
08f6ae5b
MC
423 goto opthelp;
424 }
7e1b7485
RS
425 serial = s2i_ASN1_INTEGER(NULL, opt_arg());
426 if (serial == NULL)
427 goto opthelp;
428 break;
429 case OPT_SUBJECT:
f1cece55 430 subject = 1;
29eca1c0
TH
431 break;
432 case OPT_SUBJ:
ea9fd333 433 subj = opt_arg();
7e1b7485
RS
434 break;
435 case OPT_MULTIVALUE_RDN:
5a0991d0 436 /* obsolete */
7e1b7485 437 break;
b65c5ec8
DDO
438 case OPT_COPY_EXTENSIONS:
439 if (!set_ext_copy(&ext_copy, opt_arg())) {
0ae8d4ca
DDO
440 BIO_printf(bio_err, "Invalid extension copy option: \"%s\"\n",
441 opt_arg());
b65c5ec8
DDO
442 goto end;
443 }
444 break;
bfa470a4 445 case OPT_ADDEXT:
2ddee136
RS
446 p = opt_arg();
447 if (addexts == NULL) {
448 addexts = lh_OPENSSL_STRING_new(ext_name_hash, ext_name_cmp);
bfa470a4 449 addext_bio = BIO_new(BIO_s_mem());
2ddee136
RS
450 if (addexts == NULL || addext_bio == NULL)
451 goto end;
bfa470a4 452 }
2ddee136 453 i = duplicated(addexts, p);
7c051ecc
DDO
454 if (i == 1) {
455 BIO_printf(bio_err, "Duplicate extension: %s\n", p);
2ddee136 456 goto opthelp;
7c051ecc
DDO
457 }
458 if (i < 0 || BIO_printf(addext_bio, "%s\n", p) < 0)
bfa470a4
RL
459 goto end;
460 break;
7e1b7485
RS
461 case OPT_EXTENSIONS:
462 extensions = opt_arg();
463 break;
464 case OPT_REQEXTS:
465 req_exts = opt_arg();
466 break;
b6486bf7 467 case OPT_PRECERT:
65b3dff7 468 newreq = precert = 1;
b6486bf7 469 break;
7e1b7485 470 case OPT_MD:
d0190e11 471 digestname = opt_unknown();
0f113f3e
MC
472 break;
473 }
0f113f3e 474 }
021410ea
RS
475
476 /* No extra arguments. */
7e1b7485 477 argc = opt_num_rest();
03358517
KR
478 if (argc != 0)
479 goto opthelp;
f1cece55 480
51e5df0e 481 app_RAND_load();
d0190e11
RS
482 if (digestname != NULL) {
483 if (!opt_md(digestname, &md_alg))
484 goto opthelp;
485 digest = md_alg;
486 }
487
b65c5ec8
DDO
488 if (!gen_x509) {
489 if (days != UNSET_DAYS)
490 BIO_printf(bio_err, "Ignoring -days without -x509; not generating a certificate\n");
491 if (ext_copy == EXT_COPY_NONE)
492 BIO_printf(bio_err, "Ignoring -copy_extensions 'none' when -x509 is not given\n");
493 }
6ad957f1 494 if (gen_x509 && infile == NULL)
888adbe0
TM
495 newreq = 1;
496
7e1b7485 497 if (!app_passwd(passargin, passargout, &passin, &passout)) {
0f113f3e
MC
498 BIO_printf(bio_err, "Error getting passwords\n");
499 goto end;
500 }
d02b48c6 501
15795943 502 if ((req_conf = app_load_config_verbose(template, verbose)) == NULL)
dd0139f4 503 goto end;
9d5aca65 504 if (addext_bio != NULL) {
bfa470a4
RL
505 if (verbose)
506 BIO_printf(bio_err,
7c051ecc 507 "Using additional configuration from -addext options\n");
dd0139f4 508 if ((addext_conf = app_load_config_bio(addext_bio, NULL)) == NULL)
509 goto end;
bfa470a4 510 }
c821defc 511 if (template != default_config_file && !app_load_modules(req_conf))
296f54ee
RL
512 goto end;
513
0f113f3e 514 if (req_conf != NULL) {
0f113f3e
MC
515 p = NCONF_get_string(req_conf, NULL, "oid_file");
516 if (p == NULL)
517 ERR_clear_error();
518 if (p != NULL) {
519 BIO *oid_bio;
520
521 oid_bio = BIO_new_file(p, "r");
522 if (oid_bio == NULL) {
6ad957f1
DDO
523 if (verbose) {
524 BIO_printf(bio_err,
525 "Problems opening '%s' for extra OIDs\n", p);
526 ERR_print_errors(bio_err);
527 }
0f113f3e
MC
528 } else {
529 OBJ_create_objects(oid_bio);
530 BIO_free(oid_bio);
531 }
532 }
533 }
7e1b7485 534 if (!add_oid_section(req_conf))
0f113f3e
MC
535 goto end;
536
537 if (md_alg == NULL) {
d462b5ff 538 p = NCONF_get_string(req_conf, section, "default_md");
2234212c 539 if (p == NULL) {
0f113f3e 540 ERR_clear_error();
2234212c 541 } else {
7e1b7485
RS
542 if (!opt_md(p, &md_alg))
543 goto opthelp;
544 digest = md_alg;
0f113f3e
MC
545 }
546 }
547
2234212c 548 if (extensions == NULL) {
d462b5ff 549 extensions = NCONF_get_string(req_conf, section, V3_EXTENSIONS);
2234212c 550 if (extensions == NULL)
0f113f3e
MC
551 ERR_clear_error();
552 }
2234212c 553 if (extensions != NULL) {
0f113f3e
MC
554 /* Check syntax of file */
555 X509V3_CTX ctx;
41e597a0 556
0f113f3e
MC
557 X509V3_set_ctx_test(&ctx);
558 X509V3_set_nconf(&ctx, req_conf);
559 if (!X509V3_EXT_add_nconf(req_conf, &ctx, extensions, NULL)) {
560 BIO_printf(bio_err,
6ad957f1
DDO
561 "Error checking x509 extension section %s\n",
562 extensions);
0f113f3e
MC
563 goto end;
564 }
565 }
bfa470a4
RL
566 if (addext_conf != NULL) {
567 /* Check syntax of command line extensions */
568 X509V3_CTX ctx;
41e597a0 569
bfa470a4
RL
570 X509V3_set_ctx_test(&ctx);
571 X509V3_set_nconf(&ctx, addext_conf);
572 if (!X509V3_EXT_add_nconf(addext_conf, &ctx, "default", NULL)) {
1a683b80 573 BIO_printf(bio_err, "Error checking extensions defined using -addext\n");
bfa470a4
RL
574 goto end;
575 }
576 }
0f113f3e 577
ebc4815f
VD
578 if (passin == NULL) {
579 passin = nofree_passin =
d462b5ff 580 NCONF_get_string(req_conf, section, "input_password");
ebc4815f 581 if (passin == NULL)
0f113f3e
MC
582 ERR_clear_error();
583 }
584
ebc4815f
VD
585 if (passout == NULL) {
586 passout = nofree_passout =
d462b5ff 587 NCONF_get_string(req_conf, section, "output_password");
ebc4815f 588 if (passout == NULL)
0f113f3e
MC
589 ERR_clear_error();
590 }
591
d462b5ff 592 p = NCONF_get_string(req_conf, section, STRING_MASK);
2234212c 593 if (p == NULL)
0f113f3e
MC
594 ERR_clear_error();
595
2234212c 596 if (p != NULL && !ASN1_STRING_set_default_mask_asc(p)) {
0f113f3e
MC
597 BIO_printf(bio_err, "Invalid global string mask setting %s\n", p);
598 goto end;
599 }
600
601 if (chtype != MBSTRING_UTF8) {
d462b5ff 602 p = NCONF_get_string(req_conf, section, UTF8_IN);
2234212c 603 if (p == NULL)
0f113f3e 604 ERR_clear_error();
86885c28 605 else if (strcmp(p, "yes") == 0)
0f113f3e
MC
606 chtype = MBSTRING_UTF8;
607 }
608
2234212c 609 if (req_exts == NULL) {
d462b5ff 610 req_exts = NCONF_get_string(req_conf, section, REQ_EXTENSIONS);
2234212c 611 if (req_exts == NULL)
0f113f3e
MC
612 ERR_clear_error();
613 }
2234212c 614 if (req_exts != NULL) {
0f113f3e
MC
615 /* Check syntax of file */
616 X509V3_CTX ctx;
41e597a0 617
0f113f3e
MC
618 X509V3_set_ctx_test(&ctx);
619 X509V3_set_nconf(&ctx, req_conf);
620 if (!X509V3_EXT_add_nconf(req_conf, &ctx, req_exts, NULL)) {
621 BIO_printf(bio_err,
1a683b80 622 "Error checking request extension section %s\n",
0f113f3e
MC
623 req_exts);
624 goto end;
625 }
626 }
d02b48c6 627
0f113f3e 628 if (keyfile != NULL) {
50eb2a50 629 pkey = load_key(keyfile, keyform, 0, passin, e, "private key");
01c12100 630 if (pkey == NULL)
0f113f3e 631 goto end;
01c12100 632 app_RAND_load_conf(req_conf, section);
0f113f3e
MC
633 }
634
6ad957f1 635 if (newreq && pkey == NULL) {
d462b5ff 636 app_RAND_load_conf(req_conf, section);
0f113f3e 637
6ad957f1
DDO
638 if (!NCONF_get_number(req_conf, section, BITS, &newkey_len)) {
639 newkey_len = DEFAULT_KEY_LENGTH;
0f113f3e
MC
640 }
641
2234212c 642 if (keyalg != NULL) {
6ad957f1 643 genctx = set_keygen_ctx(keyalg, &pkey_type, &newkey_len,
0f113f3e 644 &keyalgstr, gen_eng);
2234212c 645 if (genctx == NULL)
0f113f3e
MC
646 goto end;
647 }
648
6ad957f1 649 if (newkey_len < MIN_KEY_LENGTH
0f113f3e 650 && (pkey_type == EVP_PKEY_RSA || pkey_type == EVP_PKEY_DSA)) {
6ad957f1
DDO
651 BIO_printf(bio_err, "Private key length is too short,\n");
652 BIO_printf(bio_err, "it needs to be at least %d bits, not %ld.\n",
653 MIN_KEY_LENGTH, newkey_len);
0f113f3e
MC
654 goto end;
655 }
656
6ad957f1
DDO
657 if (pkey_type == EVP_PKEY_RSA
658 && newkey_len > OPENSSL_RSA_MAX_MODULUS_BITS)
0336df2f
GS
659 BIO_printf(bio_err,
660 "Warning: It is not recommended to use more than %d bit for RSA keys.\n"
661 " Your key size is %ld! Larger key size may behave not as expected.\n",
6ad957f1 662 OPENSSL_RSA_MAX_MODULUS_BITS, newkey_len);
0336df2f 663
ac52f42a 664#ifndef OPENSSL_NO_DSA
6ad957f1
DDO
665 if (pkey_type == EVP_PKEY_DSA
666 && newkey_len > OPENSSL_DSA_MAX_MODULUS_BITS)
0336df2f
GS
667 BIO_printf(bio_err,
668 "Warning: It is not recommended to use more than %d bit for DSA keys.\n"
669 " Your key size is %ld! Larger key size may behave not as expected.\n",
6ad957f1 670 OPENSSL_DSA_MAX_MODULUS_BITS, newkey_len);
ac52f42a 671#endif
0336df2f 672
2234212c 673 if (genctx == NULL) {
6ad957f1 674 genctx = set_keygen_ctx(NULL, &pkey_type, &newkey_len,
0f113f3e 675 &keyalgstr, gen_eng);
15795943 676 if (genctx == NULL)
0f113f3e
MC
677 goto end;
678 }
679
2234212c 680 if (pkeyopts != NULL) {
0f113f3e
MC
681 char *genopt;
682 for (i = 0; i < sk_OPENSSL_STRING_num(pkeyopts); i++) {
683 genopt = sk_OPENSSL_STRING_value(pkeyopts, i);
684 if (pkey_ctrl_string(genctx, genopt) <= 0) {
6ad957f1 685 BIO_printf(bio_err, "Key parameter error \"%s\"\n", genopt);
0f113f3e
MC
686 goto end;
687 }
688 }
689 }
690
57358a83
MC
691 if (pkey_type == EVP_PKEY_EC) {
692 BIO_printf(bio_err, "Generating an EC private key\n");
693 } else {
17147181 694 BIO_printf(bio_err, "Generating a %s private key\n", keyalgstr);
57358a83 695 }
0f113f3e
MC
696
697 EVP_PKEY_CTX_set_cb(genctx, genpkey_cb);
698 EVP_PKEY_CTX_set_app_data(genctx, bio_err);
699
700 if (EVP_PKEY_keygen(genctx, &pkey) <= 0) {
7c051ecc 701 BIO_puts(bio_err, "Error generating key\n");
0f113f3e
MC
702 goto end;
703 }
704
705 EVP_PKEY_CTX_free(genctx);
706 genctx = NULL;
707
0f113f3e 708 if (keyout == NULL) {
d462b5ff 709 keyout = NCONF_get_string(req_conf, section, KEYFILE);
0f113f3e
MC
710 if (keyout == NULL)
711 ERR_clear_error();
712 }
713
7e1b7485 714 if (keyout == NULL)
6ad957f1 715 BIO_printf(bio_err, "Writing new private key to stdout\n");
7e1b7485 716 else
6ad957f1
DDO
717 BIO_printf(bio_err, "Writing new private key to '%s'\n", keyout);
718 out = bio_open_owner(keyout, outformat, newreq);
7e1b7485
RS
719 if (out == NULL)
720 goto end;
0f113f3e 721
d462b5ff 722 p = NCONF_get_string(req_conf, section, "encrypt_rsa_key");
0f113f3e
MC
723 if (p == NULL) {
724 ERR_clear_error();
d462b5ff 725 p = NCONF_get_string(req_conf, section, "encrypt_key");
0f113f3e
MC
726 if (p == NULL)
727 ERR_clear_error();
728 }
729 if ((p != NULL) && (strcmp(p, "no") == 0))
730 cipher = NULL;
ef898017 731 if (noenc)
0f113f3e
MC
732 cipher = NULL;
733
734 i = 0;
735 loop:
6ad957f1 736 assert(newreq);
0f113f3e
MC
737 if (!PEM_write_bio_PrivateKey(out, pkey, cipher,
738 NULL, 0, NULL, passout)) {
739 if ((ERR_GET_REASON(ERR_peek_error()) ==
740 PEM_R_PROBLEMS_GETTING_PASSWORD) && (i < 3)) {
741 ERR_clear_error();
742 i++;
743 goto loop;
744 }
745 goto end;
746 }
cf89a80e 747 BIO_free(out);
21425195 748 out = NULL;
0f113f3e
MC
749 BIO_printf(bio_err, "-----\n");
750 }
751
ea9fd333
DDO
752 /*
753 * subj is expected to be in the format /type0=value0/type1=value1/type2=...
754 * where characters may be escaped by \
755 */
756 if (subj != NULL
757 && (fsubj = parse_name(subj, chtype, multirdn, "subject")) == NULL)
758 goto end;
759
0f113f3e 760 if (!newreq) {
9d5aca65
DO
761 req = load_csr(infile, informat, "X509 request");
762 if (req == NULL)
7e1b7485 763 goto end;
0f113f3e
MC
764 }
765
6ad957f1
DDO
766 if (CAkeyfile == NULL)
767 CAkeyfile = CAfile;
768 if (CAkeyfile != NULL) {
769 if (CAfile == NULL) {
770 BIO_printf(bio_err,
771 "Ignoring -CAkey option since no -CA option is given\n");
772 } else {
773 if ((CAkey = load_key(CAkeyfile, FORMAT_PEM,
774 0, passin, e, "issuer private key")) == NULL)
775 goto end;
776 }
777 }
778 if (CAfile != NULL) {
779 if (!gen_x509) {
780 BIO_printf(bio_err,
781 "Warning: Ignoring -CA option without -x509\n");
782 } else {
783 if (CAkeyfile == NULL) {
784 BIO_printf(bio_err,
785 "Need to give the -CAkey option if using -CA\n");
786 goto end;
787 }
788 if ((CAcert = load_cert_pass(CAfile, 1, passin,
789 "issuer certificate")) == NULL)
790 goto end;
791 if (!X509_check_private_key(CAcert, CAkey)) {
792 BIO_printf(bio_err,
793 "Issuer certificate and key do not match\n");
794 goto end;
795 }
796 }
797 }
798 if (newreq || gen_x509) {
799 if (pkey == NULL /* can happen only if !newreq */) {
41e597a0 800 BIO_printf(bio_err, "Must provide a signature key using -key\n");
0f113f3e
MC
801 goto end;
802 }
803
804 if (req == NULL) {
805 req = X509_REQ_new();
806 if (req == NULL) {
807 goto end;
808 }
809
ea9fd333 810 if (!make_REQ(req, pkey, fsubj, multirdn, !gen_x509, chtype)){
6ad957f1 811 BIO_printf(bio_err, "Error making certificate request\n");
0f113f3e
MC
812 goto end;
813 }
814 }
6ad957f1 815 if (gen_x509) {
ea9fd333 816 EVP_PKEY *pub_key = X509_REQ_get0_pubkey(req);
0f113f3e 817 X509V3_CTX ext_ctx;
6ad957f1
DDO
818 X509_NAME *issuer = CAcert != NULL ? X509_get_subject_name(CAcert) :
819 X509_REQ_get_subject_name(req);
41e597a0
DDO
820 X509_NAME *n_subj = fsubj != NULL ? fsubj :
821 X509_REQ_get_subject_name(req);
6ad957f1
DDO
822
823 if ((new_x509 = X509_new_ex(app_get0_libctx(),
824 app_get0_propq())) == NULL)
0f113f3e
MC
825 goto end;
826
2234212c 827 if (serial != NULL) {
6ad957f1 828 if (!X509_set_serialNumber(new_x509, serial))
0f113f3e
MC
829 goto end;
830 } else {
6ad957f1 831 if (!rand_serial(NULL, X509_get_serialNumber(new_x509)))
0f113f3e
MC
832 goto end;
833 }
834
6ad957f1 835 if (!X509_set_issuer_name(new_x509, issuer))
0f113f3e 836 goto end;
6ad957f1
DDO
837 if (days == UNSET_DAYS) {
838 days = DEFAULT_DAYS;
b1c05a50 839 }
6ad957f1 840 if (!set_cert_times(new_x509, NULL, NULL, days))
0f113f3e 841 goto end;
ea9fd333 842 if (!X509_set_subject_name(new_x509, n_subj))
0f113f3e 843 goto end;
ea9fd333 844 if (!pub_key || !X509_set_pubkey(new_x509, pub_key))
0f113f3e 845 goto end;
0ae8d4ca 846 if (ext_copy == EXT_COPY_UNSET) {
b65c5ec8 847 BIO_printf(bio_err, "Warning: No -copy_extensions given; ignoring any extensions in the request\n");
0ae8d4ca 848 } else if (!copy_extensions(new_x509, req, ext_copy)) {
b65c5ec8
DDO
849 BIO_printf(bio_err, "Error copying extensions from request\n");
850 goto end;
851 }
0f113f3e
MC
852
853 /* Set up V3 context struct */
6ad957f1
DDO
854 X509V3_set_ctx(&ext_ctx, CAcert != NULL ? CAcert : new_x509,
855 new_x509, NULL, NULL, X509V3_CTX_REPLACE);
41e597a0
DDO
856 if (CAcert == NULL) { /* self-issued, possibly self-signed */
857 if (!X509V3_set_issuer_pkey(&ext_ctx, pkey)) /* prepare right AKID */
858 goto end;
859 ERR_set_mark();
860 if (!X509_check_private_key(new_x509, pkey))
861 BIO_printf(bio_err,
862 "Warning: Signature key and public key of cert do not match\n");
863 ERR_pop_to_mark();
864 }
0f113f3e
MC
865 X509V3_set_nconf(&ext_ctx, req_conf);
866
867 /* Add extensions */
6ad957f1
DDO
868 if (extensions != NULL
869 && !X509V3_EXT_add_nconf(req_conf, &ext_ctx, extensions,
870 new_x509)) {
1a683b80 871 BIO_printf(bio_err, "Error adding x509 extensions from section %s\n",
0f113f3e
MC
872 extensions);
873 goto end;
874 }
bfa470a4
RL
875 if (addext_conf != NULL
876 && !X509V3_EXT_add_nconf(addext_conf, &ext_ctx, "default",
6ad957f1 877 new_x509)) {
1a683b80 878 BIO_printf(bio_err, "Error adding extensions defined via -addext\n");
bfa470a4
RL
879 goto end;
880 }
0f113f3e 881
b6486bf7
RP
882 /* If a pre-cert was requested, we need to add a poison extension */
883 if (precert) {
6ad957f1
DDO
884 if (X509_add1_ext_i2d(new_x509, NID_ct_precert_poison,
885 NULL, 1, 0) != 1) {
b6486bf7
RP
886 BIO_printf(bio_err, "Error adding poison extension\n");
887 goto end;
888 }
889 }
890
6ad957f1
DDO
891 i = do_X509_sign(new_x509, CAcert != NULL ? CAkey : pkey,
892 digest, sigopts, &ext_ctx);
15795943 893 if (!i)
0f113f3e 894 goto end;
0f113f3e
MC
895 } else {
896 X509V3_CTX ext_ctx;
897
898 /* Set up V3 context struct */
0f113f3e
MC
899 X509V3_set_ctx(&ext_ctx, NULL, NULL, req, NULL, 0);
900 X509V3_set_nconf(&ext_ctx, req_conf);
901
902 /* Add extensions */
2234212c
PY
903 if (req_exts != NULL
904 && !X509V3_EXT_REQ_add_nconf(req_conf, &ext_ctx,
905 req_exts, req)) {
1a683b80 906 BIO_printf(bio_err, "Error adding request extensions from section %s\n",
0f113f3e
MC
907 req_exts);
908 goto end;
909 }
bfa470a4
RL
910 if (addext_conf != NULL
911 && !X509V3_EXT_REQ_add_nconf(addext_conf, &ext_ctx, "default",
912 req)) {
1a683b80 913 BIO_printf(bio_err, "Error adding extensions defined via -addext\n");
bfa470a4
RL
914 goto end;
915 }
7e1b7485 916 i = do_X509_REQ_sign(req, pkey, digest, sigopts);
15795943 917 if (!i)
0f113f3e 918 goto end;
0f113f3e
MC
919 }
920 }
921
ea9fd333 922 if (subj != NULL && !newreq && !gen_x509) {
0f113f3e 923 if (verbose) {
46a11faf
DDO
924 BIO_printf(out, "Modifying subject of certificate request\n");
925 print_name(out, "Old subject=", X509_REQ_get_subject_name(req));
0f113f3e
MC
926 }
927
ea9fd333 928 if (!X509_REQ_set_subject_name(req, fsubj)) {
6ad957f1 929 BIO_printf(bio_err, "Error modifying subject of certificate request\n");
0f113f3e
MC
930 goto end;
931 }
932
0f113f3e 933 if (verbose) {
46a11faf 934 print_name(out, "New subject=", X509_REQ_get_subject_name(req));
0f113f3e
MC
935 }
936 }
937
04a1b3fa 938 if (verify) {
173f613b 939 EVP_PKEY *tpubkey = pkey;
0f113f3e 940
173f613b
F
941 if (tpubkey == NULL) {
942 tpubkey = X509_REQ_get0_pubkey(req);
943 if (tpubkey == NULL)
0f113f3e
MC
944 goto end;
945 }
946
2292c8e1 947 i = do_X509_REQ_verify(req, tpubkey, vfyopts);
0f113f3e
MC
948
949 if (i < 0) {
950 goto end;
951 } else if (i == 0) {
6ad957f1 952 BIO_printf(bio_err, "Certificate request self-signature verify failure\n");
0f113f3e 953 ERR_print_errors(bio_err);
6ad957f1
DDO
954 } else { /* i > 0 */
955 BIO_printf(bio_err, "Certificate request self-signature verify OK\n");
2234212c 956 }
0f113f3e
MC
957 }
958
959 if (noout && !text && !modulus && !subject && !pubkey) {
7e1b7485 960 ret = 0;
0f113f3e
MC
961 goto end;
962 }
963
7e1b7485
RS
964 out = bio_open_default(outfile,
965 keyout != NULL && outfile != NULL &&
bdd58d98
RL
966 strcmp(keyout, outfile) == 0 ? 'a' : 'w',
967 outformat);
7e1b7485
RS
968 if (out == NULL)
969 goto end;
0f113f3e
MC
970
971 if (pubkey) {
1c72f70d
F
972 EVP_PKEY *tpubkey = X509_REQ_get0_pubkey(req);
973
0f113f3e
MC
974 if (tpubkey == NULL) {
975 BIO_printf(bio_err, "Error getting public key\n");
0f113f3e
MC
976 goto end;
977 }
978 PEM_write_bio_PUBKEY(out, tpubkey);
0f113f3e
MC
979 }
980
981 if (text) {
6ad957f1
DDO
982 if (gen_x509)
983 ret = X509_print_ex(out, new_x509, get_nameopt(), reqflag);
0f113f3e 984 else
9fd6f7d1
DB
985 ret = X509_REQ_print_ex(out, req, get_nameopt(), reqflag);
986
987 if (ret == 0) {
6ad957f1
DDO
988 if (gen_x509)
989 BIO_printf(bio_err, "Error printing certificate\n");
9fd6f7d1 990 else
6ad957f1 991 BIO_printf(bio_err, "Error printing certificate request\n");
9fd6f7d1
DB
992 goto end;
993 }
0f113f3e
MC
994 }
995
996 if (subject) {
46a11faf
DDO
997 print_name(out, "subject=", gen_x509
998 ? X509_get_subject_name(new_x509)
999 : X509_REQ_get_subject_name(req));
0f113f3e
MC
1000 }
1001
1002 if (modulus) {
1003 EVP_PKEY *tpubkey;
1004
6ad957f1
DDO
1005 if (gen_x509)
1006 tpubkey = X509_get0_pubkey(new_x509);
0f113f3e 1007 else
1c72f70d 1008 tpubkey = X509_REQ_get0_pubkey(req);
0f113f3e 1009 if (tpubkey == NULL) {
6ad957f1 1010 fprintf(stdout, "Modulus is unavailable\n");
0f113f3e
MC
1011 goto end;
1012 }
1013 fprintf(stdout, "Modulus=");
d7e498ac
RL
1014 if (EVP_PKEY_is_a(tpubkey, "RSA")) {
1015 BIGNUM *n;
1016
1017 /* Every RSA key has an 'n' */
1018 EVP_PKEY_get_bn_param(pkey, "n", &n);
9862e9aa 1019 BN_print(out, n);
d7e498ac 1020 BN_free(n);
3a1ee3c1 1021 } else {
0f113f3e 1022 fprintf(stdout, "Wrong Algorithm type");
3a1ee3c1 1023 }
0f113f3e
MC
1024 fprintf(stdout, "\n");
1025 }
1026
6ad957f1 1027 if (!noout && !gen_x509) {
0f113f3e
MC
1028 if (outformat == FORMAT_ASN1)
1029 i = i2d_X509_REQ_bio(out, req);
7e1b7485
RS
1030 else if (newhdr)
1031 i = PEM_write_bio_X509_REQ_NEW(out, req);
1032 else
1033 i = PEM_write_bio_X509_REQ(out, req);
0f113f3e 1034 if (!i) {
6ad957f1 1035 BIO_printf(bio_err, "Unable to write certificate request\n");
0f113f3e
MC
1036 goto end;
1037 }
1038 }
6ad957f1 1039 if (!noout && gen_x509 && new_x509 != NULL) {
0f113f3e 1040 if (outformat == FORMAT_ASN1)
6ad957f1 1041 i = i2d_X509_bio(out, new_x509);
7e1b7485 1042 else
6ad957f1 1043 i = PEM_write_bio_X509(out, new_x509);
0f113f3e 1044 if (!i) {
6ad957f1 1045 BIO_printf(bio_err, "Unable to write X509 certificate\n");
0f113f3e
MC
1046 goto end;
1047 }
1048 }
7e1b7485 1049 ret = 0;
0f113f3e 1050 end:
7e1b7485 1051 if (ret) {
0f113f3e
MC
1052 ERR_print_errors(bio_err);
1053 }
cc01d217 1054 NCONF_free(req_conf);
f9964863 1055 NCONF_free(addext_conf);
bfa470a4 1056 BIO_free(addext_bio);
0f113f3e
MC
1057 BIO_free_all(out);
1058 EVP_PKEY_free(pkey);
c5ba2d99 1059 EVP_PKEY_CTX_free(genctx);
25aaa98a
RS
1060 sk_OPENSSL_STRING_free(pkeyopts);
1061 sk_OPENSSL_STRING_free(sigopts);
2292c8e1 1062 sk_OPENSSL_STRING_free(vfyopts);
2ddee136
RS
1063 lh_OPENSSL_STRING_doall(addexts, exts_cleanup);
1064 lh_OPENSSL_STRING_free(addexts);
01b8b3c7 1065#ifndef OPENSSL_NO_ENGINE
6514dee7 1066 release_engine(gen_eng);
01b8b3c7 1067#endif
b548a1f1 1068 OPENSSL_free(keyalgstr);
0f113f3e 1069 X509_REQ_free(req);
ea9fd333 1070 X509_NAME_free(fsubj);
6ad957f1
DDO
1071 X509_free(new_x509);
1072 X509_free(CAcert);
1073 EVP_PKEY_free(CAkey);
0f113f3e 1074 ASN1_INTEGER_free(serial);
dd1abd44 1075 release_engine(e);
ebc4815f
VD
1076 if (passin != nofree_passin)
1077 OPENSSL_free(passin);
1078 if (passout != nofree_passout)
1079 OPENSSL_free(passout);
9a0953ed 1080 return ret;
0f113f3e 1081}
d02b48c6 1082
ea9fd333
DDO
1083static int make_REQ(X509_REQ *req, EVP_PKEY *pkey, X509_NAME *fsubj,
1084 int multirdn, int attribs, unsigned long chtype)
0f113f3e
MC
1085{
1086 int ret = 0, i;
1087 char no_prompt = 0;
15795943 1088 STACK_OF(CONF_VALUE) *dn_sk = NULL, *attr_sk = NULL;
0f113f3e
MC
1089 char *tmp, *dn_sect, *attr_sect;
1090
d462b5ff 1091 tmp = NCONF_get_string(req_conf, section, PROMPT);
0f113f3e
MC
1092 if (tmp == NULL)
1093 ERR_clear_error();
86885c28 1094 if ((tmp != NULL) && strcmp(tmp, "no") == 0)
0f113f3e
MC
1095 no_prompt = 1;
1096
d462b5ff 1097 dn_sect = NCONF_get_string(req_conf, section, DISTINGUISHED_NAME);
0f113f3e 1098 if (dn_sect == NULL) {
15795943
DDO
1099 ERR_clear_error();
1100 } else {
1101 dn_sk = NCONF_get_section(req_conf, dn_sect);
1102 if (dn_sk == NULL) {
6ad957f1 1103 BIO_printf(bio_err, "Unable to get '%s' section\n", dn_sect);
15795943
DDO
1104 goto err;
1105 }
0f113f3e
MC
1106 }
1107
d462b5ff 1108 attr_sect = NCONF_get_string(req_conf, section, ATTRIBUTES);
0f113f3e
MC
1109 if (attr_sect == NULL) {
1110 ERR_clear_error();
0f113f3e
MC
1111 } else {
1112 attr_sk = NCONF_get_section(req_conf, attr_sect);
1113 if (attr_sk == NULL) {
6ad957f1 1114 BIO_printf(bio_err, "Unable to get '%s' section\n", attr_sect);
0f113f3e
MC
1115 goto err;
1116 }
1117 }
1118
0ae8d4ca 1119 if (!X509_REQ_set_version(req, 0L)) /* so far there is only version 1 */
6ad957f1 1120 goto err;
0f113f3e 1121
ea9fd333
DDO
1122 if (fsubj != NULL)
1123 i = X509_REQ_set_subject_name(req, fsubj);
0f113f3e
MC
1124 else if (no_prompt)
1125 i = auto_info(req, dn_sk, attr_sk, attribs, chtype);
1126 else
1127 i = prompt_info(req, dn_sk, dn_sect, attr_sk, attr_sect, attribs,
1128 chtype);
1129 if (!i)
1130 goto err;
1131
1132 if (!X509_REQ_set_pubkey(req, pkey))
1133 goto err;
1134
1135 ret = 1;
1136 err:
9a0953ed 1137 return ret;
0f113f3e 1138}
d02b48c6 1139
b38f9f66 1140static int prompt_info(X509_REQ *req,
cc696296
F
1141 STACK_OF(CONF_VALUE) *dn_sk, const char *dn_sect,
1142 STACK_OF(CONF_VALUE) *attr_sk, const char *attr_sect,
0f113f3e
MC
1143 int attribs, unsigned long chtype)
1144{
1145 int i;
1146 char *p, *q;
1147 char buf[100];
1148 int nid, mval;
1149 long n_min, n_max;
1150 char *type, *value;
1151 const char *def;
1152 CONF_VALUE *v;
8cc86b81 1153 X509_NAME *subj = X509_REQ_get_subject_name(req);
0f113f3e
MC
1154
1155 if (!batch) {
1156 BIO_printf(bio_err,
1157 "You are about to be asked to enter information that will be incorporated\n");
1158 BIO_printf(bio_err, "into your certificate request.\n");
1159 BIO_printf(bio_err,
1160 "What you are about to enter is what is called a Distinguished Name or a DN.\n");
1161 BIO_printf(bio_err,
1162 "There are quite a few fields but you can leave some blank\n");
1163 BIO_printf(bio_err,
1164 "For some fields there will be a default value,\n");
1165 BIO_printf(bio_err,
1166 "If you enter '.', the field will be left blank.\n");
1167 BIO_printf(bio_err, "-----\n");
1168 }
1169
1170 if (sk_CONF_VALUE_num(dn_sk)) {
1171 i = -1;
2234212c 1172 start:
6ad957f1 1173 for (;;) {
0f113f3e
MC
1174 i++;
1175 if (sk_CONF_VALUE_num(dn_sk) <= i)
1176 break;
1177
1178 v = sk_CONF_VALUE_value(dn_sk, i);
1179 p = q = NULL;
1180 type = v->name;
1181 if (!check_end(type, "_min") || !check_end(type, "_max") ||
1182 !check_end(type, "_default") || !check_end(type, "_value"))
1183 continue;
1184 /*
1185 * Skip past any leading X. X: X, etc to allow for multiple
1186 * instances
1187 */
1188 for (p = v->name; *p; p++)
1189 if ((*p == ':') || (*p == ',') || (*p == '.')) {
1190 p++;
1191 if (*p)
1192 type = p;
1193 break;
1194 }
1195 if (*type == '+') {
1196 mval = -1;
1197 type++;
2234212c 1198 } else {
0f113f3e 1199 mval = 0;
2234212c 1200 }
0f113f3e
MC
1201 /* If OBJ not recognised ignore it */
1202 if ((nid = OBJ_txt2nid(type)) == NID_undef)
1203 goto start;
9a0953ed 1204 if (!join(buf, sizeof(buf), v->name, "_default", "Name"))
0f113f3e 1205 return 0;
0f113f3e
MC
1206 if ((def = NCONF_get_string(req_conf, dn_sect, buf)) == NULL) {
1207 ERR_clear_error();
1208 def = "";
1209 }
1210
9a0953ed
P
1211 if (!join(buf, sizeof(buf), v->name, "_value", "Name"))
1212 return 0;
0f113f3e
MC
1213 if ((value = NCONF_get_string(req_conf, dn_sect, buf)) == NULL) {
1214 ERR_clear_error();
1215 value = NULL;
1216 }
1217
9a0953ed
P
1218 if (!join(buf, sizeof(buf), v->name, "_min", "Name"))
1219 return 0;
0f113f3e
MC
1220 if (!NCONF_get_number(req_conf, dn_sect, buf, &n_min)) {
1221 ERR_clear_error();
1222 n_min = -1;
1223 }
1224
9a0953ed
P
1225 if (!join(buf, sizeof(buf), v->name, "_max", "Name"))
1226 return 0;
0f113f3e
MC
1227 if (!NCONF_get_number(req_conf, dn_sect, buf, &n_max)) {
1228 ERR_clear_error();
1229 n_max = -1;
1230 }
1231
1232 if (!add_DN_object(subj, v->value, def, value, nid,
1233 n_min, n_max, chtype, mval))
1234 return 0;
1235 }
1236 if (X509_NAME_entry_count(subj) == 0) {
6ad957f1 1237 BIO_printf(bio_err, "Error: No objects specified in config file\n");
0f113f3e
MC
1238 return 0;
1239 }
1240
1241 if (attribs) {
1242 if ((attr_sk != NULL) && (sk_CONF_VALUE_num(attr_sk) > 0)
1243 && (!batch)) {
1244 BIO_printf(bio_err,
1245 "\nPlease enter the following 'extra' attributes\n");
1246 BIO_printf(bio_err,
1247 "to be sent with your certificate request\n");
1248 }
1249
1250 i = -1;
2234212c 1251 start2:
6ad957f1 1252 for (;;) {
0f113f3e
MC
1253 i++;
1254 if ((attr_sk == NULL) || (sk_CONF_VALUE_num(attr_sk) <= i))
1255 break;
1256
1257 v = sk_CONF_VALUE_value(attr_sk, i);
1258 type = v->name;
1259 if ((nid = OBJ_txt2nid(type)) == NID_undef)
1260 goto start2;
1261
9a0953ed 1262 if (!join(buf, sizeof(buf), type, "_default", "Name"))
0f113f3e 1263 return 0;
0f113f3e
MC
1264 if ((def = NCONF_get_string(req_conf, attr_sect, buf))
1265 == NULL) {
1266 ERR_clear_error();
1267 def = "";
1268 }
1269
9a0953ed
P
1270 if (!join(buf, sizeof(buf), type, "_value", "Name"))
1271 return 0;
0f113f3e
MC
1272 if ((value = NCONF_get_string(req_conf, attr_sect, buf))
1273 == NULL) {
1274 ERR_clear_error();
1275 value = NULL;
1276 }
1277
6ad957f1 1278 if (!join(buf, sizeof(buf), type, "_min", "Name"))
9a0953ed 1279 return 0;
0f113f3e
MC
1280 if (!NCONF_get_number(req_conf, attr_sect, buf, &n_min)) {
1281 ERR_clear_error();
1282 n_min = -1;
1283 }
1284
9a0953ed
P
1285 if (!join(buf, sizeof(buf), type, "_max", "Name"))
1286 return 0;
0f113f3e
MC
1287 if (!NCONF_get_number(req_conf, attr_sect, buf, &n_max)) {
1288 ERR_clear_error();
1289 n_max = -1;
1290 }
1291
1292 if (!add_attribute_object(req,
1293 v->value, def, value, nid, n_min,
1294 n_max, chtype))
1295 return 0;
1296 }
1297 }
1298 } else {
1299 BIO_printf(bio_err, "No template, please set one up.\n");
1300 return 0;
1301 }
1302
1303 return 1;
1304
1305}
b38f9f66
DSH
1306
1307static int auto_info(X509_REQ *req, STACK_OF(CONF_VALUE) *dn_sk,
0f113f3e
MC
1308 STACK_OF(CONF_VALUE) *attr_sk, int attribs,
1309 unsigned long chtype)
1310{
b5292f7b 1311 int i, spec_char, plus_char;
0f113f3e
MC
1312 char *p, *q;
1313 char *type;
1314 CONF_VALUE *v;
1315 X509_NAME *subj;
1316
1317 subj = X509_REQ_get_subject_name(req);
1318
1319 for (i = 0; i < sk_CONF_VALUE_num(dn_sk); i++) {
1320 int mval;
1321 v = sk_CONF_VALUE_value(dn_sk, i);
1322 p = q = NULL;
1323 type = v->name;
1324 /*
1325 * Skip past any leading X. X: X, etc to allow for multiple instances
1326 */
b5292f7b 1327 for (p = v->name; *p; p++) {
97d8e82c 1328#ifndef CHARSET_EBCDIC
6ad957f1 1329 spec_char = (*p == ':' || *p == ',' || *p == '.');
97d8e82c 1330#else
6ad957f1
DDO
1331 spec_char = (*p == os_toascii[':'] || *p == os_toascii[',']
1332 || *p == os_toascii['.']);
97d8e82c 1333#endif
b5292f7b 1334 if (spec_char) {
0f113f3e
MC
1335 p++;
1336 if (*p)
1337 type = p;
1338 break;
1339 }
b5292f7b 1340 }
1a15c899 1341#ifndef CHARSET_EBCDIC
14d3c0dd 1342 plus_char = (*type == '+');
1a15c899 1343#else
14d3c0dd 1344 plus_char = (*type == os_toascii['+']);
1a15c899 1345#endif
b5292f7b 1346 if (plus_char) {
14d3c0dd 1347 type++;
0f113f3e 1348 mval = -1;
2234212c 1349 } else {
0f113f3e 1350 mval = 0;
2234212c 1351 }
0f113f3e
MC
1352 if (!X509_NAME_add_entry_by_txt(subj, type, chtype,
1353 (unsigned char *)v->value, -1, -1,
1354 mval))
1355 return 0;
1356
1357 }
1358
1359 if (!X509_NAME_entry_count(subj)) {
6ad957f1 1360 BIO_printf(bio_err, "Error: No objects specified in config file\n");
0f113f3e
MC
1361 return 0;
1362 }
1363 if (attribs) {
1364 for (i = 0; i < sk_CONF_VALUE_num(attr_sk); i++) {
1365 v = sk_CONF_VALUE_value(attr_sk, i);
1366 if (!X509_REQ_add1_attr_by_txt(req, v->name, chtype,
1367 (unsigned char *)v->value, -1))
1368 return 0;
1369 }
1370 }
1371 return 1;
1372}
1373
1374static int add_DN_object(X509_NAME *n, char *text, const char *def,
1375 char *value, int nid, int n_min, int n_max,
1376 unsigned long chtype, int mval)
1377{
69b15002 1378 int ret = 0;
68b00c23 1379 char buf[1024];
0f113f3e 1380
69b15002
KT
1381 ret = build_data(text, def, value, n_min, n_max, buf, sizeof(buf),
1382 "DN value", "DN default");
1383 if ((ret == 0) || (ret == 1))
1384 return ret;
1385 ret = 1;
0f113f3e
MC
1386
1387 if (!X509_NAME_add_entry_by_NID(n, nid, chtype,
1388 (unsigned char *)buf, -1, -1, mval))
69b15002
KT
1389 ret = 0;
1390
9a0953ed 1391 return ret;
0f113f3e 1392}
d02b48c6 1393
7d727231 1394static int add_attribute_object(X509_REQ *req, char *text, const char *def,
0f113f3e
MC
1395 char *value, int nid, int n_min,
1396 int n_max, unsigned long chtype)
1397{
69b15002
KT
1398 int ret = 0;
1399 char buf[1024];
1400
1401 ret = build_data(text, def, value, n_min, n_max, buf, sizeof(buf),
1402 "Attribute value", "Attribute default");
1403 if ((ret == 0) || (ret == 1))
1404 return ret;
1405 ret = 1;
1406
1407 if (!X509_REQ_add1_attr_by_NID(req, nid, chtype,
1408 (unsigned char *)buf, -1)) {
1409 BIO_printf(bio_err, "Error adding attribute\n");
1410 ERR_print_errors(bio_err);
1411 ret = 0;
1412 }
1413
1414 return ret;
1415}
0f113f3e 1416
6ad957f1
DDO
1417static int build_data(char *text, const char *def, char *value,
1418 int n_min, int n_max, char *buf, const int buf_size,
1419 const char *desc1, const char *desc2)
69b15002
KT
1420{
1421 int i;
0f113f3e
MC
1422 start:
1423 if (!batch)
1424 BIO_printf(bio_err, "%s [%s]:", text, def);
1425 (void)BIO_flush(bio_err);
1426 if (value != NULL) {
69b15002 1427 if (!join(buf, buf_size, value, "\n", desc1))
9a0953ed 1428 return 0;
0f113f3e
MC
1429 BIO_printf(bio_err, "%s\n", value);
1430 } else {
1431 buf[0] = '\0';
1432 if (!batch) {
69b15002 1433 if (!fgets(buf, buf_size, stdin))
0f113f3e
MC
1434 return 0;
1435 } else {
1436 buf[0] = '\n';
1437 buf[1] = '\0';
1438 }
1439 }
1440
1441 if (buf[0] == '\0')
2234212c
PY
1442 return 0;
1443 if (buf[0] == '\n') {
0f113f3e 1444 if ((def == NULL) || (def[0] == '\0'))
2234212c 1445 return 1;
69b15002 1446 if (!join(buf, buf_size, def, "\n", desc2))
9a0953ed 1447 return 0;
2234212c
PY
1448 } else if ((buf[0] == '.') && (buf[1] == '\n')) {
1449 return 1;
1450 }
0f113f3e
MC
1451
1452 i = strlen(buf);
1453 if (buf[i - 1] != '\n') {
6ad957f1 1454 BIO_printf(bio_err, "Missing newline at end of input\n");
2234212c 1455 return 0;
0f113f3e
MC
1456 }
1457 buf[--i] = '\0';
97d8e82c 1458#ifdef CHARSET_EBCDIC
0f113f3e 1459 ebcdic2ascii(buf, buf, i);
97d8e82c 1460#endif
0f113f3e
MC
1461 if (!req_check_len(i, n_min, n_max)) {
1462 if (batch || value)
1463 return 0;
1464 goto start;
1465 }
69b15002 1466 return 2;
0f113f3e 1467}
d02b48c6 1468
b7a26e6d 1469static int req_check_len(int len, int n_min, int n_max)
0f113f3e 1470{
6ad957f1 1471 if (n_min > 0 && len < n_min) {
0f113f3e 1472 BIO_printf(bio_err,
6ad957f1 1473 "String too short, must be at least %d bytes long\n", n_min);
9a0953ed 1474 return 0;
0f113f3e 1475 }
6ad957f1 1476 if (n_max >= 0 && len > n_max) {
0f113f3e 1477 BIO_printf(bio_err,
6ad957f1 1478 "String too long, must be at most %d bytes long\n", n_max);
9a0953ed 1479 return 0;
0f113f3e 1480 }
9a0953ed 1481 return 1;
0f113f3e 1482}
a43aa73e
DSH
1483
1484/* Check if the end of a string matches 'end' */
7d727231 1485static int check_end(const char *str, const char *end)
a43aa73e 1486{
9a0953ed 1487 size_t elen, slen;
0f113f3e 1488 const char *tmp;
9a0953ed 1489
0f113f3e
MC
1490 elen = strlen(end);
1491 slen = strlen(str);
1492 if (elen > slen)
1493 return 1;
1494 tmp = str + slen - elen;
1495 return strcmp(tmp, end);
a43aa73e 1496}
959e8dfe 1497
9a0953ed
P
1498/*
1499 * Merge the two strings together into the result buffer checking for
44e69951 1500 * overflow and producing an error message if there is.
9a0953ed
P
1501 */
1502static int join(char buf[], size_t buf_size, const char *name,
1503 const char *tail, const char *desc)
1504{
1505 const size_t name_len = strlen(name), tail_len = strlen(tail);
1506
1507 if (name_len + tail_len + 1 > buf_size) {
1508 BIO_printf(bio_err, "%s '%s' too long\n", desc, name);
1509 return 0;
1510 }
1511 memcpy(buf, name, name_len);
1512 memcpy(buf + name_len, tail, tail_len + 1);
1513 return 1;
1514}
1515
7e1b7485 1516static EVP_PKEY_CTX *set_keygen_ctx(const char *gstr,
0f113f3e
MC
1517 int *pkey_type, long *pkeylen,
1518 char **palgnam, ENGINE *keygen_engine)
1519{
1520 EVP_PKEY_CTX *gctx = NULL;
1521 EVP_PKEY *param = NULL;
1522 long keylen = -1;
1523 BIO *pbio = NULL;
1524 const char *paramfile = NULL;
1525
1526 if (gstr == NULL) {
1527 *pkey_type = EVP_PKEY_RSA;
1528 keylen = *pkeylen;
1529 } else if (gstr[0] >= '0' && gstr[0] <= '9') {
1530 *pkey_type = EVP_PKEY_RSA;
1531 keylen = atol(gstr);
1532 *pkeylen = keylen;
2234212c 1533 } else if (strncmp(gstr, "param:", 6) == 0) {
0f113f3e 1534 paramfile = gstr + 6;
2234212c 1535 } else {
0f113f3e
MC
1536 const char *p = strchr(gstr, ':');
1537 int len;
1538 ENGINE *tmpeng;
1539 const EVP_PKEY_ASN1_METHOD *ameth;
1540
2234212c 1541 if (p != NULL)
0f113f3e
MC
1542 len = p - gstr;
1543 else
1544 len = strlen(gstr);
1545 /*
1546 * The lookup of a the string will cover all engines so keep a note
1547 * of the implementation.
1548 */
1549
1550 ameth = EVP_PKEY_asn1_find_str(&tmpeng, gstr, len);
1551
2234212c 1552 if (ameth == NULL) {
7e1b7485 1553 BIO_printf(bio_err, "Unknown algorithm %.*s\n", len, gstr);
0f113f3e
MC
1554 return NULL;
1555 }
1556
1557 EVP_PKEY_asn1_get0_info(NULL, pkey_type, NULL, NULL, NULL, ameth);
01b8b3c7 1558#ifndef OPENSSL_NO_ENGINE
6514dee7 1559 finish_engine(tmpeng);
01b8b3c7 1560#endif
0f113f3e 1561 if (*pkey_type == EVP_PKEY_RSA) {
2234212c 1562 if (p != NULL) {
0f113f3e
MC
1563 keylen = atol(p + 1);
1564 *pkeylen = keylen;
2234212c 1565 } else {
0f113f3e 1566 keylen = *pkeylen;
2234212c
PY
1567 }
1568 } else if (p != NULL) {
0f113f3e 1569 paramfile = p + 1;
2234212c 1570 }
0f113f3e
MC
1571 }
1572
2234212c 1573 if (paramfile != NULL) {
0f113f3e 1574 pbio = BIO_new_file(paramfile, "r");
2234212c 1575 if (pbio == NULL) {
6ad957f1 1576 BIO_printf(bio_err, "Cannot open parameter file %s\n", paramfile);
0f113f3e
MC
1577 return NULL;
1578 }
1579 param = PEM_read_bio_Parameters(pbio, NULL);
1580
2234212c 1581 if (param == NULL) {
0f113f3e 1582 X509 *x;
2234212c 1583
0f113f3e
MC
1584 (void)BIO_reset(pbio);
1585 x = PEM_read_bio_X509(pbio, NULL, NULL, NULL);
2234212c 1586 if (x != NULL) {
0f113f3e
MC
1587 param = X509_get_pubkey(x);
1588 X509_free(x);
1589 }
1590 }
1591
1592 BIO_free(pbio);
1593
2234212c 1594 if (param == NULL) {
7e1b7485 1595 BIO_printf(bio_err, "Error reading parameter file %s\n", paramfile);
0f113f3e
MC
1596 return NULL;
1597 }
2234212c 1598 if (*pkey_type == -1) {
0f113f3e 1599 *pkey_type = EVP_PKEY_id(param);
2234212c 1600 } else if (*pkey_type != EVP_PKEY_base_id(param)) {
6ad957f1 1601 BIO_printf(bio_err, "Key type does not match parameters\n");
0f113f3e
MC
1602 EVP_PKEY_free(param);
1603 return NULL;
1604 }
1605 }
1606
2234212c 1607 if (palgnam != NULL) {
0f113f3e
MC
1608 const EVP_PKEY_ASN1_METHOD *ameth;
1609 ENGINE *tmpeng;
1610 const char *anam;
2234212c 1611
0f113f3e 1612 ameth = EVP_PKEY_asn1_find(&tmpeng, *pkey_type);
2234212c 1613 if (ameth == NULL) {
7e1b7485 1614 BIO_puts(bio_err, "Internal error: can't find key algorithm\n");
0f113f3e
MC
1615 return NULL;
1616 }
1617 EVP_PKEY_asn1_get0_info(NULL, NULL, NULL, NULL, &anam, ameth);
7644a9ae 1618 *palgnam = OPENSSL_strdup(anam);
01b8b3c7 1619#ifndef OPENSSL_NO_ENGINE
6514dee7 1620 finish_engine(tmpeng);
01b8b3c7 1621#endif
0f113f3e
MC
1622 }
1623
2234212c 1624 if (param != NULL) {
0f113f3e
MC
1625 gctx = EVP_PKEY_CTX_new(param, keygen_engine);
1626 *pkeylen = EVP_PKEY_bits(param);
1627 EVP_PKEY_free(param);
2234212c 1628 } else {
0f113f3e 1629 gctx = EVP_PKEY_CTX_new_id(*pkey_type, keygen_engine);
2234212c 1630 }
0f113f3e 1631
96487cdd 1632 if (gctx == NULL) {
7e1b7485 1633 BIO_puts(bio_err, "Error allocating keygen context\n");
0f113f3e
MC
1634 return NULL;
1635 }
1636
1637 if (EVP_PKEY_keygen_init(gctx) <= 0) {
7e1b7485 1638 BIO_puts(bio_err, "Error initializing keygen context\n");
69ac182d 1639 EVP_PKEY_CTX_free(gctx);
0f113f3e
MC
1640 return NULL;
1641 }
0f113f3e
MC
1642 if ((*pkey_type == EVP_PKEY_RSA) && (keylen != -1)) {
1643 if (EVP_PKEY_CTX_set_rsa_keygen_bits(gctx, keylen) <= 0) {
7e1b7485 1644 BIO_puts(bio_err, "Error setting RSA keysize\n");
0f113f3e
MC
1645 EVP_PKEY_CTX_free(gctx);
1646 return NULL;
1647 }
1648 }
959e8dfe 1649
0f113f3e
MC
1650 return gctx;
1651}
959e8dfe
DSH
1652
1653static int genpkey_cb(EVP_PKEY_CTX *ctx)
0f113f3e
MC
1654{
1655 char c = '*';
1656 BIO *b = EVP_PKEY_CTX_get_app_data(ctx);
1657 int p;
1658 p = EVP_PKEY_CTX_get_keygen_info(ctx, 0);
1659 if (p == 0)
1660 c = '.';
1661 if (p == 1)
1662 c = '+';
1663 if (p == 2)
1664 c = '*';
1665 if (p == 3)
1666 c = '\n';
1667 BIO_write(b, &c, 1);
1668 (void)BIO_flush(b);
1669 return 1;
1670}