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