2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
60 * Until the key-gen callbacks are modified to use newer prototypes, we allow
61 * deprecated functions for openssl-internal code
63 #ifdef OPENSSL_NO_DEPRECATED
64 # undef OPENSSL_NO_DEPRECATED
71 #ifdef OPENSSL_NO_STDIO
75 #include <openssl/bio.h>
76 #include <openssl/evp.h>
77 #include <openssl/conf.h>
78 #include <openssl/err.h>
79 #include <openssl/asn1.h>
80 #include <openssl/x509.h>
81 #include <openssl/x509v3.h>
82 #include <openssl/objects.h>
83 #include <openssl/pem.h>
84 #include <openssl/bn.h>
85 #ifndef OPENSSL_NO_RSA
86 # include <openssl/rsa.h>
88 #ifndef OPENSSL_NO_DSA
89 # include <openssl/dsa.h>
94 #define BITS "default_bits"
95 #define KEYFILE "default_keyfile"
96 #define PROMPT "prompt"
97 #define DISTINGUISHED_NAME "distinguished_name"
98 #define ATTRIBUTES "attributes"
99 #define V3_EXTENSIONS "x509_extensions"
100 #define REQ_EXTENSIONS "req_extensions"
101 #define STRING_MASK "string_mask"
102 #define UTF8_IN "utf8"
104 #define DEFAULT_KEY_LENGTH 512
105 #define MIN_KEY_LENGTH 384
108 #define PROG req_main
111 * -inform arg - input format - default PEM (DER or PEM)
112 * -outform arg - output format - default PEM
113 * -in arg - input file - default stdin
114 * -out arg - output file - default stdout
115 * -verify - check request signature
116 * -noout - don't print stuff out.
117 * -text - print out human readable text.
118 * -nodes - no des encryption
119 * -config file - Load configuration file.
120 * -key file - make a request using key in file (or use it for verification).
121 * -keyform arg - key file format.
122 * -rand file(s) - load the file(s) into the PRNG.
123 * -newkey - make a key and a request.
124 * -modulus - print RSA modulus.
125 * -pubkey - output Public Key.
126 * -x509 - output a self signed X509 structure instead.
127 * -asn1-kludge - output new certificate request in a format that some CA's
128 * require. This format is wrong
131 static int make_REQ(X509_REQ
*req
, EVP_PKEY
*pkey
, char *dn
, int mutlirdn
,
132 int attribs
, unsigned long chtype
);
133 static int build_subject(X509_REQ
*req
, char *subj
, unsigned long chtype
,
135 static int prompt_info(X509_REQ
*req
,
136 STACK_OF(CONF_VALUE
) *dn_sk
, char *dn_sect
,
137 STACK_OF(CONF_VALUE
) *attr_sk
, char *attr_sect
,
138 int attribs
, unsigned long chtype
);
139 static int auto_info(X509_REQ
*req
, STACK_OF(CONF_VALUE
) *sk
,
140 STACK_OF(CONF_VALUE
) *attr
, int attribs
,
141 unsigned long chtype
);
142 static int add_attribute_object(X509_REQ
*req
, char *text
, const char *def
,
143 char *value
, int nid
, int n_min
, int n_max
,
144 unsigned long chtype
);
145 static int add_DN_object(X509_NAME
*n
, char *text
, const char *def
,
146 char *value
, int nid
, int n_min
, int n_max
,
147 unsigned long chtype
, int mval
);
148 static int genpkey_cb(EVP_PKEY_CTX
*ctx
);
149 static int req_check_len(int len
, int n_min
, int n_max
);
150 static int check_end(const char *str
, const char *end
);
151 static EVP_PKEY_CTX
*set_keygen_ctx(BIO
*err
, const char *gstr
,
152 int *pkey_type
, long *pkeylen
,
153 char **palgnam
, ENGINE
*keygen_engine
);
155 static char *default_config_file
= NULL
;
157 static CONF
*req_conf
= NULL
;
158 static int batch
= 0;
160 int MAIN(int, char **);
162 int MAIN(int argc
, char **argv
)
164 ENGINE
*e
= NULL
, *gen_eng
= NULL
;
165 unsigned long nmflag
= 0, reqflag
= 0;
166 int ex
= 1, x509
= 0, days
= 30;
168 X509_REQ
*req
= NULL
;
169 EVP_PKEY_CTX
*genctx
= NULL
;
170 const char *keyalg
= NULL
;
171 char *keyalgstr
= NULL
;
172 STACK_OF(OPENSSL_STRING
) *pkeyopts
= NULL
, *sigopts
= NULL
;
173 EVP_PKEY
*pkey
= NULL
;
174 int i
= 0, badops
= 0, newreq
= 0, verbose
= 0, pkey_type
= -1;
176 BIO
*in
= NULL
, *out
= NULL
;
177 int informat
, outformat
, verify
= 0, noout
= 0, text
= 0, keyform
=
179 int nodes
= 0, kludge
= 0, newhdr
= 0, subject
= 0, pubkey
= 0;
180 char *infile
, *outfile
, *prog
, *keyfile
= NULL
, *template =
181 NULL
, *keyout
= NULL
;
182 #ifndef OPENSSL_NO_ENGINE
185 char *extensions
= NULL
;
186 char *req_exts
= NULL
;
187 const EVP_CIPHER
*cipher
= NULL
;
188 ASN1_INTEGER
*serial
= NULL
;
191 char *passargin
= NULL
, *passargout
= NULL
;
192 char *passin
= NULL
, *passout
= NULL
;
196 const EVP_MD
*md_alg
= NULL
, *digest
= NULL
;
197 unsigned long chtype
= MBSTRING_ASC
;
204 #ifndef OPENSSL_NO_DES
205 cipher
= EVP_des_ede3_cbc();
210 if ((bio_err
= BIO_new(BIO_s_file())) != NULL
)
211 BIO_set_fp(bio_err
, stderr
, BIO_NOCLOSE
| BIO_FP_TEXT
);
215 informat
= FORMAT_PEM
;
216 outformat
= FORMAT_PEM
;
222 if (strcmp(*argv
, "-inform") == 0) {
225 informat
= str2fmt(*(++argv
));
226 } else if (strcmp(*argv
, "-outform") == 0) {
229 outformat
= str2fmt(*(++argv
));
231 #ifndef OPENSSL_NO_ENGINE
232 else if (strcmp(*argv
, "-engine") == 0) {
236 } else if (strcmp(*argv
, "-keygen_engine") == 0) {
239 gen_eng
= ENGINE_by_id(*(++argv
));
240 if (gen_eng
== NULL
) {
241 BIO_printf(bio_err
, "Can't find keygen engine %s\n", *argv
);
246 else if (strcmp(*argv
, "-key") == 0) {
250 } else if (strcmp(*argv
, "-pubkey") == 0) {
252 } else if (strcmp(*argv
, "-new") == 0) {
254 } else if (strcmp(*argv
, "-config") == 0) {
257 template = *(++argv
);
258 } else if (strcmp(*argv
, "-keyform") == 0) {
261 keyform
= str2fmt(*(++argv
));
262 } else if (strcmp(*argv
, "-in") == 0) {
266 } else if (strcmp(*argv
, "-out") == 0) {
270 } else if (strcmp(*argv
, "-keyout") == 0) {
274 } else if (strcmp(*argv
, "-passin") == 0) {
277 passargin
= *(++argv
);
278 } else if (strcmp(*argv
, "-passout") == 0) {
281 passargout
= *(++argv
);
282 } else if (strcmp(*argv
, "-rand") == 0) {
286 } else if (strcmp(*argv
, "-newkey") == 0) {
291 } else if (strcmp(*argv
, "-pkeyopt") == 0) {
295 pkeyopts
= sk_OPENSSL_STRING_new_null();
296 if (!pkeyopts
|| !sk_OPENSSL_STRING_push(pkeyopts
, *(++argv
)))
298 } else if (strcmp(*argv
, "-sigopt") == 0) {
302 sigopts
= sk_OPENSSL_STRING_new_null();
303 if (!sigopts
|| !sk_OPENSSL_STRING_push(sigopts
, *(++argv
)))
305 } else if (strcmp(*argv
, "-batch") == 0)
307 else if (strcmp(*argv
, "-newhdr") == 0)
309 else if (strcmp(*argv
, "-modulus") == 0)
311 else if (strcmp(*argv
, "-verify") == 0)
313 else if (strcmp(*argv
, "-nodes") == 0)
315 else if (strcmp(*argv
, "-noout") == 0)
317 else if (strcmp(*argv
, "-verbose") == 0)
319 else if (strcmp(*argv
, "-utf8") == 0)
320 chtype
= MBSTRING_UTF8
;
321 else if (strcmp(*argv
, "-nameopt") == 0) {
324 if (!set_name_ex(&nmflag
, *(++argv
)))
326 } else if (strcmp(*argv
, "-reqopt") == 0) {
329 if (!set_cert_ex(&reqflag
, *(++argv
)))
331 } else if (strcmp(*argv
, "-subject") == 0)
333 else if (strcmp(*argv
, "-text") == 0)
335 else if (strcmp(*argv
, "-x509") == 0)
337 else if (strcmp(*argv
, "-asn1-kludge") == 0)
339 else if (strcmp(*argv
, "-no-asn1-kludge") == 0)
341 else if (strcmp(*argv
, "-subj") == 0) {
345 } else if (strcmp(*argv
, "-multivalue-rdn") == 0)
347 else if (strcmp(*argv
, "-days") == 0) {
350 days
= atoi(*(++argv
));
353 } else if (strcmp(*argv
, "-set_serial") == 0) {
356 serial
= s2i_ASN1_INTEGER(NULL
, *(++argv
));
359 } else if (strcmp(*argv
, "-extensions") == 0) {
362 extensions
= *(++argv
);
363 } else if (strcmp(*argv
, "-reqexts") == 0) {
366 req_exts
= *(++argv
);
367 } else if ((md_alg
= EVP_get_digestbyname(&((*argv
)[1]))) != NULL
) {
371 BIO_printf(bio_err
, "unknown option %s\n", *argv
);
381 BIO_printf(bio_err
, "%s [options] <infile >outfile\n", prog
);
382 BIO_printf(bio_err
, "where options are\n");
383 BIO_printf(bio_err
, " -inform arg input format - DER or PEM\n");
384 BIO_printf(bio_err
, " -outform arg output format - DER or PEM\n");
385 BIO_printf(bio_err
, " -in arg input file\n");
386 BIO_printf(bio_err
, " -out arg output file\n");
387 BIO_printf(bio_err
, " -text text form of request\n");
388 BIO_printf(bio_err
, " -pubkey output public key\n");
389 BIO_printf(bio_err
, " -noout do not output REQ\n");
390 BIO_printf(bio_err
, " -verify verify signature on REQ\n");
391 BIO_printf(bio_err
, " -modulus RSA modulus\n");
392 BIO_printf(bio_err
, " -nodes don't encrypt the output key\n");
393 #ifndef OPENSSL_NO_ENGINE
395 " -engine e use engine e, possibly a hardware device\n");
397 BIO_printf(bio_err
, " -subject output the request's subject\n");
398 BIO_printf(bio_err
, " -passin private key password source\n");
400 " -key file use the private key contained in file\n");
401 BIO_printf(bio_err
, " -keyform arg key file format\n");
402 BIO_printf(bio_err
, " -keyout arg file to send the key to\n");
403 BIO_printf(bio_err
, " -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR
,
404 LIST_SEPARATOR_CHAR
);
406 " load the file (or the files in the directory) into\n");
407 BIO_printf(bio_err
, " the random number generator\n");
409 " -newkey rsa:bits generate a new RSA key of 'bits' in size\n");
411 " -newkey dsa:file generate a new DSA key, parameters taken from CA in 'file'\n");
412 #ifndef OPENSSL_NO_ECDSA
414 " -newkey ec:file generate a new EC key, parameters taken from CA in 'file'\n");
417 " -[digest] Digest to sign with (md5, sha1, md2, mdc2, md4)\n");
418 BIO_printf(bio_err
, " -config file request template file.\n");
420 " -subj arg set or modify request subject\n");
422 " -multivalue-rdn enable support for multivalued RDNs\n");
423 BIO_printf(bio_err
, " -new new request.\n");
425 " -batch do not ask anything during request generation\n");
427 " -x509 output a x509 structure instead of a cert. req.\n");
429 " -days number of days a certificate generated by -x509 is valid for.\n");
431 " -set_serial serial number to use for a certificate generated by -x509.\n");
433 " -newhdr output \"NEW\" in the header lines\n");
435 " -asn1-kludge Output the 'request' in a format that is wrong but some CA's\n");
437 " have been reported as requiring\n");
439 " -extensions .. specify certificate extension section (override value in config file)\n");
441 " -reqexts .. specify request extension section (override value in config file)\n");
443 " -utf8 input characters are UTF8 (default ASCII)\n");
445 " -nameopt arg - various certificate name options\n");
447 " -reqopt arg - various request text options\n\n");
451 ERR_load_crypto_strings();
452 if (!app_passwd(bio_err
, passargin
, passargout
, &passin
, &passout
)) {
453 BIO_printf(bio_err
, "Error getting passwords\n");
456 #ifndef MONOLITH /* else this has happened in openssl.c
457 * (global `config') */
458 /* Lets load up our environment a little */
459 p
= getenv("OPENSSL_CONF");
461 p
= getenv("SSLEAY_CONF");
463 p
= to_free
= make_config_name();
464 default_config_file
= p
;
465 config
= NCONF_new(NULL
);
466 i
= NCONF_load(config
, p
, &errline
);
469 if (template != NULL
) {
473 BIO_printf(bio_err
, "Using configuration from %s\n", template);
474 req_conf
= NCONF_new(NULL
);
475 i
= NCONF_load(req_conf
, template, &errline
);
477 BIO_printf(bio_err
, "error on line %ld of %s\n", errline
,
484 if (req_conf
== NULL
) {
485 BIO_printf(bio_err
, "Unable to load config info from %s\n",
486 default_config_file
);
490 BIO_printf(bio_err
, "Using configuration from %s\n",
491 default_config_file
);
494 if (req_conf
!= NULL
) {
495 if (!load_config(bio_err
, req_conf
))
497 p
= NCONF_get_string(req_conf
, NULL
, "oid_file");
503 oid_bio
= BIO_new_file(p
, "r");
504 if (oid_bio
== NULL
) {
506 BIO_printf(bio_err,"problems opening %s for extra oid's\n",p);
507 ERR_print_errors(bio_err);
510 OBJ_create_objects(oid_bio
);
515 if (!add_oid_section(bio_err
, req_conf
))
518 if (md_alg
== NULL
) {
519 p
= NCONF_get_string(req_conf
, SECTION
, "default_md");
523 if ((md_alg
= EVP_get_digestbyname(p
)) != NULL
)
529 extensions
= NCONF_get_string(req_conf
, SECTION
, V3_EXTENSIONS
);
534 /* Check syntax of file */
536 X509V3_set_ctx_test(&ctx
);
537 X509V3_set_nconf(&ctx
, req_conf
);
538 if (!X509V3_EXT_add_nconf(req_conf
, &ctx
, extensions
, NULL
)) {
540 "Error Loading extension section %s\n", extensions
);
546 passin
= NCONF_get_string(req_conf
, SECTION
, "input_password");
552 passout
= NCONF_get_string(req_conf
, SECTION
, "output_password");
557 p
= NCONF_get_string(req_conf
, SECTION
, STRING_MASK
);
561 if (p
&& !ASN1_STRING_set_default_mask_asc(p
)) {
562 BIO_printf(bio_err
, "Invalid global string mask setting %s\n", p
);
566 if (chtype
!= MBSTRING_UTF8
) {
567 p
= NCONF_get_string(req_conf
, SECTION
, UTF8_IN
);
570 else if (!strcmp(p
, "yes"))
571 chtype
= MBSTRING_UTF8
;
575 req_exts
= NCONF_get_string(req_conf
, SECTION
, REQ_EXTENSIONS
);
580 /* Check syntax of file */
582 X509V3_set_ctx_test(&ctx
);
583 X509V3_set_nconf(&ctx
, req_conf
);
584 if (!X509V3_EXT_add_nconf(req_conf
, &ctx
, req_exts
, NULL
)) {
586 "Error Loading request extension section %s\n",
592 in
= BIO_new(BIO_s_file());
593 out
= BIO_new(BIO_s_file());
594 if ((in
== NULL
) || (out
== NULL
))
597 #ifndef OPENSSL_NO_ENGINE
598 e
= setup_engine(bio_err
, engine
, 0);
601 if (keyfile
!= NULL
) {
602 pkey
= load_key(bio_err
, keyfile
, keyform
, 0, passin
, e
,
606 * load_key() has already printed an appropriate message
610 char *randfile
= NCONF_get_string(req_conf
, SECTION
, "RANDFILE");
611 if (randfile
== NULL
)
613 app_RAND_load_file(randfile
, bio_err
, 0);
617 if (newreq
&& (pkey
== NULL
)) {
618 char *randfile
= NCONF_get_string(req_conf
, SECTION
, "RANDFILE");
619 if (randfile
== NULL
)
621 app_RAND_load_file(randfile
, bio_err
, 0);
623 app_RAND_load_files(inrand
);
625 if (!NCONF_get_number(req_conf
, SECTION
, BITS
, &newkey
)) {
626 newkey
= DEFAULT_KEY_LENGTH
;
630 genctx
= set_keygen_ctx(bio_err
, keyalg
, &pkey_type
, &newkey
,
631 &keyalgstr
, gen_eng
);
636 if (newkey
< MIN_KEY_LENGTH
637 && (pkey_type
== EVP_PKEY_RSA
|| pkey_type
== EVP_PKEY_DSA
)) {
638 BIO_printf(bio_err
, "private key length is too short,\n");
639 BIO_printf(bio_err
, "it needs to be at least %d bits, not %ld\n",
640 MIN_KEY_LENGTH
, newkey
);
645 genctx
= set_keygen_ctx(bio_err
, NULL
, &pkey_type
, &newkey
,
646 &keyalgstr
, gen_eng
);
653 for (i
= 0; i
< sk_OPENSSL_STRING_num(pkeyopts
); i
++) {
654 genopt
= sk_OPENSSL_STRING_value(pkeyopts
, i
);
655 if (pkey_ctrl_string(genctx
, genopt
) <= 0) {
656 BIO_printf(bio_err
, "parameter error \"%s\"\n", genopt
);
657 ERR_print_errors(bio_err
);
663 BIO_printf(bio_err
, "Generating a %ld bit %s private key\n",
666 EVP_PKEY_CTX_set_cb(genctx
, genpkey_cb
);
667 EVP_PKEY_CTX_set_app_data(genctx
, bio_err
);
669 if (EVP_PKEY_keygen(genctx
, &pkey
) <= 0) {
670 BIO_puts(bio_err
, "Error Generating Key\n");
674 EVP_PKEY_CTX_free(genctx
);
677 app_RAND_write_file(randfile
, bio_err
);
679 if (keyout
== NULL
) {
680 keyout
= NCONF_get_string(req_conf
, SECTION
, KEYFILE
);
685 if (keyout
== NULL
) {
686 BIO_printf(bio_err
, "writing new private key to stdout\n");
687 BIO_set_fp(out
, stdout
, BIO_NOCLOSE
);
688 #ifdef OPENSSL_SYS_VMS
690 BIO
*tmpbio
= BIO_new(BIO_f_linebuffer());
691 out
= BIO_push(tmpbio
, out
);
695 BIO_printf(bio_err
, "writing new private key to '%s'\n", keyout
);
696 if (BIO_write_filename(out
, keyout
) <= 0) {
702 p
= NCONF_get_string(req_conf
, SECTION
, "encrypt_rsa_key");
705 p
= NCONF_get_string(req_conf
, SECTION
, "encrypt_key");
709 if ((p
!= NULL
) && (strcmp(p
, "no") == 0))
716 if (!PEM_write_bio_PrivateKey(out
, pkey
, cipher
,
717 NULL
, 0, NULL
, passout
)) {
718 if ((ERR_GET_REASON(ERR_peek_error()) ==
719 PEM_R_PROBLEMS_GETTING_PASSWORD
) && (i
< 3)) {
726 BIO_printf(bio_err
, "-----\n");
731 * Since we are using a pre-existing certificate request, the kludge
732 * 'format' info should not be changed.
736 BIO_set_fp(in
, stdin
, BIO_NOCLOSE
);
738 if (BIO_read_filename(in
, infile
) <= 0) {
744 if (informat
== FORMAT_ASN1
)
745 req
= d2i_X509_REQ_bio(in
, NULL
);
746 else if (informat
== FORMAT_PEM
)
747 req
= PEM_read_bio_X509_REQ(in
, NULL
, NULL
, NULL
);
750 "bad input format specified for X509 request\n");
754 BIO_printf(bio_err
, "unable to load X509 request\n");
759 if (newreq
|| x509
) {
761 BIO_printf(bio_err
, "you need to specify a private key\n");
766 req
= X509_REQ_new();
771 i
= make_REQ(req
, pkey
, subj
, multirdn
, !x509
, chtype
);
772 subj
= NULL
; /* done processing '-subj' option */
774 && !sk_X509_ATTRIBUTE_num(req
->req_info
->attributes
)) {
775 sk_X509_ATTRIBUTE_free(req
->req_info
->attributes
);
776 req
->req_info
->attributes
= NULL
;
779 BIO_printf(bio_err
, "problems making Certificate Request\n");
786 if ((x509ss
= X509_new()) == NULL
)
789 /* Set version to V3 */
790 if (extensions
&& !X509_set_version(x509ss
, 2))
793 if (!X509_set_serialNumber(x509ss
, serial
))
796 if (!rand_serial(NULL
, X509_get_serialNumber(x509ss
)))
800 if (!X509_set_issuer_name(x509ss
, X509_REQ_get_subject_name(req
)))
802 if (!X509_gmtime_adj(X509_get_notBefore(x509ss
), 0))
804 if (!X509_time_adj_ex(X509_get_notAfter(x509ss
), days
, 0, NULL
))
806 if (!X509_set_subject_name
807 (x509ss
, X509_REQ_get_subject_name(req
)))
809 tmppkey
= X509_REQ_get_pubkey(req
);
810 if (!tmppkey
|| !X509_set_pubkey(x509ss
, tmppkey
))
812 EVP_PKEY_free(tmppkey
);
814 /* Set up V3 context struct */
816 X509V3_set_ctx(&ext_ctx
, x509ss
, x509ss
, NULL
, NULL
, 0);
817 X509V3_set_nconf(&ext_ctx
, req_conf
);
820 if (extensions
&& !X509V3_EXT_add_nconf(req_conf
,
821 &ext_ctx
, extensions
,
823 BIO_printf(bio_err
, "Error Loading extension section %s\n",
828 i
= do_X509_sign(bio_err
, x509ss
, pkey
, digest
, sigopts
);
830 ERR_print_errors(bio_err
);
836 /* Set up V3 context struct */
838 X509V3_set_ctx(&ext_ctx
, NULL
, NULL
, req
, NULL
, 0);
839 X509V3_set_nconf(&ext_ctx
, req_conf
);
842 if (req_exts
&& !X509V3_EXT_REQ_add_nconf(req_conf
,
845 BIO_printf(bio_err
, "Error Loading extension section %s\n",
849 i
= do_X509_REQ_sign(bio_err
, req
, pkey
, digest
, sigopts
);
851 ERR_print_errors(bio_err
);
858 BIO_printf(bio_err
, "Cannot modifiy certificate subject\n");
864 BIO_printf(bio_err
, "Modifying Request's Subject\n");
865 print_name(bio_err
, "old subject=",
866 X509_REQ_get_subject_name(req
), nmflag
);
869 if (build_subject(req
, subj
, chtype
, multirdn
) == 0) {
870 BIO_printf(bio_err
, "ERROR: cannot modify subject\n");
875 req
->req_info
->enc
.modified
= 1;
878 print_name(bio_err
, "new subject=",
879 X509_REQ_get_subject_name(req
), nmflag
);
883 if (verify
&& !x509
) {
887 pkey
= X509_REQ_get_pubkey(req
);
893 i
= X509_REQ_verify(req
, pkey
);
902 BIO_printf(bio_err
, "verify failure\n");
903 ERR_print_errors(bio_err
);
904 } else /* if (i > 0) */
905 BIO_printf(bio_err
, "verify OK\n");
908 if (noout
&& !text
&& !modulus
&& !subject
&& !pubkey
) {
913 if (outfile
== NULL
) {
914 BIO_set_fp(out
, stdout
, BIO_NOCLOSE
);
915 #ifdef OPENSSL_SYS_VMS
917 BIO
*tmpbio
= BIO_new(BIO_f_linebuffer());
918 out
= BIO_push(tmpbio
, out
);
922 if ((keyout
!= NULL
) && (strcmp(outfile
, keyout
) == 0))
923 i
= (int)BIO_append_filename(out
, outfile
);
925 i
= (int)BIO_write_filename(out
, outfile
);
934 tpubkey
= X509_REQ_get_pubkey(req
);
935 if (tpubkey
== NULL
) {
936 BIO_printf(bio_err
, "Error getting public key\n");
937 ERR_print_errors(bio_err
);
940 PEM_write_bio_PUBKEY(out
, tpubkey
);
941 EVP_PKEY_free(tpubkey
);
946 X509_print_ex(out
, x509ss
, nmflag
, reqflag
);
948 X509_REQ_print_ex(out
, req
, nmflag
, reqflag
);
953 print_name(out
, "subject=", X509_get_subject_name(x509ss
),
956 print_name(out
, "subject=", X509_REQ_get_subject_name(req
),
964 tpubkey
= X509_get_pubkey(x509ss
);
966 tpubkey
= X509_REQ_get_pubkey(req
);
967 if (tpubkey
== NULL
) {
968 fprintf(stdout
, "Modulus=unavailable\n");
971 fprintf(stdout
, "Modulus=");
972 #ifndef OPENSSL_NO_RSA
973 if (EVP_PKEY_base_id(tpubkey
) == EVP_PKEY_RSA
)
974 BN_print(out
, tpubkey
->pkey
.rsa
->n
);
977 fprintf(stdout
, "Wrong Algorithm type");
978 EVP_PKEY_free(tpubkey
);
979 fprintf(stdout
, "\n");
982 if (!noout
&& !x509
) {
983 if (outformat
== FORMAT_ASN1
)
984 i
= i2d_X509_REQ_bio(out
, req
);
985 else if (outformat
== FORMAT_PEM
) {
987 i
= PEM_write_bio_X509_REQ_NEW(out
, req
);
989 i
= PEM_write_bio_X509_REQ(out
, req
);
991 BIO_printf(bio_err
, "bad output format specified for outfile\n");
995 BIO_printf(bio_err
, "unable to write X509 request\n");
999 if (!noout
&& x509
&& (x509ss
!= NULL
)) {
1000 if (outformat
== FORMAT_ASN1
)
1001 i
= i2d_X509_bio(out
, x509ss
);
1002 else if (outformat
== FORMAT_PEM
)
1003 i
= PEM_write_bio_X509(out
, x509ss
);
1005 BIO_printf(bio_err
, "bad output format specified for outfile\n");
1009 BIO_printf(bio_err
, "unable to write X509 certificate\n");
1017 OPENSSL_free(to_free
);
1020 ERR_print_errors(bio_err
);
1022 if ((req_conf
!= NULL
) && (req_conf
!= config
))
1023 NCONF_free(req_conf
);
1026 EVP_PKEY_free(pkey
);
1028 EVP_PKEY_CTX_free(genctx
);
1030 sk_OPENSSL_STRING_free(pkeyopts
);
1032 sk_OPENSSL_STRING_free(sigopts
);
1033 #ifndef OPENSSL_NO_ENGINE
1035 ENGINE_free(gen_eng
);
1038 OPENSSL_free(keyalgstr
);
1041 ASN1_INTEGER_free(serial
);
1042 if (passargin
&& passin
)
1043 OPENSSL_free(passin
);
1044 if (passargout
&& passout
)
1045 OPENSSL_free(passout
);
1051 static int make_REQ(X509_REQ
*req
, EVP_PKEY
*pkey
, char *subj
, int multirdn
,
1052 int attribs
, unsigned long chtype
)
1056 STACK_OF(CONF_VALUE
) *dn_sk
, *attr_sk
= NULL
;
1057 char *tmp
, *dn_sect
, *attr_sect
;
1059 tmp
= NCONF_get_string(req_conf
, SECTION
, PROMPT
);
1062 if ((tmp
!= NULL
) && !strcmp(tmp
, "no"))
1065 dn_sect
= NCONF_get_string(req_conf
, SECTION
, DISTINGUISHED_NAME
);
1066 if (dn_sect
== NULL
) {
1067 BIO_printf(bio_err
, "unable to find '%s' in config\n",
1068 DISTINGUISHED_NAME
);
1071 dn_sk
= NCONF_get_section(req_conf
, dn_sect
);
1072 if (dn_sk
== NULL
) {
1073 BIO_printf(bio_err
, "unable to get '%s' section\n", dn_sect
);
1077 attr_sect
= NCONF_get_string(req_conf
, SECTION
, ATTRIBUTES
);
1078 if (attr_sect
== NULL
) {
1082 attr_sk
= NCONF_get_section(req_conf
, attr_sect
);
1083 if (attr_sk
== NULL
) {
1084 BIO_printf(bio_err
, "unable to get '%s' section\n", attr_sect
);
1089 /* setup version number */
1090 if (!X509_REQ_set_version(req
, 0L))
1091 goto err
; /* version 1 */
1094 i
= auto_info(req
, dn_sk
, attr_sk
, attribs
, chtype
);
1097 i
= build_subject(req
, subj
, chtype
, multirdn
);
1099 i
= prompt_info(req
, dn_sk
, dn_sect
, attr_sk
, attr_sect
, attribs
,
1105 if (!X509_REQ_set_pubkey(req
, pkey
))
1114 * subject is expected to be in the format /type0=value0/type1=value1/type2=...
1115 * where characters may be escaped by \
1117 static int build_subject(X509_REQ
*req
, char *subject
, unsigned long chtype
,
1122 if (!(n
= parse_name(subject
, chtype
, multirdn
)))
1125 if (!X509_REQ_set_subject_name(req
, n
)) {
1133 static int prompt_info(X509_REQ
*req
,
1134 STACK_OF(CONF_VALUE
) *dn_sk
, char *dn_sect
,
1135 STACK_OF(CONF_VALUE
) *attr_sk
, char *attr_sect
,
1136 int attribs
, unsigned long chtype
)
1147 subj
= X509_REQ_get_subject_name(req
);
1151 "You are about to be asked to enter information that will be incorporated\n");
1152 BIO_printf(bio_err
, "into your certificate request.\n");
1154 "What you are about to enter is what is called a Distinguished Name or a DN.\n");
1156 "There are quite a few fields but you can leave some blank\n");
1158 "For some fields there will be a default value,\n");
1160 "If you enter '.', the field will be left blank.\n");
1161 BIO_printf(bio_err
, "-----\n");
1164 if (sk_CONF_VALUE_num(dn_sk
)) {
1168 if (sk_CONF_VALUE_num(dn_sk
) <= i
)
1171 v
= sk_CONF_VALUE_value(dn_sk
, i
);
1174 if (!check_end(type
, "_min") || !check_end(type
, "_max") ||
1175 !check_end(type
, "_default") || !check_end(type
, "_value"))
1178 * Skip past any leading X. X: X, etc to allow for multiple
1181 for (p
= v
->name
; *p
; p
++)
1182 if ((*p
== ':') || (*p
== ',') || (*p
== '.')) {
1193 /* If OBJ not recognised ignore it */
1194 if ((nid
= OBJ_txt2nid(type
)) == NID_undef
)
1196 if (BIO_snprintf(buf
, sizeof buf
, "%s_default", v
->name
)
1197 >= (int)sizeof(buf
)) {
1198 BIO_printf(bio_err
, "Name '%s' too long\n", v
->name
);
1202 if ((def
= NCONF_get_string(req_conf
, dn_sect
, buf
)) == NULL
) {
1207 BIO_snprintf(buf
, sizeof buf
, "%s_value", v
->name
);
1208 if ((value
= NCONF_get_string(req_conf
, dn_sect
, buf
)) == NULL
) {
1213 BIO_snprintf(buf
, sizeof buf
, "%s_min", v
->name
);
1214 if (!NCONF_get_number(req_conf
, dn_sect
, buf
, &n_min
)) {
1219 BIO_snprintf(buf
, sizeof buf
, "%s_max", v
->name
);
1220 if (!NCONF_get_number(req_conf
, dn_sect
, buf
, &n_max
)) {
1225 if (!add_DN_object(subj
, v
->value
, def
, value
, nid
,
1226 n_min
, n_max
, chtype
, mval
))
1229 if (X509_NAME_entry_count(subj
) == 0) {
1231 "error, no objects specified in config file\n");
1236 if ((attr_sk
!= NULL
) && (sk_CONF_VALUE_num(attr_sk
) > 0)
1239 "\nPlease enter the following 'extra' attributes\n");
1241 "to be sent with your certificate request\n");
1247 if ((attr_sk
== NULL
) || (sk_CONF_VALUE_num(attr_sk
) <= i
))
1250 v
= sk_CONF_VALUE_value(attr_sk
, i
);
1252 if ((nid
= OBJ_txt2nid(type
)) == NID_undef
)
1255 if (BIO_snprintf(buf
, sizeof buf
, "%s_default", type
)
1256 >= (int)sizeof(buf
)) {
1257 BIO_printf(bio_err
, "Name '%s' too long\n", v
->name
);
1261 if ((def
= NCONF_get_string(req_conf
, attr_sect
, buf
))
1267 BIO_snprintf(buf
, sizeof buf
, "%s_value", type
);
1268 if ((value
= NCONF_get_string(req_conf
, attr_sect
, buf
))
1274 BIO_snprintf(buf
, sizeof buf
, "%s_min", type
);
1275 if (!NCONF_get_number(req_conf
, attr_sect
, buf
, &n_min
)) {
1280 BIO_snprintf(buf
, sizeof buf
, "%s_max", type
);
1281 if (!NCONF_get_number(req_conf
, attr_sect
, buf
, &n_max
)) {
1286 if (!add_attribute_object(req
,
1287 v
->value
, def
, value
, nid
, n_min
,
1293 BIO_printf(bio_err
, "No template, please set one up.\n");
1301 static int auto_info(X509_REQ
*req
, STACK_OF(CONF_VALUE
) *dn_sk
,
1302 STACK_OF(CONF_VALUE
) *attr_sk
, int attribs
,
1303 unsigned long chtype
)
1311 subj
= X509_REQ_get_subject_name(req
);
1313 for (i
= 0; i
< sk_CONF_VALUE_num(dn_sk
); i
++) {
1315 v
= sk_CONF_VALUE_value(dn_sk
, i
);
1319 * Skip past any leading X. X: X, etc to allow for multiple instances
1321 for (p
= v
->name
; *p
; p
++)
1322 #ifndef CHARSET_EBCDIC
1323 if ((*p
== ':') || (*p
== ',') || (*p
== '.')) {
1325 if ((*p
== os_toascii
[':']) || (*p
== os_toascii
[','])
1326 || (*p
== os_toascii
['.'])) {
1333 #ifndef CHARSET_EBCDIC
1336 if (*p
== os_toascii
['+'])
1343 if (!X509_NAME_add_entry_by_txt(subj
, type
, chtype
,
1344 (unsigned char *)v
->value
, -1, -1,
1350 if (!X509_NAME_entry_count(subj
)) {
1351 BIO_printf(bio_err
, "error, no objects specified in config file\n");
1355 for (i
= 0; i
< sk_CONF_VALUE_num(attr_sk
); i
++) {
1356 v
= sk_CONF_VALUE_value(attr_sk
, i
);
1357 if (!X509_REQ_add1_attr_by_txt(req
, v
->name
, chtype
,
1358 (unsigned char *)v
->value
, -1))
1365 static int add_DN_object(X509_NAME
*n
, char *text
, const char *def
,
1366 char *value
, int nid
, int n_min
, int n_max
,
1367 unsigned long chtype
, int mval
)
1370 MS_STATIC
char buf
[1024];
1373 BIO_printf(bio_err
, "%s [%s]:", text
, def
);
1374 (void)BIO_flush(bio_err
);
1375 if (value
!= NULL
) {
1376 BUF_strlcpy(buf
, value
, sizeof buf
);
1377 BUF_strlcat(buf
, "\n", sizeof buf
);
1378 BIO_printf(bio_err
, "%s\n", value
);
1382 if (!fgets(buf
, sizeof buf
, stdin
))
1392 else if (buf
[0] == '\n') {
1393 if ((def
== NULL
) || (def
[0] == '\0'))
1395 BUF_strlcpy(buf
, def
, sizeof buf
);
1396 BUF_strlcat(buf
, "\n", sizeof buf
);
1397 } else if ((buf
[0] == '.') && (buf
[1] == '\n'))
1401 if (buf
[i
- 1] != '\n') {
1402 BIO_printf(bio_err
, "weird input :-(\n");
1406 #ifdef CHARSET_EBCDIC
1407 ebcdic2ascii(buf
, buf
, i
);
1409 if (!req_check_len(i
, n_min
, n_max
)) {
1415 if (!X509_NAME_add_entry_by_NID(n
, nid
, chtype
,
1416 (unsigned char *)buf
, -1, -1, mval
))
1423 static int add_attribute_object(X509_REQ
*req
, char *text
, const char *def
,
1424 char *value
, int nid
, int n_min
,
1425 int n_max
, unsigned long chtype
)
1428 static char buf
[1024];
1432 BIO_printf(bio_err
, "%s [%s]:", text
, def
);
1433 (void)BIO_flush(bio_err
);
1434 if (value
!= NULL
) {
1435 BUF_strlcpy(buf
, value
, sizeof buf
);
1436 BUF_strlcat(buf
, "\n", sizeof buf
);
1437 BIO_printf(bio_err
, "%s\n", value
);
1441 if (!fgets(buf
, sizeof buf
, stdin
))
1451 else if (buf
[0] == '\n') {
1452 if ((def
== NULL
) || (def
[0] == '\0'))
1454 BUF_strlcpy(buf
, def
, sizeof buf
);
1455 BUF_strlcat(buf
, "\n", sizeof buf
);
1456 } else if ((buf
[0] == '.') && (buf
[1] == '\n'))
1460 if (buf
[i
- 1] != '\n') {
1461 BIO_printf(bio_err
, "weird input :-(\n");
1465 #ifdef CHARSET_EBCDIC
1466 ebcdic2ascii(buf
, buf
, i
);
1468 if (!req_check_len(i
, n_min
, n_max
)) {
1474 if (!X509_REQ_add1_attr_by_NID(req
, nid
, chtype
,
1475 (unsigned char *)buf
, -1)) {
1476 BIO_printf(bio_err
, "Error adding attribute\n");
1477 ERR_print_errors(bio_err
);
1486 static int req_check_len(int len
, int n_min
, int n_max
)
1488 if ((n_min
> 0) && (len
< n_min
)) {
1490 "string is too short, it needs to be at least %d bytes long\n",
1494 if ((n_max
>= 0) && (len
> n_max
)) {
1496 "string is too long, it needs to be less than %d bytes long\n",
1503 /* Check if the end of a string matches 'end' */
1504 static int check_end(const char *str
, const char *end
)
1512 tmp
= str
+ slen
- elen
;
1513 return strcmp(tmp
, end
);
1516 static EVP_PKEY_CTX
*set_keygen_ctx(BIO
*err
, const char *gstr
,
1517 int *pkey_type
, long *pkeylen
,
1518 char **palgnam
, ENGINE
*keygen_engine
)
1520 EVP_PKEY_CTX
*gctx
= NULL
;
1521 EVP_PKEY
*param
= NULL
;
1524 const char *paramfile
= NULL
;
1527 *pkey_type
= EVP_PKEY_RSA
;
1529 } else if (gstr
[0] >= '0' && gstr
[0] <= '9') {
1530 *pkey_type
= EVP_PKEY_RSA
;
1531 keylen
= atol(gstr
);
1533 } else if (!strncmp(gstr
, "param:", 6))
1534 paramfile
= gstr
+ 6;
1536 const char *p
= strchr(gstr
, ':');
1539 const EVP_PKEY_ASN1_METHOD
*ameth
;
1546 * The lookup of a the string will cover all engines so keep a note
1547 * of the implementation.
1550 ameth
= EVP_PKEY_asn1_find_str(&tmpeng
, gstr
, len
);
1553 BIO_printf(err
, "Unknown algorithm %.*s\n", len
, gstr
);
1557 EVP_PKEY_asn1_get0_info(NULL
, pkey_type
, NULL
, NULL
, NULL
, ameth
);
1558 #ifndef OPENSSL_NO_ENGINE
1560 ENGINE_finish(tmpeng
);
1562 if (*pkey_type
== EVP_PKEY_RSA
) {
1564 keylen
= atol(p
+ 1);
1573 pbio
= BIO_new_file(paramfile
, "r");
1575 BIO_printf(err
, "Can't open parameter file %s\n", paramfile
);
1578 param
= PEM_read_bio_Parameters(pbio
, NULL
);
1582 (void)BIO_reset(pbio
);
1583 x
= PEM_read_bio_X509(pbio
, NULL
, NULL
, NULL
);
1585 param
= X509_get_pubkey(x
);
1593 BIO_printf(err
, "Error reading parameter file %s\n", paramfile
);
1596 if (*pkey_type
== -1)
1597 *pkey_type
= EVP_PKEY_id(param
);
1598 else if (*pkey_type
!= EVP_PKEY_base_id(param
)) {
1599 BIO_printf(err
, "Key Type does not match parameters\n");
1600 EVP_PKEY_free(param
);
1606 const EVP_PKEY_ASN1_METHOD
*ameth
;
1609 ameth
= EVP_PKEY_asn1_find(&tmpeng
, *pkey_type
);
1611 BIO_puts(err
, "Internal error: can't find key algorithm\n");
1614 EVP_PKEY_asn1_get0_info(NULL
, NULL
, NULL
, NULL
, &anam
, ameth
);
1615 *palgnam
= BUF_strdup(anam
);
1616 #ifndef OPENSSL_NO_ENGINE
1618 ENGINE_finish(tmpeng
);
1623 gctx
= EVP_PKEY_CTX_new(param
, keygen_engine
);
1624 *pkeylen
= EVP_PKEY_bits(param
);
1625 EVP_PKEY_free(param
);
1627 gctx
= EVP_PKEY_CTX_new_id(*pkey_type
, keygen_engine
);
1630 BIO_puts(err
, "Error allocating keygen context\n");
1631 ERR_print_errors(err
);
1635 if (EVP_PKEY_keygen_init(gctx
) <= 0) {
1636 BIO_puts(err
, "Error initializing keygen context\n");
1637 ERR_print_errors(err
);
1640 #ifndef OPENSSL_NO_RSA
1641 if ((*pkey_type
== EVP_PKEY_RSA
) && (keylen
!= -1)) {
1642 if (EVP_PKEY_CTX_set_rsa_keygen_bits(gctx
, keylen
) <= 0) {
1643 BIO_puts(err
, "Error setting RSA keysize\n");
1644 ERR_print_errors(err
);
1645 EVP_PKEY_CTX_free(gctx
);
1654 static int genpkey_cb(EVP_PKEY_CTX
*ctx
)
1657 BIO
*b
= EVP_PKEY_CTX_get_app_data(ctx
);
1659 p
= EVP_PKEY_CTX_get_keygen_info(ctx
, 0);
1668 BIO_write(b
, &c
, 1);
1676 static int do_sign_init(BIO
*err
, EVP_MD_CTX
*ctx
, EVP_PKEY
*pkey
,
1677 const EVP_MD
*md
, STACK_OF(OPENSSL_STRING
) *sigopts
)
1679 EVP_PKEY_CTX
*pkctx
= NULL
;
1681 EVP_MD_CTX_init(ctx
);
1682 if (!EVP_DigestSignInit(ctx
, &pkctx
, md
, NULL
, pkey
))
1684 for (i
= 0; i
< sk_OPENSSL_STRING_num(sigopts
); i
++) {
1685 char *sigopt
= sk_OPENSSL_STRING_value(sigopts
, i
);
1686 if (pkey_ctrl_string(pkctx
, sigopt
) <= 0) {
1687 BIO_printf(err
, "parameter error \"%s\"\n", sigopt
);
1688 ERR_print_errors(bio_err
);
1695 int do_X509_sign(BIO
*err
, X509
*x
, EVP_PKEY
*pkey
, const EVP_MD
*md
,
1696 STACK_OF(OPENSSL_STRING
) *sigopts
)
1700 EVP_MD_CTX_init(&mctx
);
1701 rv
= do_sign_init(err
, &mctx
, pkey
, md
, sigopts
);
1703 rv
= X509_sign_ctx(x
, &mctx
);
1704 EVP_MD_CTX_cleanup(&mctx
);
1705 return rv
> 0 ? 1 : 0;
1708 int do_X509_REQ_sign(BIO
*err
, X509_REQ
*x
, EVP_PKEY
*pkey
, const EVP_MD
*md
,
1709 STACK_OF(OPENSSL_STRING
) *sigopts
)
1713 EVP_MD_CTX_init(&mctx
);
1714 rv
= do_sign_init(err
, &mctx
, pkey
, md
, sigopts
);
1716 rv
= X509_REQ_sign_ctx(x
, &mctx
);
1717 EVP_MD_CTX_cleanup(&mctx
);
1718 return rv
> 0 ? 1 : 0;
1721 int do_X509_CRL_sign(BIO
*err
, X509_CRL
*x
, EVP_PKEY
*pkey
, const EVP_MD
*md
,
1722 STACK_OF(OPENSSL_STRING
) *sigopts
)
1726 EVP_MD_CTX_init(&mctx
);
1727 rv
= do_sign_init(err
, &mctx
, pkey
, md
, sigopts
);
1729 rv
= X509_CRL_sign_ctx(x
, &mctx
);
1730 EVP_MD_CTX_cleanup(&mctx
);
1731 return rv
> 0 ? 1 : 0;