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