]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/req.c
Make sure the already existing X509_STORE->depth variable is initialized
[thirdparty/openssl.git] / apps / req.c
CommitLineData
d02b48c6 1/* apps/req.c */
58964a49 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
3 * All rights reserved.
4 *
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.
8 *
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).
15 *
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.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
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)"
40 *
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
51 * SUCH DAMAGE.
52 *
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.]
57 */
58
59#include <stdio.h>
60#include <stdlib.h>
61#include <time.h>
62#include <string.h>
58964a49 63#ifdef NO_STDIO
d02b48c6
RE
64#define APPS_WIN16
65#endif
66#include "apps.h"
67#include "bio.h"
68#include "evp.h"
69#include "rand.h"
70#include "conf.h"
71#include "err.h"
72#include "asn1.h"
73#include "x509.h"
74#include "objects.h"
75#include "pem.h"
76
77#define SECTION "req"
78
79#define BITS "default_bits"
80#define KEYFILE "default_keyfile"
81#define DISTINGUISHED_NAME "distinguished_name"
82#define ATTRIBUTES "attributes"
83
84#define DEFAULT_KEY_LENGTH 512
85#define MIN_KEY_LENGTH 384
86
87#undef PROG
88#define PROG req_main
89
90/* -inform arg - input format - default PEM (one of DER, TXT or PEM)
91 * -outform arg - output format - default PEM
92 * -in arg - input file - default stdin
93 * -out arg - output file - default stdout
94 * -verify - check request signature
95 * -noout - don't print stuff out.
96 * -text - print out human readable text.
97 * -nodes - no des encryption
98 * -config file - Load configuration file.
99 * -key file - make a request using key in file (or use it for verification).
100 * -keyform - key file format.
101 * -newkey - make a key and a request.
102 * -modulus - print RSA modulus.
103 * -x509 - output a self signed X509 structure instead.
104 * -asn1-kludge - output new certificate request in a format that some CA's
105 * require. This format is wrong
106 */
107
108#ifndef NOPROTO
109static int make_REQ(X509_REQ *req,EVP_PKEY *pkey,int attribs);
110static int add_attribute_object(STACK *n, char *text, char *def,
111 char *value, int nid,int min,int max);
112static int add_DN_object(X509_NAME *n, char *text, char *def, char *value,
113 int nid,int min,int max);
58964a49 114static void MS_CALLBACK req_cb(int p,int n,char *arg);
d02b48c6
RE
115static int req_fix_data(int nid,int *type,int len,int min,int max);
116#else
117static int make_REQ();
118static int add_attribute_object();
119static int add_DN_object();
120static void MS_CALLBACK req_cb();
121static int req_fix_data();
122#endif
123
124#ifndef MONOLITH
125static char *default_config_file=NULL;
126static LHASH *config=NULL;
127#endif
128static LHASH *req_conf=NULL;
129
130#define TYPE_RSA 1
131#define TYPE_DSA 2
132#define TYPE_DH 3
133
134int MAIN(argc, argv)
135int argc;
136char **argv;
137 {
58964a49 138#ifndef NO_DSA
d02b48c6 139 DSA *dsa_params=NULL;
58964a49 140#endif
d02b48c6
RE
141 int ex=1,x509=0,days=30;
142 X509 *x509ss=NULL;
143 X509_REQ *req=NULL;
144 EVP_PKEY *pkey=NULL;
145 int i,badops=0,newreq=0,newkey= -1,pkey_type=0;
146 BIO *in=NULL,*out=NULL;
147 int informat,outformat,verify=0,noout=0,text=0,keyform=FORMAT_PEM;
148 int nodes=0,kludge=0;
149 char *infile,*outfile,*prog,*keyfile=NULL,*template=NULL,*keyout=NULL;
150 EVP_CIPHER *cipher=NULL;
151 int modulus=0;
152 char *p;
153 EVP_MD *md_alg=NULL,*digest=EVP_md5();
154#ifndef MONOLITH
155 MS_STATIC char config_name[256];
156#endif
157
158#ifndef NO_DES
159 cipher=EVP_des_ede3_cbc();
160#endif
161 apps_startup();
162
163 if (bio_err == NULL)
164 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
58964a49 165 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
d02b48c6
RE
166
167 infile=NULL;
168 outfile=NULL;
169 informat=FORMAT_PEM;
170 outformat=FORMAT_PEM;
171
172 prog=argv[0];
173 argc--;
174 argv++;
175 while (argc >= 1)
176 {
177 if (strcmp(*argv,"-inform") == 0)
178 {
179 if (--argc < 1) goto bad;
180 informat=str2fmt(*(++argv));
181 }
182 else if (strcmp(*argv,"-outform") == 0)
183 {
184 if (--argc < 1) goto bad;
185 outformat=str2fmt(*(++argv));
186 }
187 else if (strcmp(*argv,"-key") == 0)
188 {
189 if (--argc < 1) goto bad;
190 keyfile= *(++argv);
191 }
192 else if (strcmp(*argv,"-new") == 0)
193 {
194 pkey_type=TYPE_RSA;
195 newreq=1;
196 }
197 else if (strcmp(*argv,"-config") == 0)
198 {
199 if (--argc < 1) goto bad;
200 template= *(++argv);
201 }
202 else if (strcmp(*argv,"-keyform") == 0)
203 {
204 if (--argc < 1) goto bad;
205 keyform=str2fmt(*(++argv));
206 }
207 else if (strcmp(*argv,"-in") == 0)
208 {
209 if (--argc < 1) goto bad;
210 infile= *(++argv);
211 }
212 else if (strcmp(*argv,"-out") == 0)
213 {
214 if (--argc < 1) goto bad;
215 outfile= *(++argv);
216 }
217 else if (strcmp(*argv,"-keyout") == 0)
218 {
219 if (--argc < 1) goto bad;
220 keyout= *(++argv);
221 }
222 else if (strcmp(*argv,"-newkey") == 0)
223 {
224 if (--argc < 1) goto bad;
225 p= *(++argv);
226 if ((strncmp("rsa:",p,4) == 0) ||
227 ((p[0] >= '0') && (p[0] <= '9')))
228 {
229 pkey_type=TYPE_RSA;
230 p+=4;
231 newkey= atoi(p);
232 }
58964a49
RE
233 else
234#ifndef NO_DSA
235 if (strncmp("dsa:",p,4) == 0)
d02b48c6
RE
236 {
237 X509 *xtmp=NULL;
238 EVP_PKEY *dtmp;
239
240 pkey_type=TYPE_DSA;
241 p+=4;
242 if ((in=BIO_new_file(p,"r")) == NULL)
243 {
244 perror(p);
245 goto end;
246 }
247 if ((dsa_params=PEM_read_bio_DSAparams(in,NULL,NULL)) == NULL)
248 {
249 ERR_clear_error();
250 BIO_reset(in);
251 if ((xtmp=PEM_read_bio_X509(in,NULL,NULL)) == NULL)
252 {
253 BIO_printf(bio_err,"unable to load DSA parameters from file\n");
254 goto end;
255 }
58964a49
RE
256
257 /* This will 'disapear'
258 * when we free xtmp */
d02b48c6
RE
259 dtmp=X509_get_pubkey(xtmp);
260 if (dtmp->type == EVP_PKEY_DSA)
261 dsa_params=DSAparams_dup(dtmp->pkey.dsa);
262 X509_free(xtmp);
263 if (dsa_params == NULL)
264 {
265 BIO_printf(bio_err,"Certificate does not contain DSA parameters\n");
266 goto end;
267 }
d02b48c6
RE
268 }
269 BIO_free(in);
270 newkey=BN_num_bits(dsa_params->p);
271 in=NULL;
272 }
58964a49
RE
273 else
274#endif
275#ifndef NO_DH
276 if (strncmp("dh:",p,4) == 0)
d02b48c6
RE
277 {
278 pkey_type=TYPE_DH;
279 p+=3;
280 }
281 else
58964a49 282#endif
d02b48c6
RE
283 pkey_type=TYPE_RSA;
284
285 newreq=1;
286 }
287 else if (strcmp(*argv,"-modulus") == 0)
288 modulus=1;
289 else if (strcmp(*argv,"-verify") == 0)
290 verify=1;
291 else if (strcmp(*argv,"-nodes") == 0)
292 nodes=1;
293 else if (strcmp(*argv,"-noout") == 0)
294 noout=1;
295 else if (strcmp(*argv,"-text") == 0)
296 text=1;
297 else if (strcmp(*argv,"-x509") == 0)
298 x509=1;
299 else if (strcmp(*argv,"-asn1-kludge") == 0)
300 kludge=1;
301 else if (strcmp(*argv,"-no-asn1-kludge") == 0)
302 kludge=0;
303 else if (strcmp(*argv,"-days") == 0)
304 {
305 if (--argc < 1) goto bad;
306 days= atoi(*(++argv));
307 if (days == 0) days=30;
308 }
309 else if ((md_alg=EVP_get_digestbyname(&((*argv)[1]))) != NULL)
310 {
311 /* ok */
312 digest=md_alg;
313 }
314 else
315
316 {
317 BIO_printf(bio_err,"unknown option %s\n",*argv);
318 badops=1;
319 break;
320 }
321 argc--;
322 argv++;
323 }
324
325 if (badops)
326 {
327bad:
328 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
329 BIO_printf(bio_err,"where options are\n");
330 BIO_printf(bio_err," -inform arg input format - one of DER TXT PEM\n");
331 BIO_printf(bio_err," -outform arg output format - one of DER TXT PEM\n");
332 BIO_printf(bio_err," -in arg inout file\n");
333 BIO_printf(bio_err," -out arg output file\n");
334 BIO_printf(bio_err," -text text form of request\n");
335 BIO_printf(bio_err," -noout do not output REQ\n");
336 BIO_printf(bio_err," -verify verify signature on REQ\n");
337 BIO_printf(bio_err," -modulus RSA modulus\n");
338 BIO_printf(bio_err," -nodes don't encrypt the output key\n");
339 BIO_printf(bio_err," -key file use the private key contained in file\n");
340 BIO_printf(bio_err," -keyform arg key file format\n");
341 BIO_printf(bio_err," -keyout arg file to send the key to\n");
342 BIO_printf(bio_err," -newkey rsa:bits generate a new RSA key of 'bits' in size\n");
343 BIO_printf(bio_err," -newkey dsa:file generate a new DSA key, parameters taken from CA in 'file'\n");
344
345 BIO_printf(bio_err," -[digest] Digest to sign with (md5, sha1, md2, mdc2)\n");
346 BIO_printf(bio_err," -config file request templace file.\n");
347 BIO_printf(bio_err," -new new request.\n");
348 BIO_printf(bio_err," -x509 output a x509 structure instead of a cert. req.\n");
349 BIO_printf(bio_err," -days number of days a x509 generated by -x509 is valid for.\n");
350 BIO_printf(bio_err," -asn1-kludge Output the 'request' in a format that is wrong but some CA's\n");
351 BIO_printf(bio_err," have been reported as requiring\n");
352 BIO_printf(bio_err," [ It is now always turned on but can be turned off with -no-asn1-kludge ]\n");
353 goto end;
354 }
355
356 ERR_load_crypto_strings();
357
358#ifndef MONOLITH
359 /* Lets load up our environment a little */
06d5b162
RE
360 p=getenv("OPENSSL_CONF");
361 if (p == NULL)
362 p=getenv("SSLEAY_CONF");
d02b48c6
RE
363 if (p == NULL)
364 {
365 strcpy(config_name,X509_get_default_cert_area());
366 strcat(config_name,"/lib/");
06d5b162 367 strcat(config_name,OPENSSL_CONF);
d02b48c6
RE
368 p=config_name;
369 }
370 default_config_file=p;
371 config=CONF_load(config,p,NULL);
372#endif
373
374 if (template != NULL)
375 {
376 long errline;
377
378 BIO_printf(bio_err,"Using configuration from %s\n",template);
379 req_conf=CONF_load(NULL,template,&errline);
380 if (req_conf == NULL)
381 {
382 BIO_printf(bio_err,"error on line %ld of %s\n",errline,template);
383 goto end;
384 }
385 }
386 else
387 {
388 req_conf=config;
389 BIO_printf(bio_err,"Using configuration from %s\n",
390 default_config_file);
391 if (req_conf == NULL)
392 {
393 BIO_printf(bio_err,"Unable to load config info\n");
394 }
395 }
396
dfeab068
RE
397 if (req_conf != NULL)
398 {
399 p=CONF_get_string(req_conf,NULL,"oid_file");
400 if (p != NULL)
401 {
402 BIO *oid_bio;
403
404 oid_bio=BIO_new_file(p,"r");
405 if (oid_bio == NULL)
406 {
407 /*
408 BIO_printf(bio_err,"problems opening %s for extra oid's\n",p);
409 ERR_print_errors(bio_err);
410 */
411 }
412 else
413 {
414 OBJ_create_objects(oid_bio);
415 BIO_free(oid_bio);
416 }
417 }
418 }
419
d02b48c6
RE
420 if ((md_alg == NULL) &&
421 ((p=CONF_get_string(req_conf,SECTION,"default_md")) != NULL))
422 {
423 if ((md_alg=EVP_get_digestbyname(p)) != NULL)
424 digest=md_alg;
425 }
426
427 in=BIO_new(BIO_s_file());
428 out=BIO_new(BIO_s_file());
429 if ((in == NULL) || (out == NULL))
430 goto end;
431
432 if (keyfile != NULL)
433 {
434 if (BIO_read_filename(in,keyfile) <= 0)
435 {
436 perror(keyfile);
437 goto end;
438 }
439
440/* if (keyform == FORMAT_ASN1)
441 rsa=d2i_RSAPrivateKey_bio(in,NULL);
442 else */
443 if (keyform == FORMAT_PEM)
444 pkey=PEM_read_bio_PrivateKey(in,NULL,NULL);
445 else
446 {
447 BIO_printf(bio_err,"bad input format specified for X509 request\n");
448 goto end;
449 }
450
451 if (pkey == NULL)
452 {
453 BIO_printf(bio_err,"unable to load Private key\n");
454 goto end;
455 }
456 }
457
458 if (newreq && (pkey == NULL))
459 {
460 char *randfile;
461 char buffer[200];
462
463 if ((randfile=CONF_get_string(req_conf,SECTION,"RANDFILE")) == NULL)
464 randfile=RAND_file_name(buffer,200);
465#ifdef WINDOWS
466 BIO_printf(bio_err,"Loading 'screen' into random state -");
467 BIO_flush(bio_err);
468 RAND_screen();
469 BIO_printf(bio_err," done\n");
470#endif
471 if ((randfile == NULL) || !RAND_load_file(randfile,1024L*1024L))
472 {
473 BIO_printf(bio_err,"unable to load 'random state'\n");
474 BIO_printf(bio_err,"What this means is that the random number generator has not been seeded\n");
475 BIO_printf(bio_err,"with much random data.\n");
476 BIO_printf(bio_err,"Consider setting the RANDFILE environment variable to point at a file that\n");
477 BIO_printf(bio_err,"'random' data can be kept in.\n");
478 }
479 if (newkey <= 0)
480 {
481 newkey=(int)CONF_get_number(req_conf,SECTION,BITS);
482 if (newkey <= 0)
483 newkey=DEFAULT_KEY_LENGTH;
484 }
485
486 if (newkey < MIN_KEY_LENGTH)
487 {
488 BIO_printf(bio_err,"private key length is too short,\n");
489 BIO_printf(bio_err,"it needs to be at least %d bits, not %d\n",MIN_KEY_LENGTH,newkey);
490 goto end;
491 }
492 BIO_printf(bio_err,"Generating a %d bit %s private key\n",
493 newkey,(pkey_type == TYPE_RSA)?"RSA":"DSA");
494
495 if ((pkey=EVP_PKEY_new()) == NULL) goto end;
496
497#ifndef NO_RSA
498 if (pkey_type == TYPE_RSA)
499 {
500 if (!EVP_PKEY_assign_RSA(pkey,
58964a49
RE
501 RSA_generate_key(newkey,0x10001,
502 req_cb,(char *)bio_err)))
d02b48c6
RE
503 goto end;
504 }
505 else
506#endif
507#ifndef NO_DSA
508 if (pkey_type == TYPE_DSA)
509 {
510 if (!DSA_generate_key(dsa_params)) goto end;
511 if (!EVP_PKEY_assign_DSA(pkey,dsa_params)) goto end;
512 dsa_params=NULL;
513 }
514#endif
515
516 if ((randfile == NULL) || (RAND_write_file(randfile) == 0))
517 BIO_printf(bio_err,"unable to write 'random state'\n");
518
519 if (pkey == NULL) goto end;
520
521 if (keyout == NULL)
522 keyout=CONF_get_string(req_conf,SECTION,KEYFILE);
523
524 if (keyout == NULL)
525 {
526 BIO_printf(bio_err,"writing new private key to stdout\n");
527 BIO_set_fp(out,stdout,BIO_NOCLOSE);
528 }
529 else
530 {
531 BIO_printf(bio_err,"writing new private key to '%s'\n",keyout);
532 if (BIO_write_filename(out,keyout) <= 0)
533 {
534 perror(keyout);
535 goto end;
536 }
537 }
538
539 p=CONF_get_string(req_conf,SECTION,"encrypt_rsa_key");
540 if (p == NULL)
541 p=CONF_get_string(req_conf,SECTION,"encrypt_key");
542 if ((p != NULL) && (strcmp(p,"no") == 0))
543 cipher=NULL;
544 if (nodes) cipher=NULL;
545
546 i=0;
547loop:
548 if (!PEM_write_bio_PrivateKey(out,pkey,cipher,
549 NULL,0,NULL))
550 {
551 if ((ERR_GET_REASON(ERR_peek_error()) ==
552 PEM_R_PROBLEMS_GETTING_PASSWORD) && (i < 3))
553 {
554 ERR_clear_error();
555 i++;
556 goto loop;
557 }
558 goto end;
559 }
560 BIO_printf(bio_err,"-----\n");
561 }
562
563 if (!newreq)
564 {
565 /* Since we are using a pre-existing certificate
566 * request, the kludge 'format' info should not be
567 * changed. */
568 kludge= -1;
569 if (infile == NULL)
570 BIO_set_fp(in,stdin,BIO_NOCLOSE);
571 else
572 {
573 if (BIO_read_filename(in,infile) <= 0)
574 {
575 perror(infile);
576 goto end;
577 }
578 }
579
580 if (informat == FORMAT_ASN1)
581 req=d2i_X509_REQ_bio(in,NULL);
582 else if (informat == FORMAT_PEM)
583 req=PEM_read_bio_X509_REQ(in,NULL,NULL);
584 else
585 {
586 BIO_printf(bio_err,"bad input format specified for X509 request\n");
587 goto end;
588 }
589 if (req == NULL)
590 {
591 BIO_printf(bio_err,"unable to load X509 request\n");
592 goto end;
593 }
594 }
595
596 if (newreq || x509)
597 {
58964a49 598#ifndef NO_DSA
d02b48c6
RE
599 if (pkey->type == EVP_PKEY_DSA)
600 digest=EVP_dss1();
58964a49 601#endif
d02b48c6
RE
602
603 if (pkey == NULL)
604 {
605 BIO_printf(bio_err,"you need to specify a private key\n");
606 goto end;
607 }
608 if (req == NULL)
609 {
610 req=X509_REQ_new();
611 if (req == NULL)
612 {
613 goto end;
614 }
615
616 i=make_REQ(req,pkey,!x509);
617 if (kludge >= 0)
618 req->req_info->req_kludge=kludge;
619 if (!i)
620 {
621 BIO_printf(bio_err,"problems making Certificate Request\n");
622 goto end;
623 }
624 }
625 if (x509)
626 {
627 if ((x509ss=X509_new()) == NULL) goto end;
628
629 /* don't set the version number, for starters
630 * the field is null and second, null is v0
631 * if (!ASN1_INTEGER_set(ci->version,0L)) goto end;
632 */
633 ASN1_INTEGER_set(X509_get_serialNumber(x509ss),0L);
634
635 X509_set_issuer_name(x509ss,
636 X509_REQ_get_subject_name(req));
637 X509_gmtime_adj(X509_get_notBefore(x509ss),0);
638 X509_gmtime_adj(X509_get_notAfter(x509ss),
639 (long)60*60*24*days);
640 X509_set_subject_name(x509ss,
641 X509_REQ_get_subject_name(req));
642 X509_set_pubkey(x509ss,X509_REQ_get_pubkey(req));
643
644 if (!(i=X509_sign(x509ss,pkey,digest)))
645 goto end;
646 }
647 else
648 {
649 if (!(i=X509_REQ_sign(req,pkey,digest)))
650 goto end;
651 }
652 }
653
654 if (verify && !x509)
655 {
656 int tmp=0;
657
658 if (pkey == NULL)
659 {
660 pkey=X509_REQ_get_pubkey(req);
661 tmp=1;
662 if (pkey == NULL) goto end;
663 }
664
665 i=X509_REQ_verify(req,pkey);
cfcf6453
DSH
666 if (tmp) {
667 EVP_PKEY_free(pkey);
668 pkey=NULL;
669 }
d02b48c6
RE
670
671 if (i < 0)
672 {
673 goto end;
674 }
675 else if (i == 0)
676 {
677 BIO_printf(bio_err,"verify failure\n");
678 }
679 else /* if (i > 0) */
680 BIO_printf(bio_err,"verify OK\n");
681 }
682
683 if (noout && !text && !modulus)
684 {
685 ex=0;
686 goto end;
687 }
688
689 if (outfile == NULL)
690 BIO_set_fp(out,stdout,BIO_NOCLOSE);
691 else
692 {
693 if ((keyout != NULL) && (strcmp(outfile,keyout) == 0))
694 i=(int)BIO_append_filename(out,outfile);
695 else
696 i=(int)BIO_write_filename(out,outfile);
697 if (!i)
698 {
699 perror(outfile);
700 goto end;
701 }
702 }
703
704 if (text)
705 {
706 if (x509)
707 X509_print(out,x509ss);
708 else
709 X509_REQ_print(out,req);
710 }
711
712 if (modulus)
713 {
714 EVP_PKEY *pubkey;
715
716 if (x509)
717 pubkey=X509_get_pubkey(x509ss);
718 else
719 pubkey=X509_REQ_get_pubkey(req);
720 if (pubkey == NULL)
721 {
722 fprintf(stdout,"Modulus=unavailable\n");
723 goto end;
724 }
725 fprintf(stdout,"Modulus=");
13e91dd3 726#ifndef NO_RSA
d02b48c6
RE
727 if (pubkey->type == EVP_PKEY_RSA)
728 BN_print(out,pubkey->pkey.rsa->n);
729 else
13e91dd3 730#endif
d02b48c6
RE
731 fprintf(stdout,"Wrong Algorithm type");
732 fprintf(stdout,"\n");
733 }
734
735 if (!noout && !x509)
736 {
737 if (outformat == FORMAT_ASN1)
738 i=i2d_X509_REQ_bio(out,req);
739 else if (outformat == FORMAT_PEM)
740 i=PEM_write_bio_X509_REQ(out,req);
741 else {
742 BIO_printf(bio_err,"bad output format specified for outfile\n");
743 goto end;
744 }
745 if (!i)
746 {
747 BIO_printf(bio_err,"unable to write X509 request\n");
748 goto end;
749 }
750 }
751 if (!noout && x509 && (x509ss != NULL))
752 {
753 if (outformat == FORMAT_ASN1)
754 i=i2d_X509_bio(out,x509ss);
755 else if (outformat == FORMAT_PEM)
756 i=PEM_write_bio_X509(out,x509ss);
757 else {
758 BIO_printf(bio_err,"bad output format specified for outfile\n");
759 goto end;
760 }
761 if (!i)
762 {
763 BIO_printf(bio_err,"unable to write X509 certificate\n");
764 goto end;
765 }
766 }
767 ex=0;
768end:
769 if (ex)
770 {
771 ERR_print_errors(bio_err);
772 }
773 if ((req_conf != NULL) && (req_conf != config)) CONF_free(req_conf);
774 if (in != NULL) BIO_free(in);
775 if (out != NULL) BIO_free(out);
776 if (pkey != NULL) EVP_PKEY_free(pkey);
777 if (req != NULL) X509_REQ_free(req);
778 if (x509ss != NULL) X509_free(x509ss);
58964a49 779#ifndef NO_DSA
d02b48c6 780 if (dsa_params != NULL) DSA_free(dsa_params);
58964a49 781#endif
d02b48c6
RE
782 EXIT(ex);
783 }
784
785static int make_REQ(req,pkey,attribs)
786X509_REQ *req;
787EVP_PKEY *pkey;
788int attribs;
789 {
790 int ret=0,i,j;
58964a49 791 unsigned char *p,*q;
d02b48c6
RE
792 X509_REQ_INFO *ri;
793 char buf[100];
794 int nid,min,max;
795 char *type,*def,*tmp,*value,*tmp_attr;
796 STACK *sk,*attr=NULL;
797 CONF_VALUE *v;
798
799 tmp=CONF_get_string(req_conf,SECTION,DISTINGUISHED_NAME);
800 if (tmp == NULL)
801 {
802 BIO_printf(bio_err,"unable to find '%s' in config\n",
803 DISTINGUISHED_NAME);
804 goto err;
805 }
806 sk=CONF_get_section(req_conf,tmp);
807 if (sk == NULL)
808 {
809 BIO_printf(bio_err,"unable to get '%s' section\n",tmp);
810 goto err;
811 }
812
813 tmp_attr=CONF_get_string(req_conf,SECTION,ATTRIBUTES);
814 if (tmp_attr == NULL)
815 attr=NULL;
816 else
817 {
818 attr=CONF_get_section(req_conf,tmp_attr);
819 if (attr == NULL)
820 {
821 BIO_printf(bio_err,"unable to get '%s' section\n",tmp_attr);
822 goto err;
823 }
824 }
825
826 ri=req->req_info;
827
828 BIO_printf(bio_err,"You are about to be asked to enter information that will be incorporated\n");
829 BIO_printf(bio_err,"into your certificate request.\n");
830 BIO_printf(bio_err,"What you are about to enter is what is called a Distinguished Name or a DN.\n");
831 BIO_printf(bio_err,"There are quite a few fields but you can leave some blank\n");
832 BIO_printf(bio_err,"For some fields there will be a default value,\n");
833 BIO_printf(bio_err,"If you enter '.', the field will be left blank.\n");
834 BIO_printf(bio_err,"-----\n");
835
836 /* setup version number */
837 if (!ASN1_INTEGER_set(ri->version,0L)) goto err; /* version 1 */
838
839 if (sk_num(sk))
840 {
841 i= -1;
842start: for (;;)
843 {
844 i++;
845 if ((int)sk_num(sk) <= i) break;
846
847 v=(CONF_VALUE *)sk_value(sk,i);
58964a49 848 p=q=NULL;
d02b48c6 849 type=v->name;
58964a49
RE
850 /* Allow for raw OIDs */
851 /* [n.mm.ooo.ppp] */
d02b48c6
RE
852 for (j=0; type[j] != '\0'; j++)
853 {
854 if ( (type[j] == ':') ||
855 (type[j] == ',') ||
856 (type[j] == '.'))
58964a49
RE
857 p=(unsigned char *)&(type[j+1]);
858 if (type[j] == '[')
859 {
860 p=(unsigned char *)&(type[j+1]);
861 for (j++; type[j] != '\0'; j++)
862 if (type[j] == ']')
863 {
864 q=(unsigned char *)&(type[j]);
865 break;
866 }
867 break;
868 }
d02b48c6
RE
869 }
870 if (p != NULL)
871 type=(char *)p;
872 if ((nid=OBJ_txt2nid(type)) == NID_undef)
58964a49
RE
873 {
874 /* Add a new one if possible */
875 if ((p != NULL) && (q != NULL) && (*q == ']'))
876 {
877 *q='\0';
878 nid=OBJ_create((char *)p,NULL,NULL);
879 *q=']';
880 if (nid == NID_undef) goto start;
881 }
882 else
883 goto start;
884 }
d02b48c6
RE
885
886 sprintf(buf,"%s_default",v->name);
887 if ((def=CONF_get_string(req_conf,tmp,buf)) == NULL)
888 def="";
889
890 sprintf(buf,"%s_value",v->name);
891 if ((value=CONF_get_string(req_conf,tmp,buf)) == NULL)
892 value=NULL;
893
894 sprintf(buf,"%s_min",v->name);
895 min=(int)CONF_get_number(req_conf,tmp,buf);
896
897 sprintf(buf,"%s_max",v->name);
898 max=(int)CONF_get_number(req_conf,tmp,buf);
899
900 if (!add_DN_object(ri->subject,v->value,def,value,nid,
901 min,max))
902 goto err;
903 }
904 if (sk_num(ri->subject->entries) == 0)
905 {
906 BIO_printf(bio_err,"error, no objects specified in config file\n");
907 goto err;
908 }
909
910 if (attribs)
911 {
912 if ((attr != NULL) && (sk_num(attr) > 0))
913 {
914 BIO_printf(bio_err,"\nPlease enter the following 'extra' attributes\n");
915 BIO_printf(bio_err,"to be sent with your certificate request\n");
916 }
917
918 i= -1;
919start2: for (;;)
920 {
921 i++;
922 if ((attr == NULL) || ((int)sk_num(attr) <= i))
923 break;
924
925 v=(CONF_VALUE *)sk_value(attr,i);
926 type=v->name;
927 if ((nid=OBJ_txt2nid(type)) == NID_undef)
928 goto start2;
929
930 sprintf(buf,"%s_default",type);
931 if ((def=CONF_get_string(req_conf,tmp_attr,buf))
932 == NULL)
933 def="";
934
935 sprintf(buf,"%s_value",type);
936 if ((value=CONF_get_string(req_conf,tmp_attr,buf))
937 == NULL)
938 value=NULL;
939
940 sprintf(buf,"%s_min",type);
941 min=(int)CONF_get_number(req_conf,tmp_attr,buf);
942
943 sprintf(buf,"%s_max",type);
944 max=(int)CONF_get_number(req_conf,tmp_attr,buf);
945
946 if (!add_attribute_object(ri->attributes,
947 v->value,def,value,nid,min,max))
948 goto err;
949 }
950 }
951 }
952 else
953 {
954 BIO_printf(bio_err,"No template, please set one up.\n");
955 goto err;
956 }
957
958 X509_REQ_set_pubkey(req,pkey);
959
960 ret=1;
961err:
962 return(ret);
963 }
964
965static int add_DN_object(n,text,def,value,nid,min,max)
966X509_NAME *n;
967char *text;
968char *def;
969char *value;
970int nid;
971int min;
972int max;
973 {
974 int i,j,ret=0;
975 X509_NAME_ENTRY *ne=NULL;
976 MS_STATIC char buf[1024];
977
978 BIO_printf(bio_err,"%s [%s]:",text,def);
979 BIO_flush(bio_err);
980 if (value != NULL)
981 {
982 strcpy(buf,value);
983 strcat(buf,"\n");
984 BIO_printf(bio_err,"%s\n",value);
985 }
986 else
987 {
988 buf[0]='\0';
989 fgets(buf,1024,stdin);
990 }
991
992 if (buf[0] == '\0') return(0);
993 else if (buf[0] == '\n')
994 {
995 if ((def == NULL) || (def[0] == '\0'))
996 return(1);
997 strcpy(buf,def);
998 strcat(buf,"\n");
999 }
1000 else if ((buf[0] == '.') && (buf[1] == '\n')) return(1);
1001
1002 i=strlen(buf);
1003 if (buf[i-1] != '\n')
1004 {
1005 BIO_printf(bio_err,"weird input :-(\n");
1006 return(0);
1007 }
1008 buf[--i]='\0';
1009
1010 j=ASN1_PRINTABLE_type((unsigned char *)buf,-1);
1011 if (req_fix_data(nid,&j,i,min,max) == 0)
1012 goto err;
1013 if ((ne=X509_NAME_ENTRY_create_by_NID(NULL,nid,j,(unsigned char *)buf,
1014 strlen(buf)))
1015 == NULL) goto err;
1016 if (!X509_NAME_add_entry(n,ne,X509_NAME_entry_count(n),0))
1017 goto err;
1018
1019 ret=1;
1020err:
1021 if (ne != NULL) X509_NAME_ENTRY_free(ne);
1022 return(ret);
1023 }
1024
1025static int add_attribute_object(n,text,def,value,nid,min,max)
1026STACK *n;
1027char *text;
1028char *def;
1029char *value;
1030int nid;
1031int min;
1032int max;
1033 {
1034 int i,z;
1035 X509_ATTRIBUTE *xa=NULL;
1036 static char buf[1024];
1037 ASN1_BIT_STRING *bs=NULL;
1038 ASN1_TYPE *at=NULL;
1039
1040start:
1041 BIO_printf(bio_err,"%s [%s]:",text,def);
1042 BIO_flush(bio_err);
1043 if (value != NULL)
1044 {
1045 strcpy(buf,value);
1046 strcat(buf,"\n");
1047 BIO_printf(bio_err,"%s\n",value);
1048 }
1049 else
1050 {
1051 buf[0]='\0';
1052 fgets(buf,1024,stdin);
1053 }
1054
1055 if (buf[0] == '\0') return(0);
1056 else if (buf[0] == '\n')
1057 {
1058 if ((def == NULL) || (def[0] == '\0'))
1059 return(1);
1060 strcpy(buf,def);
1061 strcat(buf,"\n");
1062 }
1063 else if ((buf[0] == '.') && (buf[1] == '\n')) return(1);
1064
1065 i=strlen(buf);
1066 if (buf[i-1] != '\n')
1067 {
1068 BIO_printf(bio_err,"weird input :-(\n");
1069 return(0);
1070 }
1071 buf[--i]='\0';
1072
1073 /* add object plus value */
1074 if ((xa=X509_ATTRIBUTE_new()) == NULL)
1075 goto err;
1076 if ((xa->value.set=sk_new_null()) == NULL)
1077 goto err;
1078 xa->set=1;
1079
1080 if (xa->object != NULL) ASN1_OBJECT_free(xa->object);
1081 xa->object=OBJ_nid2obj(nid);
1082
1083 if ((bs=ASN1_BIT_STRING_new()) == NULL) goto err;
1084
1085 bs->type=ASN1_PRINTABLE_type((unsigned char *)buf,-1);
1086
1087 z=req_fix_data(nid,&bs->type,i,min,max);
1088 if (z == 0)
1089 {
1090 if (value == NULL)
1091 goto start;
1092 else goto err;
1093 }
1094
1095 if (!ASN1_STRING_set(bs,(unsigned char *)buf,i+1))
1096 { BIO_printf(bio_err,"Malloc failure\n"); goto err; }
1097
1098 if ((at=ASN1_TYPE_new()) == NULL)
1099 { BIO_printf(bio_err,"Malloc failure\n"); goto err; }
1100
1101 ASN1_TYPE_set(at,bs->type,(char *)bs);
1102 sk_push(xa->value.set,(char *)at);
1103 bs=NULL;
1104 at=NULL;
1105 /* only one item per attribute */
1106
1107 if (!sk_push(n,(char *)xa)) goto err;
1108 return(1);
1109err:
1110 if (xa != NULL) X509_ATTRIBUTE_free(xa);
1111 if (at != NULL) ASN1_TYPE_free(at);
1112 if (bs != NULL) ASN1_BIT_STRING_free(bs);
1113 return(0);
1114 }
1115
58964a49 1116static void MS_CALLBACK req_cb(p,n,arg)
d02b48c6
RE
1117int p;
1118int n;
58964a49 1119char *arg;
d02b48c6
RE
1120 {
1121 char c='*';
1122
1123 if (p == 0) c='.';
1124 if (p == 1) c='+';
1125 if (p == 2) c='*';
1126 if (p == 3) c='\n';
58964a49
RE
1127 BIO_write((BIO *)arg,&c,1);
1128 BIO_flush((BIO *)arg);
d02b48c6
RE
1129#ifdef LINT
1130 p=n;
1131#endif
1132 }
1133
1134static int req_fix_data(nid,type,len,min,max)
1135int nid;
1136int *type;
1137int len,min,max;
1138 {
1139 if (nid == NID_pkcs9_emailAddress)
1140 *type=V_ASN1_IA5STRING;
1141 if ((nid == NID_commonName) && (*type == V_ASN1_IA5STRING))
1142 *type=V_ASN1_T61STRING;
1143 if ((nid == NID_pkcs9_challengePassword) &&
1144 (*type == V_ASN1_IA5STRING))
1145 *type=V_ASN1_T61STRING;
1146
1147 if ((nid == NID_pkcs9_unstructuredName) &&
1148 (*type == V_ASN1_T61STRING))
1149 {
1150 BIO_printf(bio_err,"invalid characters in string, please re-enter the string\n");
1151 return(0);
1152 }
1153 if (nid == NID_pkcs9_unstructuredName)
1154 *type=V_ASN1_IA5STRING;
1155
1156 if (len < min)
1157 {
1158 BIO_printf(bio_err,"string is too short, it needs to be at least %d bytes long\n",min);
1159 return(0);
1160 }
1161 if ((max != 0) && (len > max))
1162 {
1163 BIO_printf(bio_err,"string is too long, it needs to be less than %d bytes long\n",max);
1164 return(0);
1165 }
1166 return(1);
1167 }