fix copy paste error in ec_GF2m function prototypes
[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") == 0)
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_free(out);
616         BIO_printf(bio_err, "-----\n");
617     }
618
619     if (!newreq) {
620         /*
621          * Since we are using a pre-existing certificate request, the kludge
622          * 'format' info should not be changed.
623          */
624         kludge = -1;
625         in = bio_open_default(infile, RB(informat));
626         if (in == NULL)
627             goto end;
628
629         if (informat == FORMAT_ASN1)
630             req = d2i_X509_REQ_bio(in, NULL);
631         else
632             req = PEM_read_bio_X509_REQ(in, NULL, NULL, NULL);
633         if (req == NULL) {
634             BIO_printf(bio_err, "unable to load X509 request\n");
635             goto end;
636         }
637     }
638
639     if (newreq || x509) {
640         if (pkey == NULL) {
641             BIO_printf(bio_err, "you need to specify a private key\n");
642             goto end;
643         }
644
645         if (req == NULL) {
646             req = X509_REQ_new();
647             if (req == NULL) {
648                 goto end;
649             }
650
651             i = make_REQ(req, pkey, subj, multirdn, !x509, chtype);
652             subj = NULL;        /* done processing '-subj' option */
653             if ((kludge > 0)
654                 && !sk_X509_ATTRIBUTE_num(req->req_info->attributes)) {
655                 sk_X509_ATTRIBUTE_free(req->req_info->attributes);
656                 req->req_info->attributes = NULL;
657             }
658             if (!i) {
659                 BIO_printf(bio_err, "problems making Certificate Request\n");
660                 goto end;
661             }
662         }
663         if (x509) {
664             EVP_PKEY *tmppkey;
665             X509V3_CTX ext_ctx;
666             if ((x509ss = X509_new()) == NULL)
667                 goto end;
668
669             /* Set version to V3 */
670             if (extensions && !X509_set_version(x509ss, 2))
671                 goto end;
672             if (serial) {
673                 if (!X509_set_serialNumber(x509ss, serial))
674                     goto end;
675             } else {
676                 if (!rand_serial(NULL, X509_get_serialNumber(x509ss)))
677                     goto end;
678             }
679
680             if (!X509_set_issuer_name(x509ss, X509_REQ_get_subject_name(req)))
681                 goto end;
682             if (!X509_gmtime_adj(X509_get_notBefore(x509ss), 0))
683                 goto end;
684             if (!X509_time_adj_ex(X509_get_notAfter(x509ss), days, 0, NULL))
685                 goto end;
686             if (!X509_set_subject_name
687                 (x509ss, X509_REQ_get_subject_name(req)))
688                 goto end;
689             tmppkey = X509_REQ_get_pubkey(req);
690             if (!tmppkey || !X509_set_pubkey(x509ss, tmppkey))
691                 goto end;
692             EVP_PKEY_free(tmppkey);
693
694             /* Set up V3 context struct */
695
696             X509V3_set_ctx(&ext_ctx, x509ss, x509ss, NULL, NULL, 0);
697             X509V3_set_nconf(&ext_ctx, req_conf);
698
699             /* Add extensions */
700             if (extensions && !X509V3_EXT_add_nconf(req_conf,
701                                                     &ext_ctx, extensions,
702                                                     x509ss)) {
703                 BIO_printf(bio_err, "Error Loading extension section %s\n",
704                            extensions);
705                 goto end;
706             }
707
708             i = do_X509_sign(x509ss, pkey, digest, sigopts);
709             if (!i) {
710                 ERR_print_errors(bio_err);
711                 goto end;
712             }
713         } else {
714             X509V3_CTX ext_ctx;
715
716             /* Set up V3 context struct */
717
718             X509V3_set_ctx(&ext_ctx, NULL, NULL, req, NULL, 0);
719             X509V3_set_nconf(&ext_ctx, req_conf);
720
721             /* Add extensions */
722             if (req_exts && !X509V3_EXT_REQ_add_nconf(req_conf,
723                                                       &ext_ctx, req_exts,
724                                                       req)) {
725                 BIO_printf(bio_err, "Error Loading extension section %s\n",
726                            req_exts);
727                 goto end;
728             }
729             i = do_X509_REQ_sign(req, pkey, digest, sigopts);
730             if (!i) {
731                 ERR_print_errors(bio_err);
732                 goto end;
733             }
734         }
735     }
736
737     if (subj && x509) {
738         BIO_printf(bio_err, "Cannot modify certificate subject\n");
739         goto end;
740     }
741
742     if (subj && !x509) {
743         if (verbose) {
744             BIO_printf(bio_err, "Modifying Request's Subject\n");
745             print_name(bio_err, "old subject=",
746                        X509_REQ_get_subject_name(req), nmflag);
747         }
748
749         if (build_subject(req, subj, chtype, multirdn) == 0) {
750             BIO_printf(bio_err, "ERROR: cannot modify subject\n");
751             ret = 1;
752             goto end;
753         }
754
755         req->req_info->enc.modified = 1;
756
757         if (verbose) {
758             print_name(bio_err, "new subject=",
759                        X509_REQ_get_subject_name(req), nmflag);
760         }
761     }
762
763     if (verify && !x509) {
764         int tmp = 0;
765
766         if (pkey == NULL) {
767             pkey = X509_REQ_get_pubkey(req);
768             tmp = 1;
769             if (pkey == NULL)
770                 goto end;
771         }
772
773         i = X509_REQ_verify(req, pkey);
774         if (tmp) {
775             EVP_PKEY_free(pkey);
776             pkey = NULL;
777         }
778
779         if (i < 0) {
780             goto end;
781         } else if (i == 0) {
782             BIO_printf(bio_err, "verify failure\n");
783             ERR_print_errors(bio_err);
784         } else                  /* if (i > 0) */
785             BIO_printf(bio_err, "verify OK\n");
786     }
787
788     if (noout && !text && !modulus && !subject && !pubkey) {
789         ret = 0;
790         goto end;
791     }
792
793     out = bio_open_default(outfile,
794                            keyout != NULL && outfile != NULL &&
795                            strcmp(keyout, outfile) == 0 ? "a" : "w");
796     if (out == NULL)
797         goto end;
798
799     if (pubkey) {
800         EVP_PKEY *tpubkey;
801         tpubkey = X509_REQ_get_pubkey(req);
802         if (tpubkey == NULL) {
803             BIO_printf(bio_err, "Error getting public key\n");
804             ERR_print_errors(bio_err);
805             goto end;
806         }
807         PEM_write_bio_PUBKEY(out, tpubkey);
808         EVP_PKEY_free(tpubkey);
809     }
810
811     if (text) {
812         if (x509)
813             X509_print_ex(out, x509ss, nmflag, reqflag);
814         else
815             X509_REQ_print_ex(out, req, nmflag, reqflag);
816     }
817
818     if (subject) {
819         if (x509)
820             print_name(out, "subject=", X509_get_subject_name(x509ss),
821                        nmflag);
822         else
823             print_name(out, "subject=", X509_REQ_get_subject_name(req),
824                        nmflag);
825     }
826
827     if (modulus) {
828         EVP_PKEY *tpubkey;
829
830         if (x509)
831             tpubkey = X509_get_pubkey(x509ss);
832         else
833             tpubkey = X509_REQ_get_pubkey(req);
834         if (tpubkey == NULL) {
835             fprintf(stdout, "Modulus=unavailable\n");
836             goto end;
837         }
838         fprintf(stdout, "Modulus=");
839 #ifndef OPENSSL_NO_RSA
840         if (EVP_PKEY_base_id(tpubkey) == EVP_PKEY_RSA)
841             BN_print(out, tpubkey->pkey.rsa->n);
842         else
843 #endif
844             fprintf(stdout, "Wrong Algorithm type");
845         EVP_PKEY_free(tpubkey);
846         fprintf(stdout, "\n");
847     }
848
849     if (!noout && !x509) {
850         if (outformat == FORMAT_ASN1)
851             i = i2d_X509_REQ_bio(out, req);
852         else if (newhdr)
853             i = PEM_write_bio_X509_REQ_NEW(out, req);
854         else
855             i = PEM_write_bio_X509_REQ(out, req);
856         if (!i) {
857             BIO_printf(bio_err, "unable to write X509 request\n");
858             goto end;
859         }
860     }
861     if (!noout && x509 && (x509ss != NULL)) {
862         if (outformat == FORMAT_ASN1)
863             i = i2d_X509_bio(out, x509ss);
864         else
865             i = PEM_write_bio_X509(out, x509ss);
866         if (!i) {
867             BIO_printf(bio_err, "unable to write X509 certificate\n");
868             goto end;
869         }
870     }
871     ret = 0;
872  end:
873     if (ret) {
874         ERR_print_errors(bio_err);
875     }
876     if (req_conf != config)
877         NCONF_free(req_conf);
878     BIO_free(in);
879     BIO_free_all(out);
880     EVP_PKEY_free(pkey);
881     EVP_PKEY_CTX_free(genctx);
882     sk_OPENSSL_STRING_free(pkeyopts);
883     sk_OPENSSL_STRING_free(sigopts);
884 #ifndef OPENSSL_NO_ENGINE
885     ENGINE_free(gen_eng);
886 #endif
887     OPENSSL_free(keyalgstr);
888     X509_REQ_free(req);
889     X509_free(x509ss);
890     ASN1_INTEGER_free(serial);
891     OPENSSL_free(passin);
892     OPENSSL_free(passout);
893     OBJ_cleanup();
894     return (ret);
895 }
896
897 static int make_REQ(X509_REQ *req, EVP_PKEY *pkey, char *subj, int multirdn,
898                     int attribs, unsigned long chtype)
899 {
900     int ret = 0, i;
901     char no_prompt = 0;
902     STACK_OF(CONF_VALUE) *dn_sk, *attr_sk = NULL;
903     char *tmp, *dn_sect, *attr_sect;
904
905     tmp = NCONF_get_string(req_conf, SECTION, PROMPT);
906     if (tmp == NULL)
907         ERR_clear_error();
908     if ((tmp != NULL) && strcmp(tmp, "no") == 0)
909         no_prompt = 1;
910
911     dn_sect = NCONF_get_string(req_conf, SECTION, DISTINGUISHED_NAME);
912     if (dn_sect == NULL) {
913         BIO_printf(bio_err, "unable to find '%s' in config\n",
914                    DISTINGUISHED_NAME);
915         goto err;
916     }
917     dn_sk = NCONF_get_section(req_conf, dn_sect);
918     if (dn_sk == NULL) {
919         BIO_printf(bio_err, "unable to get '%s' section\n", dn_sect);
920         goto err;
921     }
922
923     attr_sect = NCONF_get_string(req_conf, SECTION, ATTRIBUTES);
924     if (attr_sect == NULL) {
925         ERR_clear_error();
926         attr_sk = NULL;
927     } else {
928         attr_sk = NCONF_get_section(req_conf, attr_sect);
929         if (attr_sk == NULL) {
930             BIO_printf(bio_err, "unable to get '%s' section\n", attr_sect);
931             goto err;
932         }
933     }
934
935     /* setup version number */
936     if (!X509_REQ_set_version(req, 0L))
937         goto err;               /* version 1 */
938
939     if (subj)
940         i = build_subject(req, subj, chtype, multirdn);
941     else if (no_prompt)
942         i = auto_info(req, dn_sk, attr_sk, attribs, chtype);
943     else
944         i = prompt_info(req, dn_sk, dn_sect, attr_sk, attr_sect, attribs,
945                         chtype);
946     if (!i)
947         goto err;
948
949     if (!X509_REQ_set_pubkey(req, pkey))
950         goto err;
951
952     ret = 1;
953  err:
954     return (ret);
955 }
956
957 /*
958  * subject is expected to be in the format /type0=value0/type1=value1/type2=...
959  * where characters may be escaped by \
960  */
961 static int build_subject(X509_REQ *req, char *subject, unsigned long chtype,
962                          int multirdn)
963 {
964     X509_NAME *n;
965
966     if ((n = parse_name(subject, chtype, multirdn)) == NULL)
967         return 0;
968
969     if (!X509_REQ_set_subject_name(req, n)) {
970         X509_NAME_free(n);
971         return 0;
972     }
973     X509_NAME_free(n);
974     return 1;
975 }
976
977 static int prompt_info(X509_REQ *req,
978                        STACK_OF(CONF_VALUE) *dn_sk, char *dn_sect,
979                        STACK_OF(CONF_VALUE) *attr_sk, char *attr_sect,
980                        int attribs, unsigned long chtype)
981 {
982     int i;
983     char *p, *q;
984     char buf[100];
985     int nid, mval;
986     long n_min, n_max;
987     char *type, *value;
988     const char *def;
989     CONF_VALUE *v;
990     X509_NAME *subj;
991     subj = X509_REQ_get_subject_name(req);
992
993     if (!batch) {
994         BIO_printf(bio_err,
995                    "You are about to be asked to enter information that will be incorporated\n");
996         BIO_printf(bio_err, "into your certificate request.\n");
997         BIO_printf(bio_err,
998                    "What you are about to enter is what is called a Distinguished Name or a DN.\n");
999         BIO_printf(bio_err,
1000                    "There are quite a few fields but you can leave some blank\n");
1001         BIO_printf(bio_err,
1002                    "For some fields there will be a default value,\n");
1003         BIO_printf(bio_err,
1004                    "If you enter '.', the field will be left blank.\n");
1005         BIO_printf(bio_err, "-----\n");
1006     }
1007
1008     if (sk_CONF_VALUE_num(dn_sk)) {
1009         i = -1;
1010  start:for (;;) {
1011             i++;
1012             if (sk_CONF_VALUE_num(dn_sk) <= i)
1013                 break;
1014
1015             v = sk_CONF_VALUE_value(dn_sk, i);
1016             p = q = NULL;
1017             type = v->name;
1018             if (!check_end(type, "_min") || !check_end(type, "_max") ||
1019                 !check_end(type, "_default") || !check_end(type, "_value"))
1020                 continue;
1021             /*
1022              * Skip past any leading X. X: X, etc to allow for multiple
1023              * instances
1024              */
1025             for (p = v->name; *p; p++)
1026                 if ((*p == ':') || (*p == ',') || (*p == '.')) {
1027                     p++;
1028                     if (*p)
1029                         type = p;
1030                     break;
1031                 }
1032             if (*type == '+') {
1033                 mval = -1;
1034                 type++;
1035             } else
1036                 mval = 0;
1037             /* If OBJ not recognised ignore it */
1038             if ((nid = OBJ_txt2nid(type)) == NID_undef)
1039                 goto start;
1040             if (BIO_snprintf(buf, sizeof buf, "%s_default", v->name)
1041                 >= (int)sizeof(buf)) {
1042                 BIO_printf(bio_err, "Name '%s' too long\n", v->name);
1043                 return 0;
1044             }
1045
1046             if ((def = NCONF_get_string(req_conf, dn_sect, buf)) == NULL) {
1047                 ERR_clear_error();
1048                 def = "";
1049             }
1050
1051             BIO_snprintf(buf, sizeof buf, "%s_value", v->name);
1052             if ((value = NCONF_get_string(req_conf, dn_sect, buf)) == NULL) {
1053                 ERR_clear_error();
1054                 value = NULL;
1055             }
1056
1057             BIO_snprintf(buf, sizeof buf, "%s_min", v->name);
1058             if (!NCONF_get_number(req_conf, dn_sect, buf, &n_min)) {
1059                 ERR_clear_error();
1060                 n_min = -1;
1061             }
1062
1063             BIO_snprintf(buf, sizeof buf, "%s_max", v->name);
1064             if (!NCONF_get_number(req_conf, dn_sect, buf, &n_max)) {
1065                 ERR_clear_error();
1066                 n_max = -1;
1067             }
1068
1069             if (!add_DN_object(subj, v->value, def, value, nid,
1070                                n_min, n_max, chtype, mval))
1071                 return 0;
1072         }
1073         if (X509_NAME_entry_count(subj) == 0) {
1074             BIO_printf(bio_err,
1075                        "error, no objects specified in config file\n");
1076             return 0;
1077         }
1078
1079         if (attribs) {
1080             if ((attr_sk != NULL) && (sk_CONF_VALUE_num(attr_sk) > 0)
1081                 && (!batch)) {
1082                 BIO_printf(bio_err,
1083                            "\nPlease enter the following 'extra' attributes\n");
1084                 BIO_printf(bio_err,
1085                            "to be sent with your certificate request\n");
1086             }
1087
1088             i = -1;
1089  start2:   for (;;) {
1090                 i++;
1091                 if ((attr_sk == NULL) || (sk_CONF_VALUE_num(attr_sk) <= i))
1092                     break;
1093
1094                 v = sk_CONF_VALUE_value(attr_sk, i);
1095                 type = v->name;
1096                 if ((nid = OBJ_txt2nid(type)) == NID_undef)
1097                     goto start2;
1098
1099                 if (BIO_snprintf(buf, sizeof buf, "%s_default", type)
1100                     >= (int)sizeof(buf)) {
1101                     BIO_printf(bio_err, "Name '%s' too long\n", v->name);
1102                     return 0;
1103                 }
1104
1105                 if ((def = NCONF_get_string(req_conf, attr_sect, buf))
1106                     == NULL) {
1107                     ERR_clear_error();
1108                     def = "";
1109                 }
1110
1111                 BIO_snprintf(buf, sizeof buf, "%s_value", type);
1112                 if ((value = NCONF_get_string(req_conf, attr_sect, buf))
1113                     == NULL) {
1114                     ERR_clear_error();
1115                     value = NULL;
1116                 }
1117
1118                 BIO_snprintf(buf, sizeof buf, "%s_min", type);
1119                 if (!NCONF_get_number(req_conf, attr_sect, buf, &n_min)) {
1120                     ERR_clear_error();
1121                     n_min = -1;
1122                 }
1123
1124                 BIO_snprintf(buf, sizeof buf, "%s_max", type);
1125                 if (!NCONF_get_number(req_conf, attr_sect, buf, &n_max)) {
1126                     ERR_clear_error();
1127                     n_max = -1;
1128                 }
1129
1130                 if (!add_attribute_object(req,
1131                                           v->value, def, value, nid, n_min,
1132                                           n_max, chtype))
1133                     return 0;
1134             }
1135         }
1136     } else {
1137         BIO_printf(bio_err, "No template, please set one up.\n");
1138         return 0;
1139     }
1140
1141     return 1;
1142
1143 }
1144
1145 static int auto_info(X509_REQ *req, STACK_OF(CONF_VALUE) *dn_sk,
1146                      STACK_OF(CONF_VALUE) *attr_sk, int attribs,
1147                      unsigned long chtype)
1148 {
1149     int i;
1150     char *p, *q;
1151     char *type;
1152     CONF_VALUE *v;
1153     X509_NAME *subj;
1154
1155     subj = X509_REQ_get_subject_name(req);
1156
1157     for (i = 0; i < sk_CONF_VALUE_num(dn_sk); i++) {
1158         int mval;
1159         v = sk_CONF_VALUE_value(dn_sk, i);
1160         p = q = NULL;
1161         type = v->name;
1162         /*
1163          * Skip past any leading X. X: X, etc to allow for multiple instances
1164          */
1165         for (p = v->name; *p; p++)
1166 #ifndef CHARSET_EBCDIC
1167             if ((*p == ':') || (*p == ',') || (*p == '.')) {
1168 #else
1169             if ((*p == os_toascii[':']) || (*p == os_toascii[','])
1170                 || (*p == os_toascii['.'])) {
1171 #endif
1172                 p++;
1173                 if (*p)
1174                     type = p;
1175                 break;
1176             }
1177 #ifndef CHARSET_EBCDIC
1178         if (*p == '+')
1179 #else
1180         if (*p == os_toascii['+'])
1181 #endif
1182         {
1183             p++;
1184             mval = -1;
1185         } else
1186             mval = 0;
1187         if (!X509_NAME_add_entry_by_txt(subj, type, chtype,
1188                                         (unsigned char *)v->value, -1, -1,
1189                                         mval))
1190             return 0;
1191
1192     }
1193
1194     if (!X509_NAME_entry_count(subj)) {
1195         BIO_printf(bio_err, "error, no objects specified in config file\n");
1196         return 0;
1197     }
1198     if (attribs) {
1199         for (i = 0; i < sk_CONF_VALUE_num(attr_sk); i++) {
1200             v = sk_CONF_VALUE_value(attr_sk, i);
1201             if (!X509_REQ_add1_attr_by_txt(req, v->name, chtype,
1202                                            (unsigned char *)v->value, -1))
1203                 return 0;
1204         }
1205     }
1206     return 1;
1207 }
1208
1209 static int add_DN_object(X509_NAME *n, char *text, const char *def,
1210                          char *value, int nid, int n_min, int n_max,
1211                          unsigned long chtype, int mval)
1212 {
1213     int i, ret = 0;
1214     char buf[1024];
1215  start:
1216     if (!batch)
1217         BIO_printf(bio_err, "%s [%s]:", text, def);
1218     (void)BIO_flush(bio_err);
1219     if (value != NULL) {
1220         BUF_strlcpy(buf, value, sizeof buf);
1221         BUF_strlcat(buf, "\n", sizeof buf);
1222         BIO_printf(bio_err, "%s\n", value);
1223     } else {
1224         buf[0] = '\0';
1225         if (!batch) {
1226             if (!fgets(buf, sizeof buf, stdin))
1227                 return 0;
1228         } else {
1229             buf[0] = '\n';
1230             buf[1] = '\0';
1231         }
1232     }
1233
1234     if (buf[0] == '\0')
1235         return (0);
1236     else if (buf[0] == '\n') {
1237         if ((def == NULL) || (def[0] == '\0'))
1238             return (1);
1239         BUF_strlcpy(buf, def, sizeof buf);
1240         BUF_strlcat(buf, "\n", sizeof buf);
1241     } else if ((buf[0] == '.') && (buf[1] == '\n'))
1242         return (1);
1243
1244     i = strlen(buf);
1245     if (buf[i - 1] != '\n') {
1246         BIO_printf(bio_err, "weird input :-(\n");
1247         return (0);
1248     }
1249     buf[--i] = '\0';
1250 #ifdef CHARSET_EBCDIC
1251     ebcdic2ascii(buf, buf, i);
1252 #endif
1253     if (!req_check_len(i, n_min, n_max)) {
1254         if (batch || value)
1255             return 0;
1256         goto start;
1257     }
1258
1259     if (!X509_NAME_add_entry_by_NID(n, nid, chtype,
1260                                     (unsigned char *)buf, -1, -1, mval))
1261         goto err;
1262     ret = 1;
1263  err:
1264     return (ret);
1265 }
1266
1267 static int add_attribute_object(X509_REQ *req, char *text, const char *def,
1268                                 char *value, int nid, int n_min,
1269                                 int n_max, unsigned long chtype)
1270 {
1271     int i;
1272     static char buf[1024];
1273
1274  start:
1275     if (!batch)
1276         BIO_printf(bio_err, "%s [%s]:", text, def);
1277     (void)BIO_flush(bio_err);
1278     if (value != NULL) {
1279         BUF_strlcpy(buf, value, sizeof buf);
1280         BUF_strlcat(buf, "\n", sizeof buf);
1281         BIO_printf(bio_err, "%s\n", value);
1282     } else {
1283         buf[0] = '\0';
1284         if (!batch) {
1285             if (!fgets(buf, sizeof buf, stdin))
1286                 return 0;
1287         } else {
1288             buf[0] = '\n';
1289             buf[1] = '\0';
1290         }
1291     }
1292
1293     if (buf[0] == '\0')
1294         return (0);
1295     else if (buf[0] == '\n') {
1296         if ((def == NULL) || (def[0] == '\0'))
1297             return (1);
1298         BUF_strlcpy(buf, def, sizeof buf);
1299         BUF_strlcat(buf, "\n", sizeof buf);
1300     } else if ((buf[0] == '.') && (buf[1] == '\n'))
1301         return (1);
1302
1303     i = strlen(buf);
1304     if (buf[i - 1] != '\n') {
1305         BIO_printf(bio_err, "weird input :-(\n");
1306         return (0);
1307     }
1308     buf[--i] = '\0';
1309 #ifdef CHARSET_EBCDIC
1310     ebcdic2ascii(buf, buf, i);
1311 #endif
1312     if (!req_check_len(i, n_min, n_max)) {
1313         if (batch || value)
1314             return 0;
1315         goto start;
1316     }
1317
1318     if (!X509_REQ_add1_attr_by_NID(req, nid, chtype,
1319                                    (unsigned char *)buf, -1)) {
1320         BIO_printf(bio_err, "Error adding attribute\n");
1321         ERR_print_errors(bio_err);
1322         goto err;
1323     }
1324
1325     return (1);
1326  err:
1327     return (0);
1328 }
1329
1330 static int req_check_len(int len, int n_min, int n_max)
1331 {
1332     if ((n_min > 0) && (len < n_min)) {
1333         BIO_printf(bio_err,
1334                    "string is too short, it needs to be at least %d bytes long\n",
1335                    n_min);
1336         return (0);
1337     }
1338     if ((n_max >= 0) && (len > n_max)) {
1339         BIO_printf(bio_err,
1340                    "string is too long, it needs to be less than  %d bytes long\n",
1341                    n_max);
1342         return (0);
1343     }
1344     return (1);
1345 }
1346
1347 /* Check if the end of a string matches 'end' */
1348 static int check_end(const char *str, const char *end)
1349 {
1350     int elen, slen;
1351     const char *tmp;
1352     elen = strlen(end);
1353     slen = strlen(str);
1354     if (elen > slen)
1355         return 1;
1356     tmp = str + slen - elen;
1357     return strcmp(tmp, end);
1358 }
1359
1360 static EVP_PKEY_CTX *set_keygen_ctx(const char *gstr,
1361                                     int *pkey_type, long *pkeylen,
1362                                     char **palgnam, ENGINE *keygen_engine)
1363 {
1364     EVP_PKEY_CTX *gctx = NULL;
1365     EVP_PKEY *param = NULL;
1366     long keylen = -1;
1367     BIO *pbio = NULL;
1368     const char *paramfile = NULL;
1369
1370     if (gstr == NULL) {
1371         *pkey_type = EVP_PKEY_RSA;
1372         keylen = *pkeylen;
1373     } else if (gstr[0] >= '0' && gstr[0] <= '9') {
1374         *pkey_type = EVP_PKEY_RSA;
1375         keylen = atol(gstr);
1376         *pkeylen = keylen;
1377     } else if (strncmp(gstr, "param:", 6) == 0)
1378         paramfile = gstr + 6;
1379     else {
1380         const char *p = strchr(gstr, ':');
1381         int len;
1382         ENGINE *tmpeng;
1383         const EVP_PKEY_ASN1_METHOD *ameth;
1384
1385         if (p)
1386             len = p - gstr;
1387         else
1388             len = strlen(gstr);
1389         /*
1390          * The lookup of a the string will cover all engines so keep a note
1391          * of the implementation.
1392          */
1393
1394         ameth = EVP_PKEY_asn1_find_str(&tmpeng, gstr, len);
1395
1396         if (!ameth) {
1397             BIO_printf(bio_err, "Unknown algorithm %.*s\n", len, gstr);
1398             return NULL;
1399         }
1400
1401         EVP_PKEY_asn1_get0_info(NULL, pkey_type, NULL, NULL, NULL, ameth);
1402 #ifndef OPENSSL_NO_ENGINE
1403         if (tmpeng)
1404             ENGINE_finish(tmpeng);
1405 #endif
1406         if (*pkey_type == EVP_PKEY_RSA) {
1407             if (p) {
1408                 keylen = atol(p + 1);
1409                 *pkeylen = keylen;
1410             } else
1411                 keylen = *pkeylen;
1412         } else if (p)
1413             paramfile = p + 1;
1414     }
1415
1416     if (paramfile) {
1417         pbio = BIO_new_file(paramfile, "r");
1418         if (!pbio) {
1419             BIO_printf(bio_err, "Can't open parameter file %s\n", paramfile);
1420             return NULL;
1421         }
1422         param = PEM_read_bio_Parameters(pbio, NULL);
1423
1424         if (!param) {
1425             X509 *x;
1426             (void)BIO_reset(pbio);
1427             x = PEM_read_bio_X509(pbio, NULL, NULL, NULL);
1428             if (x) {
1429                 param = X509_get_pubkey(x);
1430                 X509_free(x);
1431             }
1432         }
1433
1434         BIO_free(pbio);
1435
1436         if (!param) {
1437             BIO_printf(bio_err, "Error reading parameter file %s\n", paramfile);
1438             return NULL;
1439         }
1440         if (*pkey_type == -1)
1441             *pkey_type = EVP_PKEY_id(param);
1442         else if (*pkey_type != EVP_PKEY_base_id(param)) {
1443             BIO_printf(bio_err, "Key Type does not match parameters\n");
1444             EVP_PKEY_free(param);
1445             return NULL;
1446         }
1447     }
1448
1449     if (palgnam) {
1450         const EVP_PKEY_ASN1_METHOD *ameth;
1451         ENGINE *tmpeng;
1452         const char *anam;
1453         ameth = EVP_PKEY_asn1_find(&tmpeng, *pkey_type);
1454         if (!ameth) {
1455             BIO_puts(bio_err, "Internal error: can't find key algorithm\n");
1456             return NULL;
1457         }
1458         EVP_PKEY_asn1_get0_info(NULL, NULL, NULL, NULL, &anam, ameth);
1459         *palgnam = BUF_strdup(anam);
1460 #ifndef OPENSSL_NO_ENGINE
1461         if (tmpeng)
1462             ENGINE_finish(tmpeng);
1463 #endif
1464     }
1465
1466     if (param) {
1467         gctx = EVP_PKEY_CTX_new(param, keygen_engine);
1468         *pkeylen = EVP_PKEY_bits(param);
1469         EVP_PKEY_free(param);
1470     } else
1471         gctx = EVP_PKEY_CTX_new_id(*pkey_type, keygen_engine);
1472
1473     if (!gctx) {
1474         BIO_puts(bio_err, "Error allocating keygen context\n");
1475         ERR_print_errors(bio_err);
1476         return NULL;
1477     }
1478
1479     if (EVP_PKEY_keygen_init(gctx) <= 0) {
1480         BIO_puts(bio_err, "Error initializing keygen context\n");
1481         ERR_print_errors(bio_err);
1482         return NULL;
1483     }
1484 #ifndef OPENSSL_NO_RSA
1485     if ((*pkey_type == EVP_PKEY_RSA) && (keylen != -1)) {
1486         if (EVP_PKEY_CTX_set_rsa_keygen_bits(gctx, keylen) <= 0) {
1487             BIO_puts(bio_err, "Error setting RSA keysize\n");
1488             ERR_print_errors(bio_err);
1489             EVP_PKEY_CTX_free(gctx);
1490             return NULL;
1491         }
1492     }
1493 #endif
1494
1495     return gctx;
1496 }
1497
1498 static int genpkey_cb(EVP_PKEY_CTX *ctx)
1499 {
1500     char c = '*';
1501     BIO *b = EVP_PKEY_CTX_get_app_data(ctx);
1502     int p;
1503     p = EVP_PKEY_CTX_get_keygen_info(ctx, 0);
1504     if (p == 0)
1505         c = '.';
1506     if (p == 1)
1507         c = '+';
1508     if (p == 2)
1509         c = '*';
1510     if (p == 3)
1511         c = '\n';
1512     BIO_write(b, &c, 1);
1513     (void)BIO_flush(b);
1514     return 1;
1515 }
1516
1517 static int do_sign_init(EVP_MD_CTX *ctx, EVP_PKEY *pkey,
1518                         const EVP_MD *md, STACK_OF(OPENSSL_STRING) *sigopts)
1519 {
1520     EVP_PKEY_CTX *pkctx = NULL;
1521     int i;
1522
1523     EVP_MD_CTX_init(ctx);
1524     if (!EVP_DigestSignInit(ctx, &pkctx, md, NULL, pkey))
1525         return 0;
1526     for (i = 0; i < sk_OPENSSL_STRING_num(sigopts); i++) {
1527         char *sigopt = sk_OPENSSL_STRING_value(sigopts, i);
1528         if (pkey_ctrl_string(pkctx, sigopt) <= 0) {
1529             BIO_printf(bio_err, "parameter error \"%s\"\n", sigopt);
1530             ERR_print_errors(bio_err);
1531             return 0;
1532         }
1533     }
1534     return 1;
1535 }
1536
1537 int do_X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md,
1538                  STACK_OF(OPENSSL_STRING) *sigopts)
1539 {
1540     int rv;
1541     EVP_MD_CTX mctx;
1542
1543     EVP_MD_CTX_init(&mctx);
1544     rv = do_sign_init(&mctx, pkey, md, sigopts);
1545     if (rv > 0)
1546         rv = X509_sign_ctx(x, &mctx);
1547     EVP_MD_CTX_cleanup(&mctx);
1548     return rv > 0 ? 1 : 0;
1549 }
1550
1551 int do_X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md,
1552                      STACK_OF(OPENSSL_STRING) *sigopts)
1553 {
1554     int rv;
1555     EVP_MD_CTX mctx;
1556
1557     EVP_MD_CTX_init(&mctx);
1558     rv = do_sign_init(&mctx, pkey, md, sigopts);
1559     if (rv > 0)
1560         rv = X509_REQ_sign_ctx(x, &mctx);
1561     EVP_MD_CTX_cleanup(&mctx);
1562     return rv > 0 ? 1 : 0;
1563 }
1564
1565 int do_X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md,
1566                      STACK_OF(OPENSSL_STRING) *sigopts)
1567 {
1568     int rv;
1569     EVP_MD_CTX mctx;
1570
1571     EVP_MD_CTX_init(&mctx);
1572     rv = do_sign_init(&mctx, pkey, md, sigopts);
1573     if (rv > 0)
1574         rv = X509_CRL_sign_ctx(x, &mctx);
1575     EVP_MD_CTX_cleanup(&mctx);
1576     return rv > 0 ? 1 : 0;
1577 }