63e2cab45f545f055514cc11aab901180816d0c8
[openssl.git] / apps / dsaparam.c
1 /* apps/dsaparam.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 /* Until the key-gen callbacks are modified to use newer prototypes, we allow
60  * deprecated functions for openssl-internal code */
61 #ifdef OPENSSL_NO_DEPRECATED
62 #undef OPENSSL_NO_DEPRECATED
63 #endif
64
65 #ifndef OPENSSL_NO_DSA
66 #include <assert.h>
67 #include <stdio.h>
68 #include <stdlib.h>
69 #include <time.h>
70 #include <string.h>
71 #include "apps.h"
72 #include <openssl/bio.h>
73 #include <openssl/err.h>
74 #include <openssl/bn.h>
75 #include <openssl/dsa.h>
76 #include <openssl/x509.h>
77 #include <openssl/pem.h>
78
79 #undef PROG
80 #define PROG    dsaparam_main
81
82 /* -inform arg  - input format - default PEM (DER or PEM)
83  * -outform arg - output format - default PEM
84  * -in arg      - input file - default stdin
85  * -out arg     - output file - default stdout
86  * -noout
87  * -text
88  * -C
89  * -noout
90  * -genkey
91  *  #ifdef GENCB_TEST
92  * -timebomb n  - interrupt keygen after <n> seconds
93  *  #endif
94  */
95
96 #ifdef GENCB_TEST
97
98 static int stop_keygen_flag = 0;
99
100 void timebomb_sigalarm(int foo)
101         {
102         stop_keygen_flag = 1;
103         }
104
105 #endif
106
107 static int MS_CALLBACK dsa_cb(int p, int n, BN_GENCB *cb);
108
109 int MAIN(int, char **);
110
111 int MAIN(int argc, char **argv)
112         {
113         ENGINE *e = NULL;
114         DSA *dsa=NULL;
115         int i,badops=0,text=0;
116         BIO *in=NULL,*out=NULL;
117         int informat,outformat,noout=0,C=0,ret=1;
118         char *infile,*outfile,*prog,*inrand=NULL;
119         int numbits= -1,num,genkey=0;
120         int need_rand=0;
121         char *engine=NULL;
122 #ifdef GENCB_TEST
123         int timebomb=0;
124 #endif
125
126         apps_startup();
127
128         if (bio_err == NULL)
129                 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
130                         BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
131
132         if (!load_config(bio_err, NULL))
133                 goto end;
134
135         infile=NULL;
136         outfile=NULL;
137         informat=FORMAT_PEM;
138         outformat=FORMAT_PEM;
139
140         prog=argv[0];
141         argc--;
142         argv++;
143         while (argc >= 1)
144                 {
145                 if      (strcmp(*argv,"-inform") == 0)
146                         {
147                         if (--argc < 1) goto bad;
148                         informat=str2fmt(*(++argv));
149                         }
150                 else if (strcmp(*argv,"-outform") == 0)
151                         {
152                         if (--argc < 1) goto bad;
153                         outformat=str2fmt(*(++argv));
154                         }
155                 else if (strcmp(*argv,"-in") == 0)
156                         {
157                         if (--argc < 1) goto bad;
158                         infile= *(++argv);
159                         }
160                 else if (strcmp(*argv,"-out") == 0)
161                         {
162                         if (--argc < 1) goto bad;
163                         outfile= *(++argv);
164                         }
165                 else if(strcmp(*argv, "-engine") == 0)
166                         {
167                         if (--argc < 1) goto bad;
168                         engine = *(++argv);
169                         }
170 #ifdef GENCB_TEST
171                 else if(strcmp(*argv, "-timebomb") == 0)
172                         {
173                         if (--argc < 1) goto bad;
174                         timebomb = atoi(*(++argv));
175                         }
176 #endif
177                 else if (strcmp(*argv,"-text") == 0)
178                         text=1;
179                 else if (strcmp(*argv,"-C") == 0)
180                         C=1;
181                 else if (strcmp(*argv,"-genkey") == 0)
182                         {
183                         genkey=1;
184                         need_rand=1;
185                         }
186                 else if (strcmp(*argv,"-rand") == 0)
187                         {
188                         if (--argc < 1) goto bad;
189                         inrand= *(++argv);
190                         need_rand=1;
191                         }
192                 else if (strcmp(*argv,"-noout") == 0)
193                         noout=1;
194                 else if (sscanf(*argv,"%d",&num) == 1)
195                         {
196                         /* generate a key */
197                         numbits=num;
198                         need_rand=1;
199                         }
200                 else
201                         {
202                         BIO_printf(bio_err,"unknown option %s\n",*argv);
203                         badops=1;
204                         break;
205                         }
206                 argc--;
207                 argv++;
208                 }
209
210         if (badops)
211                 {
212 bad:
213                 BIO_printf(bio_err,"%s [options] [bits] <infile >outfile\n",prog);
214                 BIO_printf(bio_err,"where options are\n");
215                 BIO_printf(bio_err," -inform arg   input format - DER or PEM\n");
216                 BIO_printf(bio_err," -outform arg  output format - DER or PEM\n");
217                 BIO_printf(bio_err," -in arg       input file\n");
218                 BIO_printf(bio_err," -out arg      output file\n");
219                 BIO_printf(bio_err," -text         print as text\n");
220                 BIO_printf(bio_err," -C            Output C code\n");
221                 BIO_printf(bio_err," -noout        no output\n");
222                 BIO_printf(bio_err," -genkey       generate a DSA key\n");
223                 BIO_printf(bio_err," -rand         files to use for random number input\n");
224                 BIO_printf(bio_err," -engine e     use engine e, possibly a hardware device.\n");
225 #ifdef GENCB_TEST
226                 BIO_printf(bio_err," -timebomb n   interrupt keygen after <n> seconds\n");
227 #endif
228                 BIO_printf(bio_err," number        number of bits to use for generating private key\n");
229                 goto end;
230                 }
231
232         ERR_load_crypto_strings();
233
234         in=BIO_new(BIO_s_file());
235         out=BIO_new(BIO_s_file());
236         if ((in == NULL) || (out == NULL))
237                 {
238                 ERR_print_errors(bio_err);
239                 goto end;
240                 }
241
242         if (infile == NULL)
243                 BIO_set_fp(in,stdin,BIO_NOCLOSE);
244         else
245                 {
246                 if (BIO_read_filename(in,infile) <= 0)
247                         {
248                         perror(infile);
249                         goto end;
250                         }
251                 }
252         if (outfile == NULL)
253                 {
254                 BIO_set_fp(out,stdout,BIO_NOCLOSE);
255 #ifdef OPENSSL_SYS_VMS
256                 {
257                 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
258                 out = BIO_push(tmpbio, out);
259                 }
260 #endif
261                 }
262         else
263                 {
264                 if (BIO_write_filename(out,outfile) <= 0)
265                         {
266                         perror(outfile);
267                         goto end;
268                         }
269                 }
270
271         e = setup_engine(bio_err, engine, 0);
272
273         if (need_rand)
274                 {
275                 app_RAND_load_file(NULL, bio_err, (inrand != NULL));
276                 if (inrand != NULL)
277                         BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
278                                 app_RAND_load_files(inrand));
279                 }
280
281         if (numbits > 0)
282                 {
283                 BN_GENCB cb;
284                 cb.ver = 2;
285                 cb.cb_2 = dsa_cb;
286                 cb.arg = bio_err;
287
288                 assert(need_rand);
289                 dsa = DSA_new();
290                 if(!dsa)
291                         {
292                         BIO_printf(bio_err,"Error allocating DSA object\n");
293                         goto end;
294                         }
295                 BIO_printf(bio_err,"Generating DSA parameters, %d bit long prime\n",num);
296                 BIO_printf(bio_err,"This could take some time\n");
297 #ifdef GENCB_TEST
298                 if(timebomb > 0)
299         {
300                 struct sigaction act;
301                 act.sa_handler = timebomb_sigalarm;
302                 act.sa_flags = 0;
303                 BIO_printf(bio_err,"(though I'll stop it if not done within %d secs)\n",
304                                 timebomb);
305                 if(sigaction(SIGALRM, &act, NULL) != 0)
306                         {
307                         BIO_printf(bio_err,"Error, couldn't set SIGALRM handler\n");
308                         goto end;
309                         }
310                 alarm(timebomb);
311         }
312 #endif
313                 if(!DSA_generate_parameters_ex(dsa,num,NULL,0,NULL,NULL, &cb))
314                         {
315 #ifdef GENCB_TEST
316                         if(stop_keygen_flag)
317                                 {
318                                 BIO_printf(bio_err,"DSA key generation time-stopped\n");
319                                 /* This is an asked-for behaviour! */
320                                 ret = 0;
321                                 goto end;
322                                 }
323 #endif
324                         BIO_printf(bio_err,"Error, DSA key generation failed\n");
325                         goto end;
326                         }
327                 }
328         else if (informat == FORMAT_ASN1)
329                 dsa=d2i_DSAparams_bio(in,NULL);
330         else if (informat == FORMAT_PEM)
331                 dsa=PEM_read_bio_DSAparams(in,NULL,NULL,NULL);
332         else
333                 {
334                 BIO_printf(bio_err,"bad input format specified\n");
335                 goto end;
336                 }
337         if (dsa == NULL)
338                 {
339                 BIO_printf(bio_err,"unable to load DSA parameters\n");
340                 ERR_print_errors(bio_err);
341                 goto end;
342                 }
343
344         if (text)
345                 {
346                 DSAparams_print(out,dsa);
347                 }
348         
349         if (C)
350                 {
351                 unsigned char *data;
352                 int l,len,bits_p,bits_q,bits_g;
353
354                 len=BN_num_bytes(dsa->p);
355                 bits_p=BN_num_bits(dsa->p);
356                 bits_q=BN_num_bits(dsa->q);
357                 bits_g=BN_num_bits(dsa->g);
358                 data=(unsigned char *)OPENSSL_malloc(len+20);
359                 if (data == NULL)
360                         {
361                         perror("OPENSSL_malloc");
362                         goto end;
363                         }
364                 l=BN_bn2bin(dsa->p,data);
365                 printf("static unsigned char dsa%d_p[]={",bits_p);
366                 for (i=0; i<l; i++)
367                         {
368                         if ((i%12) == 0) printf("\n\t");
369                         printf("0x%02X,",data[i]);
370                         }
371                 printf("\n\t};\n");
372
373                 l=BN_bn2bin(dsa->q,data);
374                 printf("static unsigned char dsa%d_q[]={",bits_p);
375                 for (i=0; i<l; i++)
376                         {
377                         if ((i%12) == 0) printf("\n\t");
378                         printf("0x%02X,",data[i]);
379                         }
380                 printf("\n\t};\n");
381
382                 l=BN_bn2bin(dsa->g,data);
383                 printf("static unsigned char dsa%d_g[]={",bits_p);
384                 for (i=0; i<l; i++)
385                         {
386                         if ((i%12) == 0) printf("\n\t");
387                         printf("0x%02X,",data[i]);
388                         }
389                 printf("\n\t};\n\n");
390
391                 printf("DSA *get_dsa%d()\n\t{\n",bits_p);
392                 printf("\tDSA *dsa;\n\n");
393                 printf("\tif ((dsa=DSA_new()) == NULL) return(NULL);\n");
394                 printf("\tdsa->p=BN_bin2bn(dsa%d_p,sizeof(dsa%d_p),NULL);\n",
395                         bits_p,bits_p);
396                 printf("\tdsa->q=BN_bin2bn(dsa%d_q,sizeof(dsa%d_q),NULL);\n",
397                         bits_p,bits_p);
398                 printf("\tdsa->g=BN_bin2bn(dsa%d_g,sizeof(dsa%d_g),NULL);\n",
399                         bits_p,bits_p);
400                 printf("\tif ((dsa->p == NULL) || (dsa->q == NULL) || (dsa->g == NULL))\n");
401                 printf("\t\t{ DSA_free(dsa); return(NULL); }\n");
402                 printf("\treturn(dsa);\n\t}\n");
403                 }
404
405
406         if (!noout)
407                 {
408                 if      (outformat == FORMAT_ASN1)
409                         i=i2d_DSAparams_bio(out,dsa);
410                 else if (outformat == FORMAT_PEM)
411                         i=PEM_write_bio_DSAparams(out,dsa);
412                 else    {
413                         BIO_printf(bio_err,"bad output format specified for outfile\n");
414                         goto end;
415                         }
416                 if (!i)
417                         {
418                         BIO_printf(bio_err,"unable to write DSA parameters\n");
419                         ERR_print_errors(bio_err);
420                         goto end;
421                         }
422                 }
423         if (genkey)
424                 {
425                 DSA *dsakey;
426
427                 assert(need_rand);
428                 if ((dsakey=DSAparams_dup(dsa)) == NULL) goto end;
429                 if (!DSA_generate_key(dsakey)) goto end;
430                 if      (outformat == FORMAT_ASN1)
431                         i=i2d_DSAPrivateKey_bio(out,dsakey);
432                 else if (outformat == FORMAT_PEM)
433                         i=PEM_write_bio_DSAPrivateKey(out,dsakey,NULL,NULL,0,NULL,NULL);
434                 else    {
435                         BIO_printf(bio_err,"bad output format specified for outfile\n");
436                         goto end;
437                         }
438                 DSA_free(dsakey);
439                 }
440         if (need_rand)
441                 app_RAND_write_file(NULL, bio_err);
442         ret=0;
443 end:
444         if (in != NULL) BIO_free(in);
445         if (out != NULL) BIO_free_all(out);
446         if (dsa != NULL) DSA_free(dsa);
447         apps_shutdown();
448         OPENSSL_EXIT(ret);
449         }
450
451 static int MS_CALLBACK dsa_cb(int p, int n, BN_GENCB *cb)
452         {
453         char c='*';
454
455         if (p == 0) c='.';
456         if (p == 1) c='+';
457         if (p == 2) c='*';
458         if (p == 3) c='\n';
459         BIO_write(cb->arg,&c,1);
460         (void)BIO_flush(cb->arg);
461 #ifdef LINT
462         p=n;
463 #endif
464 #ifdef GENCB_TEST
465         if(stop_keygen_flag)
466                 return 0;
467 #endif
468         return 1;
469         }
470 #endif