]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/req.c
make EVP_PKEY opaque
[thirdparty/openssl.git] / apps / req.c
CommitLineData
58964a49 1/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
0f113f3e 7 *
d02b48c6
RE
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
0f113f3e 14 *
d02b48c6
RE
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
0f113f3e 21 *
d02b48c6
RE
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
0f113f3e 36 * 4. If you include any Windows specific code (or a derivative thereof) from
d02b48c6
RE
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
0f113f3e 39 *
d02b48c6
RE
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
0f113f3e 51 *
d02b48c6
RE
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.]
56 */
57
58#include <stdio.h>
59#include <stdlib.h>
60#include <time.h>
61#include <string.h>
d02b48c6 62#include "apps.h"
ec577822
BM
63#include <openssl/bio.h>
64#include <openssl/evp.h>
ec577822
BM
65#include <openssl/conf.h>
66#include <openssl/err.h>
67#include <openssl/asn1.h>
68#include <openssl/x509.h>
69#include <openssl/x509v3.h>
70#include <openssl/objects.h>
71#include <openssl/pem.h>
3eeaab4b
NL
72#include <openssl/bn.h>
73#ifndef OPENSSL_NO_RSA
0f113f3e 74# include <openssl/rsa.h>
3eeaab4b
NL
75#endif
76#ifndef OPENSSL_NO_DSA
0f113f3e 77# include <openssl/dsa.h>
3eeaab4b 78#endif
d02b48c6 79
0f113f3e 80#define SECTION "req"
d02b48c6 81
0f113f3e
MC
82#define BITS "default_bits"
83#define KEYFILE "default_keyfile"
84#define PROMPT "prompt"
85#define DISTINGUISHED_NAME "distinguished_name"
86#define ATTRIBUTES "attributes"
87#define V3_EXTENSIONS "x509_extensions"
88#define REQ_EXTENSIONS "req_extensions"
89#define STRING_MASK "string_mask"
90#define UTF8_IN "utf8"
d02b48c6 91
0f113f3e
MC
92#define DEFAULT_KEY_LENGTH 512
93#define MIN_KEY_LENGTH 384
d02b48c6 94
0f113f3e
MC
95static int make_REQ(X509_REQ *req, EVP_PKEY *pkey, char *dn, int mutlirdn,
96 int attribs, unsigned long chtype);
7ce9e425 97static int build_subject(X509_REQ *req, char *subj, unsigned long chtype,
0f113f3e 98 int multirdn);
b38f9f66 99static int prompt_info(X509_REQ *req,
0f113f3e
MC
100 STACK_OF(CONF_VALUE) *dn_sk, char *dn_sect,
101 STACK_OF(CONF_VALUE) *attr_sk, char *attr_sect,
102 int attribs, unsigned long chtype);
b38f9f66 103static int auto_info(X509_REQ *req, STACK_OF(CONF_VALUE) *sk,
0f113f3e
MC
104 STACK_OF(CONF_VALUE) *attr, int attribs,
105 unsigned long chtype);
7d727231 106static int add_attribute_object(X509_REQ *req, char *text, const char *def,
0f113f3e
MC
107 char *value, int nid, int n_min, int n_max,
108 unsigned long chtype);
109static int add_DN_object(X509_NAME *n, char *text, const char *def,
110 char *value, int nid, int n_min, int n_max,
111 unsigned long chtype, int mval);
959e8dfe 112static int genpkey_cb(EVP_PKEY_CTX *ctx);
0f113f3e 113static int req_check_len(int len, int n_min, int n_max);
7d727231 114static int check_end(const char *str, const char *end);
7e1b7485 115static EVP_PKEY_CTX *set_keygen_ctx(const char *gstr,
0f113f3e
MC
116 int *pkey_type, long *pkeylen,
117 char **palgnam, ENGINE *keygen_engine);
0f113f3e
MC
118static CONF *req_conf = NULL;
119static int batch = 0;
d02b48c6 120
7e1b7485
RS
121typedef enum OPTION_choice {
122 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
123 OPT_INFORM, OPT_OUTFORM, OPT_ENGINE, OPT_KEYGEN_ENGINE, OPT_KEY,
124 OPT_PUBKEY, OPT_NEW, OPT_CONFIG, OPT_KEYFORM, OPT_IN, OPT_OUT,
125 OPT_KEYOUT, OPT_PASSIN, OPT_PASSOUT, OPT_RAND, OPT_NEWKEY,
126 OPT_PKEYOPT, OPT_SIGOPT, OPT_BATCH, OPT_NEWHDR, OPT_MODULUS,
127 OPT_VERIFY, OPT_NODES, OPT_NOOUT, OPT_VERBOSE, OPT_UTF8,
29eca1c0 128 OPT_NAMEOPT, OPT_REQOPT, OPT_SUBJ, OPT_SUBJECT, OPT_TEXT, OPT_X509,
d8c054f2
DSH
129 OPT_MULTIVALUE_RDN, OPT_DAYS, OPT_SET_SERIAL, OPT_EXTENSIONS,
130 OPT_REQEXTS, OPT_MD
7e1b7485
RS
131} OPTION_CHOICE;
132
133OPTIONS req_options[] = {
134 {"help", OPT_HELP, '-', "Display this summary"},
135 {"inform", OPT_INFORM, 'F', "Input format - DER or PEM"},
136 {"outform", OPT_OUTFORM, 'F', "Output format - DER or PEM"},
137 {"in", OPT_IN, '<', "Input file"},
138 {"out", OPT_OUT, '>', "Output file"},
7e1b7485
RS
139 {"key", OPT_KEY, '<', "Use the private key contained in file"},
140 {"keyform", OPT_KEYFORM, 'F', "Key file format"},
141 {"pubkey", OPT_PUBKEY, '-', "Output public key"},
142 {"new", OPT_NEW, '-', "New request"},
143 {"config", OPT_CONFIG, '<', "Request template file"},
144 {"keyout", OPT_KEYOUT, '>', "File to send the key to"},
145 {"passin", OPT_PASSIN, 's', "Private key password source"},
146 {"passout", OPT_PASSOUT, 's'},
147 {"rand", OPT_RAND, 's',
148 "Load the file(s) into the random number generator"},
149 {"newkey", OPT_NEWKEY, 's', "Specify as type:bits"},
150 {"pkeyopt", OPT_PKEYOPT, 's'},
151 {"sigopt", OPT_SIGOPT, 's'},
152 {"batch", OPT_BATCH, '-',
153 "Do not ask anything during request generation"},
154 {"newhdr", OPT_NEWHDR, '-', "Output \"NEW\" in the header lines"},
155 {"modulus", OPT_MODULUS, '-', "RSA modulus"},
156 {"verify", OPT_VERIFY, '-', "Verify signature on REQ"},
157 {"nodes", OPT_NODES, '-', "Don't encrypt the output key"},
158 {"noout", OPT_NOOUT, '-', "Do not output REQ"},
159 {"verbose", OPT_VERBOSE, '-'},
160 {"utf8", OPT_UTF8, '-', "Input characters are UTF8 (default ASCII)"},
161 {"nameopt", OPT_NAMEOPT, 's', "Various certificate name options"},
162 {"reqopt", OPT_REQOPT, 's', "Various request text options"},
163 {"text", OPT_TEXT, '-', "Text form of request"},
164 {"x509", OPT_X509, '-',
165 "Output a x509 structure instead of a cert request"},
7e1b7485 166 {OPT_MORE_STR, 1, 1, "(Required by some CA's)"},
29eca1c0
TH
167 {"subj", OPT_SUBJ, 's', "Set or modify request subject"},
168 {"subject", OPT_SUBJECT, '-', "Output the request's subject"},
7e1b7485
RS
169 {"multivalue-rdn", OPT_MULTIVALUE_RDN, '-',
170 "Enable support for multivalued RDNs"},
171 {"days", OPT_DAYS, 'p', "Number of days cert is valid for"},
1dce6c3f 172 {"set_serial", OPT_SET_SERIAL, 'p', "Serial number to use"},
7e1b7485
RS
173 {"extensions", OPT_EXTENSIONS, 's',
174 "Cert extension section (override value in config file)"},
175 {"reqexts", OPT_REQEXTS, 's',
176 "Request extension section (override value in config file)"},
9c3bcfa0 177 {"", OPT_MD, '-', "Any supported digest"},
7e1b7485
RS
178#ifndef OPENSSL_NO_ENGINE
179 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
333b070e 180 {"keygen_engine", OPT_KEYGEN_ENGINE, 's'},
7e1b7485 181#endif
7e1b7485
RS
182 {NULL}
183};
667ac4ec 184
7e1b7485 185int req_main(int argc, char **argv)
0f113f3e 186{
7e1b7485
RS
187 ASN1_INTEGER *serial = NULL;
188 BIO *in = NULL, *out = NULL;
0f113f3e 189 ENGINE *e = NULL, *gen_eng = NULL;
7e1b7485 190 EVP_PKEY *pkey = NULL;
0f113f3e 191 EVP_PKEY_CTX *genctx = NULL;
0f113f3e 192 STACK_OF(OPENSSL_STRING) *pkeyopts = NULL, *sigopts = NULL;
7e1b7485
RS
193 X509 *x509ss = NULL;
194 X509_REQ *req = NULL;
0f113f3e 195 const EVP_CIPHER *cipher = NULL;
0f113f3e 196 const EVP_MD *md_alg = NULL, *digest = NULL;
333b070e 197 char *extensions = NULL, *infile = NULL;
7e1b7485
RS
198 char *outfile = NULL, *keyfile = NULL, *inrand = NULL;
199 char *keyalgstr = NULL, *p, *prog, *passargin = NULL, *passargout = NULL;
200 char *passin = NULL, *passout = NULL, *req_exts = NULL, *subj = NULL;
cc01d217 201 char *template = default_config_file, *keyout = NULL;
7e1b7485
RS
202 const char *keyalg = NULL;
203 OPTION_CHOICE o;
3b061a00
RS
204 int ret = 1, x509 = 0, days = 30, i = 0, newreq = 0, verbose = 0;
205 int pkey_type = -1, private = 0;
7e1b7485
RS
206 int informat = FORMAT_PEM, outformat = FORMAT_PEM, keyform = FORMAT_PEM;
207 int modulus = 0, multirdn = 0, verify = 0, noout = 0, text = 0;
d8c054f2 208 int nodes = 0, newhdr = 0, subject = 0, pubkey = 0;
7e1b7485
RS
209 long newkey = -1;
210 unsigned long chtype = MBSTRING_ASC, nmflag = 0, reqflag = 0;
f1cece55 211 char nmflag_set = 0;
d02b48c6 212
cf1b7d96 213#ifndef OPENSSL_NO_DES
0f113f3e 214 cipher = EVP_des_ede3_cbc();
d02b48c6 215#endif
7e1b7485
RS
216
217 prog = opt_init(argc, argv, req_options);
218 while ((o = opt_next()) != OPT_EOF) {
219 switch (o) {
220 case OPT_EOF:
221 case OPT_ERR:
222 opthelp:
223 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
224 goto end;
225 case OPT_HELP:
226 opt_help(req_options);
227 ret = 0;
228 goto end;
229 case OPT_INFORM:
230 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &informat))
231 goto opthelp;
232 break;
233 case OPT_OUTFORM:
234 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &outformat))
235 goto opthelp;
236 break;
7e1b7485 237 case OPT_ENGINE:
333b070e 238 (void)setup_engine(opt_arg(), 0);
7e1b7485
RS
239 break;
240 case OPT_KEYGEN_ENGINE:
333b070e 241#ifndef OPENSSL_NO_ENGINE
7e1b7485 242 gen_eng = ENGINE_by_id(opt_arg());
0f113f3e
MC
243 if (gen_eng == NULL) {
244 BIO_printf(bio_err, "Can't find keygen engine %s\n", *argv);
333b070e 245 goto opthelp;
0f113f3e 246 }
0b13e9f0 247#endif
333b070e 248 break;
7e1b7485
RS
249 case OPT_KEY:
250 keyfile = opt_arg();
251 break;
252 case OPT_PUBKEY:
0f113f3e 253 pubkey = 1;
7e1b7485
RS
254 break;
255 case OPT_NEW:
0f113f3e 256 newreq = 1;
7e1b7485
RS
257 break;
258 case OPT_CONFIG:
259 template = opt_arg();
260 break;
261 case OPT_KEYFORM:
262 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &keyform))
263 goto opthelp;
264 break;
265 case OPT_IN:
266 infile = opt_arg();
267 break;
268 case OPT_OUT:
269 outfile = opt_arg();
270 break;
271 case OPT_KEYOUT:
272 keyout = opt_arg();
273 break;
274 case OPT_PASSIN:
275 passargin = opt_arg();
276 break;
277 case OPT_PASSOUT:
278 passargout = opt_arg();
279 break;
280 case OPT_RAND:
281 inrand = opt_arg();
282 break;
283 case OPT_NEWKEY:
284 keyalg = opt_arg();
0f113f3e 285 newreq = 1;
7e1b7485
RS
286 break;
287 case OPT_PKEYOPT:
0f113f3e
MC
288 if (!pkeyopts)
289 pkeyopts = sk_OPENSSL_STRING_new_null();
7e1b7485
RS
290 if (!pkeyopts || !sk_OPENSSL_STRING_push(pkeyopts, opt_arg()))
291 goto opthelp;
292 break;
293 case OPT_SIGOPT:
0f113f3e
MC
294 if (!sigopts)
295 sigopts = sk_OPENSSL_STRING_new_null();
7e1b7485
RS
296 if (!sigopts || !sk_OPENSSL_STRING_push(sigopts, opt_arg()))
297 goto opthelp;
298 break;
299 case OPT_BATCH:
0f113f3e 300 batch = 1;
7e1b7485
RS
301 break;
302 case OPT_NEWHDR:
0f113f3e 303 newhdr = 1;
7e1b7485
RS
304 break;
305 case OPT_MODULUS:
0f113f3e 306 modulus = 1;
7e1b7485
RS
307 break;
308 case OPT_VERIFY:
0f113f3e 309 verify = 1;
7e1b7485
RS
310 break;
311 case OPT_NODES:
0f113f3e 312 nodes = 1;
7e1b7485
RS
313 break;
314 case OPT_NOOUT:
0f113f3e 315 noout = 1;
7e1b7485
RS
316 break;
317 case OPT_VERBOSE:
0f113f3e 318 verbose = 1;
7e1b7485
RS
319 break;
320 case OPT_UTF8:
0f113f3e 321 chtype = MBSTRING_UTF8;
7e1b7485
RS
322 break;
323 case OPT_NAMEOPT:
f1cece55 324 nmflag_set = 1;
7e1b7485
RS
325 if (!set_name_ex(&nmflag, opt_arg()))
326 goto opthelp;
327 break;
328 case OPT_REQOPT:
329 if (!set_cert_ex(&reqflag, opt_arg()))
330 goto opthelp;
331 break;
332 case OPT_TEXT:
0f113f3e 333 text = 1;
7e1b7485
RS
334 break;
335 case OPT_X509:
0f113f3e 336 x509 = 1;
7e1b7485 337 break;
7e1b7485
RS
338 case OPT_DAYS:
339 days = atoi(opt_arg());
340 break;
341 case OPT_SET_SERIAL:
342 serial = s2i_ASN1_INTEGER(NULL, opt_arg());
343 if (serial == NULL)
344 goto opthelp;
345 break;
346 case OPT_SUBJECT:
f1cece55 347 subject = 1;
29eca1c0
TH
348 break;
349 case OPT_SUBJ:
7e1b7485
RS
350 subj = opt_arg();
351 break;
352 case OPT_MULTIVALUE_RDN:
0f113f3e 353 multirdn = 1;
7e1b7485
RS
354 break;
355 case OPT_EXTENSIONS:
356 extensions = opt_arg();
357 break;
358 case OPT_REQEXTS:
359 req_exts = opt_arg();
360 break;
361 case OPT_MD:
362 if (!opt_md(opt_unknown(), &md_alg))
363 goto opthelp;
0f113f3e 364 digest = md_alg;
0f113f3e
MC
365 break;
366 }
0f113f3e 367 }
7e1b7485
RS
368 argc = opt_num_rest();
369 argv = opt_rest();
f1cece55
RL
370
371 if (!nmflag_set)
372 nmflag = XN_FLAG_ONELINE;
373
3b061a00 374 private = newreq && (pkey == NULL) ? 1 : 0;
0f113f3e 375
7e1b7485 376 if (!app_passwd(passargin, passargout, &passin, &passout)) {
0f113f3e
MC
377 BIO_printf(bio_err, "Error getting passwords\n");
378 goto end;
379 }
d02b48c6 380
cc01d217
RS
381 if (verbose)
382 BIO_printf(bio_err, "Using configuration from %s\n", template);
383 req_conf = app_load_config(template);
296f54ee
RL
384 if (!app_load_modules(req_conf))
385 goto end;
386
0f113f3e 387 if (req_conf != NULL) {
0f113f3e
MC
388 p = NCONF_get_string(req_conf, NULL, "oid_file");
389 if (p == NULL)
390 ERR_clear_error();
391 if (p != NULL) {
392 BIO *oid_bio;
393
394 oid_bio = BIO_new_file(p, "r");
395 if (oid_bio == NULL) {
50e735f9
MC
396 /*-
397 BIO_printf(bio_err,"problems opening %s for extra oid's\n",p);
398 ERR_print_errors(bio_err);
399 */
0f113f3e
MC
400 } else {
401 OBJ_create_objects(oid_bio);
402 BIO_free(oid_bio);
403 }
404 }
405 }
7e1b7485 406 if (!add_oid_section(req_conf))
0f113f3e
MC
407 goto end;
408
409 if (md_alg == NULL) {
410 p = NCONF_get_string(req_conf, SECTION, "default_md");
411 if (p == NULL)
412 ERR_clear_error();
7e1b7485
RS
413 else {
414 if (!opt_md(p, &md_alg))
415 goto opthelp;
416 digest = md_alg;
0f113f3e
MC
417 }
418 }
419
420 if (!extensions) {
421 extensions = NCONF_get_string(req_conf, SECTION, V3_EXTENSIONS);
422 if (!extensions)
423 ERR_clear_error();
424 }
425 if (extensions) {
426 /* Check syntax of file */
427 X509V3_CTX ctx;
428 X509V3_set_ctx_test(&ctx);
429 X509V3_set_nconf(&ctx, req_conf);
430 if (!X509V3_EXT_add_nconf(req_conf, &ctx, extensions, NULL)) {
431 BIO_printf(bio_err,
432 "Error Loading extension section %s\n", extensions);
433 goto end;
434 }
435 }
436
437 if (!passin) {
438 passin = NCONF_get_string(req_conf, SECTION, "input_password");
439 if (!passin)
440 ERR_clear_error();
441 }
442
443 if (!passout) {
444 passout = NCONF_get_string(req_conf, SECTION, "output_password");
445 if (!passout)
446 ERR_clear_error();
447 }
448
449 p = NCONF_get_string(req_conf, SECTION, STRING_MASK);
450 if (!p)
451 ERR_clear_error();
452
453 if (p && !ASN1_STRING_set_default_mask_asc(p)) {
454 BIO_printf(bio_err, "Invalid global string mask setting %s\n", p);
455 goto end;
456 }
457
458 if (chtype != MBSTRING_UTF8) {
459 p = NCONF_get_string(req_conf, SECTION, UTF8_IN);
460 if (!p)
461 ERR_clear_error();
86885c28 462 else if (strcmp(p, "yes") == 0)
0f113f3e
MC
463 chtype = MBSTRING_UTF8;
464 }
465
466 if (!req_exts) {
467 req_exts = NCONF_get_string(req_conf, SECTION, REQ_EXTENSIONS);
468 if (!req_exts)
469 ERR_clear_error();
470 }
471 if (req_exts) {
472 /* Check syntax of file */
473 X509V3_CTX ctx;
474 X509V3_set_ctx_test(&ctx);
475 X509V3_set_nconf(&ctx, req_conf);
476 if (!X509V3_EXT_add_nconf(req_conf, &ctx, req_exts, NULL)) {
477 BIO_printf(bio_err,
478 "Error Loading request extension section %s\n",
479 req_exts);
480 goto end;
481 }
482 }
d02b48c6 483
0f113f3e 484 if (keyfile != NULL) {
7e1b7485 485 pkey = load_key(keyfile, keyform, 0, passin, e, "Private Key");
0f113f3e 486 if (!pkey) {
7e1b7485 487 /* load_key() has already printed an appropriate message */
0f113f3e
MC
488 goto end;
489 } else {
490 char *randfile = NCONF_get_string(req_conf, SECTION, "RANDFILE");
491 if (randfile == NULL)
492 ERR_clear_error();
7e1b7485 493 app_RAND_load_file(randfile, 0);
0f113f3e
MC
494 }
495 }
496
497 if (newreq && (pkey == NULL)) {
498 char *randfile = NCONF_get_string(req_conf, SECTION, "RANDFILE");
499 if (randfile == NULL)
500 ERR_clear_error();
7e1b7485 501 app_RAND_load_file(randfile, 0);
0f113f3e
MC
502 if (inrand)
503 app_RAND_load_files(inrand);
504
505 if (!NCONF_get_number(req_conf, SECTION, BITS, &newkey)) {
506 newkey = DEFAULT_KEY_LENGTH;
507 }
508
509 if (keyalg) {
7e1b7485 510 genctx = set_keygen_ctx(keyalg, &pkey_type, &newkey,
0f113f3e
MC
511 &keyalgstr, gen_eng);
512 if (!genctx)
513 goto end;
514 }
515
516 if (newkey < MIN_KEY_LENGTH
517 && (pkey_type == EVP_PKEY_RSA || pkey_type == EVP_PKEY_DSA)) {
518 BIO_printf(bio_err, "private key length is too short,\n");
519 BIO_printf(bio_err, "it needs to be at least %d bits, not %ld\n",
520 MIN_KEY_LENGTH, newkey);
521 goto end;
522 }
523
524 if (!genctx) {
7e1b7485 525 genctx = set_keygen_ctx(NULL, &pkey_type, &newkey,
0f113f3e
MC
526 &keyalgstr, gen_eng);
527 if (!genctx)
528 goto end;
529 }
530
531 if (pkeyopts) {
532 char *genopt;
533 for (i = 0; i < sk_OPENSSL_STRING_num(pkeyopts); i++) {
534 genopt = sk_OPENSSL_STRING_value(pkeyopts, i);
535 if (pkey_ctrl_string(genctx, genopt) <= 0) {
536 BIO_printf(bio_err, "parameter error \"%s\"\n", genopt);
537 ERR_print_errors(bio_err);
538 goto end;
539 }
540 }
541 }
542
543 BIO_printf(bio_err, "Generating a %ld bit %s private key\n",
544 newkey, keyalgstr);
545
546 EVP_PKEY_CTX_set_cb(genctx, genpkey_cb);
547 EVP_PKEY_CTX_set_app_data(genctx, bio_err);
548
549 if (EVP_PKEY_keygen(genctx, &pkey) <= 0) {
550 BIO_puts(bio_err, "Error Generating Key\n");
551 goto end;
552 }
553
554 EVP_PKEY_CTX_free(genctx);
555 genctx = NULL;
556
7e1b7485 557 app_RAND_write_file(randfile);
0f113f3e
MC
558
559 if (keyout == NULL) {
560 keyout = NCONF_get_string(req_conf, SECTION, KEYFILE);
561 if (keyout == NULL)
562 ERR_clear_error();
563 }
564
7e1b7485 565 if (keyout == NULL)
0f113f3e 566 BIO_printf(bio_err, "writing new private key to stdout\n");
7e1b7485 567 else
0f113f3e 568 BIO_printf(bio_err, "writing new private key to '%s'\n", keyout);
bdd58d98 569 out = bio_open_owner(keyout, outformat, private);
7e1b7485
RS
570 if (out == NULL)
571 goto end;
0f113f3e
MC
572
573 p = NCONF_get_string(req_conf, SECTION, "encrypt_rsa_key");
574 if (p == NULL) {
575 ERR_clear_error();
576 p = NCONF_get_string(req_conf, SECTION, "encrypt_key");
577 if (p == NULL)
578 ERR_clear_error();
579 }
580 if ((p != NULL) && (strcmp(p, "no") == 0))
581 cipher = NULL;
582 if (nodes)
583 cipher = NULL;
584
585 i = 0;
586 loop:
3b061a00 587 assert(private);
0f113f3e
MC
588 if (!PEM_write_bio_PrivateKey(out, pkey, cipher,
589 NULL, 0, NULL, passout)) {
590 if ((ERR_GET_REASON(ERR_peek_error()) ==
591 PEM_R_PROBLEMS_GETTING_PASSWORD) && (i < 3)) {
592 ERR_clear_error();
593 i++;
594 goto loop;
595 }
596 goto end;
597 }
cf89a80e 598 BIO_free(out);
21425195 599 out = NULL;
0f113f3e
MC
600 BIO_printf(bio_err, "-----\n");
601 }
602
603 if (!newreq) {
bdd58d98 604 in = bio_open_default(infile, 'r', informat);
7e1b7485
RS
605 if (in == NULL)
606 goto end;
0f113f3e
MC
607
608 if (informat == FORMAT_ASN1)
609 req = d2i_X509_REQ_bio(in, NULL);
7e1b7485 610 else
0f113f3e 611 req = PEM_read_bio_X509_REQ(in, NULL, NULL, NULL);
0f113f3e
MC
612 if (req == NULL) {
613 BIO_printf(bio_err, "unable to load X509 request\n");
614 goto end;
615 }
616 }
617
618 if (newreq || x509) {
619 if (pkey == NULL) {
620 BIO_printf(bio_err, "you need to specify a private key\n");
621 goto end;
622 }
623
624 if (req == NULL) {
625 req = X509_REQ_new();
626 if (req == NULL) {
627 goto end;
628 }
629
630 i = make_REQ(req, pkey, subj, multirdn, !x509, chtype);
631 subj = NULL; /* done processing '-subj' option */
0f113f3e
MC
632 if (!i) {
633 BIO_printf(bio_err, "problems making Certificate Request\n");
634 goto end;
635 }
636 }
637 if (x509) {
638 EVP_PKEY *tmppkey;
639 X509V3_CTX ext_ctx;
640 if ((x509ss = X509_new()) == NULL)
641 goto end;
642
643 /* Set version to V3 */
644 if (extensions && !X509_set_version(x509ss, 2))
645 goto end;
646 if (serial) {
647 if (!X509_set_serialNumber(x509ss, serial))
648 goto end;
649 } else {
650 if (!rand_serial(NULL, X509_get_serialNumber(x509ss)))
651 goto end;
652 }
653
654 if (!X509_set_issuer_name(x509ss, X509_REQ_get_subject_name(req)))
655 goto end;
656 if (!X509_gmtime_adj(X509_get_notBefore(x509ss), 0))
657 goto end;
658 if (!X509_time_adj_ex(X509_get_notAfter(x509ss), days, 0, NULL))
659 goto end;
660 if (!X509_set_subject_name
661 (x509ss, X509_REQ_get_subject_name(req)))
662 goto end;
663 tmppkey = X509_REQ_get_pubkey(req);
664 if (!tmppkey || !X509_set_pubkey(x509ss, tmppkey))
665 goto end;
666 EVP_PKEY_free(tmppkey);
667
668 /* Set up V3 context struct */
669
670 X509V3_set_ctx(&ext_ctx, x509ss, x509ss, NULL, NULL, 0);
671 X509V3_set_nconf(&ext_ctx, req_conf);
672
673 /* Add extensions */
674 if (extensions && !X509V3_EXT_add_nconf(req_conf,
675 &ext_ctx, extensions,
676 x509ss)) {
677 BIO_printf(bio_err, "Error Loading extension section %s\n",
678 extensions);
679 goto end;
680 }
681
7e1b7485 682 i = do_X509_sign(x509ss, pkey, digest, sigopts);
0f113f3e
MC
683 if (!i) {
684 ERR_print_errors(bio_err);
685 goto end;
686 }
687 } else {
688 X509V3_CTX ext_ctx;
689
690 /* Set up V3 context struct */
691
692 X509V3_set_ctx(&ext_ctx, NULL, NULL, req, NULL, 0);
693 X509V3_set_nconf(&ext_ctx, req_conf);
694
695 /* Add extensions */
696 if (req_exts && !X509V3_EXT_REQ_add_nconf(req_conf,
697 &ext_ctx, req_exts,
698 req)) {
699 BIO_printf(bio_err, "Error Loading extension section %s\n",
700 req_exts);
701 goto end;
702 }
7e1b7485 703 i = do_X509_REQ_sign(req, pkey, digest, sigopts);
0f113f3e
MC
704 if (!i) {
705 ERR_print_errors(bio_err);
706 goto end;
707 }
708 }
709 }
710
711 if (subj && x509) {
712 BIO_printf(bio_err, "Cannot modify certificate subject\n");
713 goto end;
714 }
715
716 if (subj && !x509) {
717 if (verbose) {
718 BIO_printf(bio_err, "Modifying Request's Subject\n");
719 print_name(bio_err, "old subject=",
720 X509_REQ_get_subject_name(req), nmflag);
721 }
722
723 if (build_subject(req, subj, chtype, multirdn) == 0) {
724 BIO_printf(bio_err, "ERROR: cannot modify subject\n");
7e1b7485 725 ret = 1;
0f113f3e
MC
726 goto end;
727 }
728
0f113f3e
MC
729 if (verbose) {
730 print_name(bio_err, "new subject=",
731 X509_REQ_get_subject_name(req), nmflag);
732 }
733 }
734
735 if (verify && !x509) {
736 int tmp = 0;
737
738 if (pkey == NULL) {
739 pkey = X509_REQ_get_pubkey(req);
7e1b7485 740 tmp = 1;
0f113f3e
MC
741 if (pkey == NULL)
742 goto end;
743 }
744
745 i = X509_REQ_verify(req, pkey);
746 if (tmp) {
747 EVP_PKEY_free(pkey);
748 pkey = NULL;
749 }
750
751 if (i < 0) {
752 goto end;
753 } else if (i == 0) {
754 BIO_printf(bio_err, "verify failure\n");
755 ERR_print_errors(bio_err);
756 } else /* if (i > 0) */
757 BIO_printf(bio_err, "verify OK\n");
758 }
759
760 if (noout && !text && !modulus && !subject && !pubkey) {
7e1b7485 761 ret = 0;
0f113f3e
MC
762 goto end;
763 }
764
7e1b7485
RS
765 out = bio_open_default(outfile,
766 keyout != NULL && outfile != NULL &&
bdd58d98
RL
767 strcmp(keyout, outfile) == 0 ? 'a' : 'w',
768 outformat);
7e1b7485
RS
769 if (out == NULL)
770 goto end;
0f113f3e
MC
771
772 if (pubkey) {
773 EVP_PKEY *tpubkey;
774 tpubkey = X509_REQ_get_pubkey(req);
775 if (tpubkey == NULL) {
776 BIO_printf(bio_err, "Error getting public key\n");
777 ERR_print_errors(bio_err);
778 goto end;
779 }
780 PEM_write_bio_PUBKEY(out, tpubkey);
781 EVP_PKEY_free(tpubkey);
782 }
783
784 if (text) {
785 if (x509)
786 X509_print_ex(out, x509ss, nmflag, reqflag);
787 else
788 X509_REQ_print_ex(out, req, nmflag, reqflag);
789 }
790
791 if (subject) {
792 if (x509)
793 print_name(out, "subject=", X509_get_subject_name(x509ss),
794 nmflag);
795 else
796 print_name(out, "subject=", X509_REQ_get_subject_name(req),
797 nmflag);
798 }
799
800 if (modulus) {
801 EVP_PKEY *tpubkey;
802
803 if (x509)
804 tpubkey = X509_get_pubkey(x509ss);
805 else
806 tpubkey = X509_REQ_get_pubkey(req);
807 if (tpubkey == NULL) {
808 fprintf(stdout, "Modulus=unavailable\n");
809 goto end;
810 }
811 fprintf(stdout, "Modulus=");
cf1b7d96 812#ifndef OPENSSL_NO_RSA
0f113f3e 813 if (EVP_PKEY_base_id(tpubkey) == EVP_PKEY_RSA)
3aeb9348 814 BN_print(out, EVP_PKEY_get0_RSA(tpubkey)->n);
0f113f3e 815 else
13e91dd3 816#endif
0f113f3e
MC
817 fprintf(stdout, "Wrong Algorithm type");
818 EVP_PKEY_free(tpubkey);
819 fprintf(stdout, "\n");
820 }
821
822 if (!noout && !x509) {
823 if (outformat == FORMAT_ASN1)
824 i = i2d_X509_REQ_bio(out, req);
7e1b7485
RS
825 else if (newhdr)
826 i = PEM_write_bio_X509_REQ_NEW(out, req);
827 else
828 i = PEM_write_bio_X509_REQ(out, req);
0f113f3e
MC
829 if (!i) {
830 BIO_printf(bio_err, "unable to write X509 request\n");
831 goto end;
832 }
833 }
834 if (!noout && x509 && (x509ss != NULL)) {
835 if (outformat == FORMAT_ASN1)
836 i = i2d_X509_bio(out, x509ss);
7e1b7485 837 else
0f113f3e 838 i = PEM_write_bio_X509(out, x509ss);
0f113f3e
MC
839 if (!i) {
840 BIO_printf(bio_err, "unable to write X509 certificate\n");
841 goto end;
842 }
843 }
7e1b7485 844 ret = 0;
0f113f3e 845 end:
7e1b7485 846 if (ret) {
0f113f3e
MC
847 ERR_print_errors(bio_err);
848 }
cc01d217 849 NCONF_free(req_conf);
0f113f3e
MC
850 BIO_free(in);
851 BIO_free_all(out);
852 EVP_PKEY_free(pkey);
c5ba2d99 853 EVP_PKEY_CTX_free(genctx);
25aaa98a
RS
854 sk_OPENSSL_STRING_free(pkeyopts);
855 sk_OPENSSL_STRING_free(sigopts);
01b8b3c7 856#ifndef OPENSSL_NO_ENGINE
efa7dd64 857 ENGINE_free(gen_eng);
01b8b3c7 858#endif
b548a1f1 859 OPENSSL_free(keyalgstr);
0f113f3e
MC
860 X509_REQ_free(req);
861 X509_free(x509ss);
862 ASN1_INTEGER_free(serial);
b548a1f1
RS
863 OPENSSL_free(passin);
864 OPENSSL_free(passout);
0f113f3e 865 OBJ_cleanup();
7e1b7485 866 return (ret);
0f113f3e 867}
d02b48c6 868
7ce9e425 869static int make_REQ(X509_REQ *req, EVP_PKEY *pkey, char *subj, int multirdn,
0f113f3e
MC
870 int attribs, unsigned long chtype)
871{
872 int ret = 0, i;
873 char no_prompt = 0;
874 STACK_OF(CONF_VALUE) *dn_sk, *attr_sk = NULL;
875 char *tmp, *dn_sect, *attr_sect;
876
877 tmp = NCONF_get_string(req_conf, SECTION, PROMPT);
878 if (tmp == NULL)
879 ERR_clear_error();
86885c28 880 if ((tmp != NULL) && strcmp(tmp, "no") == 0)
0f113f3e
MC
881 no_prompt = 1;
882
883 dn_sect = NCONF_get_string(req_conf, SECTION, DISTINGUISHED_NAME);
884 if (dn_sect == NULL) {
885 BIO_printf(bio_err, "unable to find '%s' in config\n",
886 DISTINGUISHED_NAME);
887 goto err;
888 }
889 dn_sk = NCONF_get_section(req_conf, dn_sect);
890 if (dn_sk == NULL) {
891 BIO_printf(bio_err, "unable to get '%s' section\n", dn_sect);
892 goto err;
893 }
894
895 attr_sect = NCONF_get_string(req_conf, SECTION, ATTRIBUTES);
896 if (attr_sect == NULL) {
897 ERR_clear_error();
898 attr_sk = NULL;
899 } else {
900 attr_sk = NCONF_get_section(req_conf, attr_sect);
901 if (attr_sk == NULL) {
902 BIO_printf(bio_err, "unable to get '%s' section\n", attr_sect);
903 goto err;
904 }
905 }
906
907 /* setup version number */
908 if (!X509_REQ_set_version(req, 0L))
909 goto err; /* version 1 */
910
911 if (subj)
912 i = build_subject(req, subj, chtype, multirdn);
913 else if (no_prompt)
914 i = auto_info(req, dn_sk, attr_sk, attribs, chtype);
915 else
916 i = prompt_info(req, dn_sk, dn_sect, attr_sk, attr_sect, attribs,
917 chtype);
918 if (!i)
919 goto err;
920
921 if (!X509_REQ_set_pubkey(req, pkey))
922 goto err;
923
924 ret = 1;
925 err:
926 return (ret);
927}
d02b48c6 928
c0455cbb
LJ
929/*
930 * subject is expected to be in the format /type0=value0/type1=value1/type2=...
931 * where characters may be escaped by \
932 */
0f113f3e
MC
933static int build_subject(X509_REQ *req, char *subject, unsigned long chtype,
934 int multirdn)
935{
936 X509_NAME *n;
937
75ebbd9a 938 if ((n = parse_name(subject, chtype, multirdn)) == NULL)
0f113f3e 939 return 0;
bad40585 940
0f113f3e
MC
941 if (!X509_REQ_set_subject_name(req, n)) {
942 X509_NAME_free(n);
943 return 0;
944 }
945 X509_NAME_free(n);
946 return 1;
947}
b38f9f66
DSH
948
949static int prompt_info(X509_REQ *req,
0f113f3e
MC
950 STACK_OF(CONF_VALUE) *dn_sk, char *dn_sect,
951 STACK_OF(CONF_VALUE) *attr_sk, char *attr_sect,
952 int attribs, unsigned long chtype)
953{
954 int i;
955 char *p, *q;
956 char buf[100];
957 int nid, mval;
958 long n_min, n_max;
959 char *type, *value;
960 const char *def;
961 CONF_VALUE *v;
962 X509_NAME *subj;
963 subj = X509_REQ_get_subject_name(req);
964
965 if (!batch) {
966 BIO_printf(bio_err,
967 "You are about to be asked to enter information that will be incorporated\n");
968 BIO_printf(bio_err, "into your certificate request.\n");
969 BIO_printf(bio_err,
970 "What you are about to enter is what is called a Distinguished Name or a DN.\n");
971 BIO_printf(bio_err,
972 "There are quite a few fields but you can leave some blank\n");
973 BIO_printf(bio_err,
974 "For some fields there will be a default value,\n");
975 BIO_printf(bio_err,
976 "If you enter '.', the field will be left blank.\n");
977 BIO_printf(bio_err, "-----\n");
978 }
979
980 if (sk_CONF_VALUE_num(dn_sk)) {
981 i = -1;
982 start:for (;;) {
983 i++;
984 if (sk_CONF_VALUE_num(dn_sk) <= i)
985 break;
986
987 v = sk_CONF_VALUE_value(dn_sk, i);
988 p = q = NULL;
989 type = v->name;
990 if (!check_end(type, "_min") || !check_end(type, "_max") ||
991 !check_end(type, "_default") || !check_end(type, "_value"))
992 continue;
993 /*
994 * Skip past any leading X. X: X, etc to allow for multiple
995 * instances
996 */
997 for (p = v->name; *p; p++)
998 if ((*p == ':') || (*p == ',') || (*p == '.')) {
999 p++;
1000 if (*p)
1001 type = p;
1002 break;
1003 }
1004 if (*type == '+') {
1005 mval = -1;
1006 type++;
1007 } else
1008 mval = 0;
1009 /* If OBJ not recognised ignore it */
1010 if ((nid = OBJ_txt2nid(type)) == NID_undef)
1011 goto start;
1012 if (BIO_snprintf(buf, sizeof buf, "%s_default", v->name)
1013 >= (int)sizeof(buf)) {
1014 BIO_printf(bio_err, "Name '%s' too long\n", v->name);
1015 return 0;
1016 }
1017
1018 if ((def = NCONF_get_string(req_conf, dn_sect, buf)) == NULL) {
1019 ERR_clear_error();
1020 def = "";
1021 }
1022
1023 BIO_snprintf(buf, sizeof buf, "%s_value", v->name);
1024 if ((value = NCONF_get_string(req_conf, dn_sect, buf)) == NULL) {
1025 ERR_clear_error();
1026 value = NULL;
1027 }
1028
1029 BIO_snprintf(buf, sizeof buf, "%s_min", v->name);
1030 if (!NCONF_get_number(req_conf, dn_sect, buf, &n_min)) {
1031 ERR_clear_error();
1032 n_min = -1;
1033 }
1034
1035 BIO_snprintf(buf, sizeof buf, "%s_max", v->name);
1036 if (!NCONF_get_number(req_conf, dn_sect, buf, &n_max)) {
1037 ERR_clear_error();
1038 n_max = -1;
1039 }
1040
1041 if (!add_DN_object(subj, v->value, def, value, nid,
1042 n_min, n_max, chtype, mval))
1043 return 0;
1044 }
1045 if (X509_NAME_entry_count(subj) == 0) {
1046 BIO_printf(bio_err,
1047 "error, no objects specified in config file\n");
1048 return 0;
1049 }
1050
1051 if (attribs) {
1052 if ((attr_sk != NULL) && (sk_CONF_VALUE_num(attr_sk) > 0)
1053 && (!batch)) {
1054 BIO_printf(bio_err,
1055 "\nPlease enter the following 'extra' attributes\n");
1056 BIO_printf(bio_err,
1057 "to be sent with your certificate request\n");
1058 }
1059
1060 i = -1;
1061 start2: for (;;) {
1062 i++;
1063 if ((attr_sk == NULL) || (sk_CONF_VALUE_num(attr_sk) <= i))
1064 break;
1065
1066 v = sk_CONF_VALUE_value(attr_sk, i);
1067 type = v->name;
1068 if ((nid = OBJ_txt2nid(type)) == NID_undef)
1069 goto start2;
1070
1071 if (BIO_snprintf(buf, sizeof buf, "%s_default", type)
1072 >= (int)sizeof(buf)) {
1073 BIO_printf(bio_err, "Name '%s' too long\n", v->name);
1074 return 0;
1075 }
1076
1077 if ((def = NCONF_get_string(req_conf, attr_sect, buf))
1078 == NULL) {
1079 ERR_clear_error();
1080 def = "";
1081 }
1082
1083 BIO_snprintf(buf, sizeof buf, "%s_value", type);
1084 if ((value = NCONF_get_string(req_conf, attr_sect, buf))
1085 == NULL) {
1086 ERR_clear_error();
1087 value = NULL;
1088 }
1089
1090 BIO_snprintf(buf, sizeof buf, "%s_min", type);
1091 if (!NCONF_get_number(req_conf, attr_sect, buf, &n_min)) {
1092 ERR_clear_error();
1093 n_min = -1;
1094 }
1095
1096 BIO_snprintf(buf, sizeof buf, "%s_max", type);
1097 if (!NCONF_get_number(req_conf, attr_sect, buf, &n_max)) {
1098 ERR_clear_error();
1099 n_max = -1;
1100 }
1101
1102 if (!add_attribute_object(req,
1103 v->value, def, value, nid, n_min,
1104 n_max, chtype))
1105 return 0;
1106 }
1107 }
1108 } else {
1109 BIO_printf(bio_err, "No template, please set one up.\n");
1110 return 0;
1111 }
1112
1113 return 1;
1114
1115}
b38f9f66
DSH
1116
1117static int auto_info(X509_REQ *req, STACK_OF(CONF_VALUE) *dn_sk,
0f113f3e
MC
1118 STACK_OF(CONF_VALUE) *attr_sk, int attribs,
1119 unsigned long chtype)
1120{
1121 int i;
1122 char *p, *q;
1123 char *type;
1124 CONF_VALUE *v;
1125 X509_NAME *subj;
1126
1127 subj = X509_REQ_get_subject_name(req);
1128
1129 for (i = 0; i < sk_CONF_VALUE_num(dn_sk); i++) {
1130 int mval;
1131 v = sk_CONF_VALUE_value(dn_sk, i);
1132 p = q = NULL;
1133 type = v->name;
1134 /*
1135 * Skip past any leading X. X: X, etc to allow for multiple instances
1136 */
1137 for (p = v->name; *p; p++)
97d8e82c 1138#ifndef CHARSET_EBCDIC
0f113f3e 1139 if ((*p == ':') || (*p == ',') || (*p == '.')) {
97d8e82c 1140#else
0f113f3e
MC
1141 if ((*p == os_toascii[':']) || (*p == os_toascii[','])
1142 || (*p == os_toascii['.'])) {
97d8e82c 1143#endif
0f113f3e
MC
1144 p++;
1145 if (*p)
1146 type = p;
1147 break;
1148 }
1a15c899 1149#ifndef CHARSET_EBCDIC
0f113f3e 1150 if (*p == '+')
1a15c899 1151#else
0f113f3e 1152 if (*p == os_toascii['+'])
1a15c899 1153#endif
0f113f3e
MC
1154 {
1155 p++;
1156 mval = -1;
1157 } else
1158 mval = 0;
1159 if (!X509_NAME_add_entry_by_txt(subj, type, chtype,
1160 (unsigned char *)v->value, -1, -1,
1161 mval))
1162 return 0;
1163
1164 }
1165
1166 if (!X509_NAME_entry_count(subj)) {
1167 BIO_printf(bio_err, "error, no objects specified in config file\n");
1168 return 0;
1169 }
1170 if (attribs) {
1171 for (i = 0; i < sk_CONF_VALUE_num(attr_sk); i++) {
1172 v = sk_CONF_VALUE_value(attr_sk, i);
1173 if (!X509_REQ_add1_attr_by_txt(req, v->name, chtype,
1174 (unsigned char *)v->value, -1))
1175 return 0;
1176 }
1177 }
1178 return 1;
1179}
1180
1181static int add_DN_object(X509_NAME *n, char *text, const char *def,
1182 char *value, int nid, int n_min, int n_max,
1183 unsigned long chtype, int mval)
1184{
1185 int i, ret = 0;
68b00c23 1186 char buf[1024];
0f113f3e
MC
1187 start:
1188 if (!batch)
1189 BIO_printf(bio_err, "%s [%s]:", text, def);
1190 (void)BIO_flush(bio_err);
1191 if (value != NULL) {
7644a9ae
RS
1192 OPENSSL_strlcpy(buf, value, sizeof buf);
1193 OPENSSL_strlcat(buf, "\n", sizeof buf);
0f113f3e
MC
1194 BIO_printf(bio_err, "%s\n", value);
1195 } else {
1196 buf[0] = '\0';
1197 if (!batch) {
1198 if (!fgets(buf, sizeof buf, stdin))
1199 return 0;
1200 } else {
1201 buf[0] = '\n';
1202 buf[1] = '\0';
1203 }
1204 }
1205
1206 if (buf[0] == '\0')
1207 return (0);
1208 else if (buf[0] == '\n') {
1209 if ((def == NULL) || (def[0] == '\0'))
1210 return (1);
7644a9ae
RS
1211 OPENSSL_strlcpy(buf, def, sizeof buf);
1212 OPENSSL_strlcat(buf, "\n", sizeof buf);
0f113f3e
MC
1213 } else if ((buf[0] == '.') && (buf[1] == '\n'))
1214 return (1);
1215
1216 i = strlen(buf);
1217 if (buf[i - 1] != '\n') {
1218 BIO_printf(bio_err, "weird input :-(\n");
1219 return (0);
1220 }
1221 buf[--i] = '\0';
a53955d8 1222#ifdef CHARSET_EBCDIC
0f113f3e 1223 ebcdic2ascii(buf, buf, i);
a53955d8 1224#endif
0f113f3e
MC
1225 if (!req_check_len(i, n_min, n_max)) {
1226 if (batch || value)
1227 return 0;
1228 goto start;
1229 }
1230
1231 if (!X509_NAME_add_entry_by_NID(n, nid, chtype,
1232 (unsigned char *)buf, -1, -1, mval))
1233 goto err;
1234 ret = 1;
1235 err:
1236 return (ret);
1237}
d02b48c6 1238
7d727231 1239static int add_attribute_object(X509_REQ *req, char *text, const char *def,
0f113f3e
MC
1240 char *value, int nid, int n_min,
1241 int n_max, unsigned long chtype)
1242{
1243 int i;
1244 static char buf[1024];
1245
1246 start:
1247 if (!batch)
1248 BIO_printf(bio_err, "%s [%s]:", text, def);
1249 (void)BIO_flush(bio_err);
1250 if (value != NULL) {
7644a9ae
RS
1251 OPENSSL_strlcpy(buf, value, sizeof buf);
1252 OPENSSL_strlcat(buf, "\n", sizeof buf);
0f113f3e
MC
1253 BIO_printf(bio_err, "%s\n", value);
1254 } else {
1255 buf[0] = '\0';
1256 if (!batch) {
1257 if (!fgets(buf, sizeof buf, stdin))
1258 return 0;
1259 } else {
1260 buf[0] = '\n';
1261 buf[1] = '\0';
1262 }
1263 }
1264
1265 if (buf[0] == '\0')
1266 return (0);
1267 else if (buf[0] == '\n') {
1268 if ((def == NULL) || (def[0] == '\0'))
1269 return (1);
7644a9ae
RS
1270 OPENSSL_strlcpy(buf, def, sizeof buf);
1271 OPENSSL_strlcat(buf, "\n", sizeof buf);
0f113f3e
MC
1272 } else if ((buf[0] == '.') && (buf[1] == '\n'))
1273 return (1);
1274
1275 i = strlen(buf);
1276 if (buf[i - 1] != '\n') {
1277 BIO_printf(bio_err, "weird input :-(\n");
1278 return (0);
1279 }
1280 buf[--i] = '\0';
97d8e82c 1281#ifdef CHARSET_EBCDIC
0f113f3e 1282 ebcdic2ascii(buf, buf, i);
97d8e82c 1283#endif
0f113f3e
MC
1284 if (!req_check_len(i, n_min, n_max)) {
1285 if (batch || value)
1286 return 0;
1287 goto start;
1288 }
1289
1290 if (!X509_REQ_add1_attr_by_NID(req, nid, chtype,
1291 (unsigned char *)buf, -1)) {
1292 BIO_printf(bio_err, "Error adding attribute\n");
1293 ERR_print_errors(bio_err);
1294 goto err;
1295 }
1296
1297 return (1);
1298 err:
1299 return (0);
1300}
d02b48c6 1301
b7a26e6d 1302static int req_check_len(int len, int n_min, int n_max)
0f113f3e
MC
1303{
1304 if ((n_min > 0) && (len < n_min)) {
1305 BIO_printf(bio_err,
1306 "string is too short, it needs to be at least %d bytes long\n",
1307 n_min);
1308 return (0);
1309 }
1310 if ((n_max >= 0) && (len > n_max)) {
1311 BIO_printf(bio_err,
1312 "string is too long, it needs to be less than %d bytes long\n",
1313 n_max);
1314 return (0);
1315 }
1316 return (1);
1317}
a43aa73e
DSH
1318
1319/* Check if the end of a string matches 'end' */
7d727231 1320static int check_end(const char *str, const char *end)
a43aa73e 1321{
0f113f3e
MC
1322 int elen, slen;
1323 const char *tmp;
1324 elen = strlen(end);
1325 slen = strlen(str);
1326 if (elen > slen)
1327 return 1;
1328 tmp = str + slen - elen;
1329 return strcmp(tmp, end);
a43aa73e 1330}
959e8dfe 1331
7e1b7485 1332static EVP_PKEY_CTX *set_keygen_ctx(const char *gstr,
0f113f3e
MC
1333 int *pkey_type, long *pkeylen,
1334 char **palgnam, ENGINE *keygen_engine)
1335{
1336 EVP_PKEY_CTX *gctx = NULL;
1337 EVP_PKEY *param = NULL;
1338 long keylen = -1;
1339 BIO *pbio = NULL;
1340 const char *paramfile = NULL;
1341
1342 if (gstr == NULL) {
1343 *pkey_type = EVP_PKEY_RSA;
1344 keylen = *pkeylen;
1345 } else if (gstr[0] >= '0' && gstr[0] <= '9') {
1346 *pkey_type = EVP_PKEY_RSA;
1347 keylen = atol(gstr);
1348 *pkeylen = keylen;
86885c28 1349 } else if (strncmp(gstr, "param:", 6) == 0)
0f113f3e
MC
1350 paramfile = gstr + 6;
1351 else {
1352 const char *p = strchr(gstr, ':');
1353 int len;
1354 ENGINE *tmpeng;
1355 const EVP_PKEY_ASN1_METHOD *ameth;
1356
1357 if (p)
1358 len = p - gstr;
1359 else
1360 len = strlen(gstr);
1361 /*
1362 * The lookup of a the string will cover all engines so keep a note
1363 * of the implementation.
1364 */
1365
1366 ameth = EVP_PKEY_asn1_find_str(&tmpeng, gstr, len);
1367
1368 if (!ameth) {
7e1b7485 1369 BIO_printf(bio_err, "Unknown algorithm %.*s\n", len, gstr);
0f113f3e
MC
1370 return NULL;
1371 }
1372
1373 EVP_PKEY_asn1_get0_info(NULL, pkey_type, NULL, NULL, NULL, ameth);
01b8b3c7 1374#ifndef OPENSSL_NO_ENGINE
0f113f3e
MC
1375 if (tmpeng)
1376 ENGINE_finish(tmpeng);
01b8b3c7 1377#endif
0f113f3e
MC
1378 if (*pkey_type == EVP_PKEY_RSA) {
1379 if (p) {
1380 keylen = atol(p + 1);
1381 *pkeylen = keylen;
1382 } else
1383 keylen = *pkeylen;
1384 } else if (p)
1385 paramfile = p + 1;
1386 }
1387
1388 if (paramfile) {
1389 pbio = BIO_new_file(paramfile, "r");
1390 if (!pbio) {
7e1b7485 1391 BIO_printf(bio_err, "Can't open parameter file %s\n", paramfile);
0f113f3e
MC
1392 return NULL;
1393 }
1394 param = PEM_read_bio_Parameters(pbio, NULL);
1395
1396 if (!param) {
1397 X509 *x;
1398 (void)BIO_reset(pbio);
1399 x = PEM_read_bio_X509(pbio, NULL, NULL, NULL);
1400 if (x) {
1401 param = X509_get_pubkey(x);
1402 X509_free(x);
1403 }
1404 }
1405
1406 BIO_free(pbio);
1407
1408 if (!param) {
7e1b7485 1409 BIO_printf(bio_err, "Error reading parameter file %s\n", paramfile);
0f113f3e
MC
1410 return NULL;
1411 }
1412 if (*pkey_type == -1)
1413 *pkey_type = EVP_PKEY_id(param);
1414 else if (*pkey_type != EVP_PKEY_base_id(param)) {
7e1b7485 1415 BIO_printf(bio_err, "Key Type does not match parameters\n");
0f113f3e
MC
1416 EVP_PKEY_free(param);
1417 return NULL;
1418 }
1419 }
1420
1421 if (palgnam) {
1422 const EVP_PKEY_ASN1_METHOD *ameth;
1423 ENGINE *tmpeng;
1424 const char *anam;
1425 ameth = EVP_PKEY_asn1_find(&tmpeng, *pkey_type);
1426 if (!ameth) {
7e1b7485 1427 BIO_puts(bio_err, "Internal error: can't find key algorithm\n");
0f113f3e
MC
1428 return NULL;
1429 }
1430 EVP_PKEY_asn1_get0_info(NULL, NULL, NULL, NULL, &anam, ameth);
7644a9ae 1431 *palgnam = OPENSSL_strdup(anam);
01b8b3c7 1432#ifndef OPENSSL_NO_ENGINE
0f113f3e
MC
1433 if (tmpeng)
1434 ENGINE_finish(tmpeng);
01b8b3c7 1435#endif
0f113f3e
MC
1436 }
1437
1438 if (param) {
1439 gctx = EVP_PKEY_CTX_new(param, keygen_engine);
1440 *pkeylen = EVP_PKEY_bits(param);
1441 EVP_PKEY_free(param);
1442 } else
1443 gctx = EVP_PKEY_CTX_new_id(*pkey_type, keygen_engine);
1444
96487cdd 1445 if (gctx == NULL) {
7e1b7485
RS
1446 BIO_puts(bio_err, "Error allocating keygen context\n");
1447 ERR_print_errors(bio_err);
0f113f3e
MC
1448 return NULL;
1449 }
1450
1451 if (EVP_PKEY_keygen_init(gctx) <= 0) {
7e1b7485
RS
1452 BIO_puts(bio_err, "Error initializing keygen context\n");
1453 ERR_print_errors(bio_err);
0f113f3e
MC
1454 return NULL;
1455 }
d4f0339c 1456#ifndef OPENSSL_NO_RSA
0f113f3e
MC
1457 if ((*pkey_type == EVP_PKEY_RSA) && (keylen != -1)) {
1458 if (EVP_PKEY_CTX_set_rsa_keygen_bits(gctx, keylen) <= 0) {
7e1b7485
RS
1459 BIO_puts(bio_err, "Error setting RSA keysize\n");
1460 ERR_print_errors(bio_err);
0f113f3e
MC
1461 EVP_PKEY_CTX_free(gctx);
1462 return NULL;
1463 }
1464 }
d4f0339c 1465#endif
959e8dfe 1466
0f113f3e
MC
1467 return gctx;
1468}
959e8dfe
DSH
1469
1470static int genpkey_cb(EVP_PKEY_CTX *ctx)
0f113f3e
MC
1471{
1472 char c = '*';
1473 BIO *b = EVP_PKEY_CTX_get_app_data(ctx);
1474 int p;
1475 p = EVP_PKEY_CTX_get_keygen_info(ctx, 0);
1476 if (p == 0)
1477 c = '.';
1478 if (p == 1)
1479 c = '+';
1480 if (p == 2)
1481 c = '*';
1482 if (p == 3)
1483 c = '\n';
1484 BIO_write(b, &c, 1);
1485 (void)BIO_flush(b);
1486 return 1;
1487}
cdb182b5 1488
7e1b7485 1489static int do_sign_init(EVP_MD_CTX *ctx, EVP_PKEY *pkey,
0f113f3e
MC
1490 const EVP_MD *md, STACK_OF(OPENSSL_STRING) *sigopts)
1491{
1492 EVP_PKEY_CTX *pkctx = NULL;
1493 int i;
7e1b7485 1494
6e59a892
RL
1495 if (ctx == NULL)
1496 return 0;
0f113f3e
MC
1497 if (!EVP_DigestSignInit(ctx, &pkctx, md, NULL, pkey))
1498 return 0;
1499 for (i = 0; i < sk_OPENSSL_STRING_num(sigopts); i++) {
1500 char *sigopt = sk_OPENSSL_STRING_value(sigopts, i);
1501 if (pkey_ctrl_string(pkctx, sigopt) <= 0) {
7e1b7485 1502 BIO_printf(bio_err, "parameter error \"%s\"\n", sigopt);
0f113f3e
MC
1503 ERR_print_errors(bio_err);
1504 return 0;
1505 }
1506 }
1507 return 1;
1508}
cdb182b5 1509
7e1b7485 1510int do_X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md,
0f113f3e
MC
1511 STACK_OF(OPENSSL_STRING) *sigopts)
1512{
1513 int rv;
bfb0641f 1514 EVP_MD_CTX *mctx = EVP_MD_CTX_new();
7e1b7485 1515
6e59a892
RL
1516 rv = do_sign_init(mctx, pkey, md, sigopts);
1517 /* Note: X509_sign_ctx() calls ASN1_item_sign_ctx(), which destroys
1518 * the EVP_MD_CTX we send it, so only destroy it here if the former
1519 * isn't called */
0f113f3e 1520 if (rv > 0)
6e59a892
RL
1521 rv = X509_sign_ctx(x, mctx);
1522 else
bfb0641f 1523 EVP_MD_CTX_free(mctx);
0f113f3e
MC
1524 return rv > 0 ? 1 : 0;
1525}
cdb182b5 1526
7e1b7485 1527int do_X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md,
0f113f3e
MC
1528 STACK_OF(OPENSSL_STRING) *sigopts)
1529{
1530 int rv;
bfb0641f 1531 EVP_MD_CTX *mctx = EVP_MD_CTX_new();
6e59a892
RL
1532 rv = do_sign_init(mctx, pkey, md, sigopts);
1533 /* Note: X509_REQ_sign_ctx() calls ASN1_item_sign_ctx(), which destroys
1534 * the EVP_MD_CTX we send it, so only destroy it here if the former
1535 * isn't called */
0f113f3e 1536 if (rv > 0)
6e59a892
RL
1537 rv = X509_REQ_sign_ctx(x, mctx);
1538 else
bfb0641f 1539 EVP_MD_CTX_free(mctx);
0f113f3e
MC
1540 return rv > 0 ? 1 : 0;
1541}
4c623cdd 1542
7e1b7485 1543int do_X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md,
0f113f3e
MC
1544 STACK_OF(OPENSSL_STRING) *sigopts)
1545{
1546 int rv;
bfb0641f 1547 EVP_MD_CTX *mctx = EVP_MD_CTX_new();
6e59a892
RL
1548 rv = do_sign_init(mctx, pkey, md, sigopts);
1549 /* Note: X509_CRL_sign_ctx() calls ASN1_item_sign_ctx(), which destroys
1550 * the EVP_MD_CTX we send it, so only destroy it here if the former
1551 * isn't called */
0f113f3e 1552 if (rv > 0)
6e59a892
RL
1553 rv = X509_CRL_sign_ctx(x, mctx);
1554 else
bfb0641f 1555 EVP_MD_CTX_free(mctx);
0f113f3e
MC
1556 return rv > 0 ? 1 : 0;
1557}