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