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