b3144097625aadce2efff1085efde42fd25347be
[openssl.git] / apps / dsaparam.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57
58 #include <openssl/opensslconf.h> /* for OPENSSL_NO_DSA */
59
60 #ifndef OPENSSL_NO_DSA
61 # include <assert.h>
62 # include <stdio.h>
63 # include <stdlib.h>
64 # include <time.h>
65 # include <string.h>
66 # include "apps.h"
67 # include <openssl/bio.h>
68 # include <openssl/err.h>
69 # include <openssl/bn.h>
70 # include <openssl/dsa.h>
71 # include <openssl/x509.h>
72 # include <openssl/pem.h>
73
74 # ifdef GENCB_TEST
75
76 static int stop_keygen_flag = 0;
77
78 static void timebomb_sigalarm(int foo)
79 {
80     stop_keygen_flag = 1;
81 }
82
83 # endif
84
85 static int dsa_cb(int p, int n, BN_GENCB *cb);
86
87 typedef enum OPTION_choice {
88     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
89     OPT_INFORM, OPT_OUTFORM, OPT_IN, OPT_OUT, OPT_TEXT, OPT_C,
90     OPT_NOOUT, OPT_GENKEY, OPT_RAND, OPT_NON_FIPS_ALLOW, OPT_ENGINE,
91     OPT_TIMEBOMB
92 } OPTION_CHOICE;
93
94 OPTIONS dsaparam_options[] = {
95     {"help", OPT_HELP, '-', "Display this summary"},
96     {"inform", OPT_INFORM, 'F', "Input format - DER or PEM"},
97     {"in", OPT_IN, '<', "Input file"},
98     {"outform", OPT_OUTFORM, 'F', "Output format - DER or PEM"},
99     {"out", OPT_OUT, '>', "Output file"},
100     {"text", OPT_TEXT, '-', "Print as text"},
101     {"C", OPT_C, '-', "Output C code"},
102     {"noout", OPT_NOOUT, '-', "No output"},
103     {"genkey", OPT_GENKEY, '-', "Generate a DSA key"},
104     {"rand", OPT_RAND, 's', "Files to use for random number input"},
105     {"non-fips-allow", OPT_NON_FIPS_ALLOW, '-'},
106 # ifndef OPENSSL_NO_ENGINE
107     {"engine", OPT_ENGINE, 's', "Use engine e, possibly a hardware device"},
108 # endif
109 # ifdef GENCB_TEST
110     {"timebomb", OPT_TIMEBOMB, 'p', "Interrupt keygen after 'pnum' seconds"},
111 # endif
112     {NULL}
113 };
114
115 int dsaparam_main(int argc, char **argv)
116 {
117     DSA *dsa = NULL;
118     BIO *in = NULL, *out = NULL;
119     BN_GENCB *cb = NULL;
120     int numbits = -1, num, genkey = 0, need_rand = 0, non_fips_allow = 0;
121     int informat = FORMAT_PEM, outformat = FORMAT_PEM, noout = 0, C = 0, ret =
122         1;
123     int i, text = 0;
124 # ifdef GENCB_TEST
125     int timebomb = 0;
126 # endif
127     char *infile = NULL, *outfile = NULL, *prog, *inrand = NULL, *engine =
128         NULL;
129     OPTION_CHOICE o;
130
131     prog = opt_init(argc, argv, dsaparam_options);
132     while ((o = opt_next()) != OPT_EOF) {
133         switch (o) {
134         case OPT_EOF:
135         case OPT_ERR:
136  opthelp:
137             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
138             goto end;
139         case OPT_HELP:
140             opt_help(dsaparam_options);
141             ret = 0;
142             goto end;
143         case OPT_INFORM:
144             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &informat))
145                 goto opthelp;
146             break;
147         case OPT_IN:
148             infile = opt_arg();
149             break;
150         case OPT_OUTFORM:
151             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &outformat))
152                 goto opthelp;
153             break;
154         case OPT_OUT:
155             outfile = opt_arg();
156             break;
157         case OPT_ENGINE:
158             engine = opt_arg();
159             break;
160         case OPT_TIMEBOMB:
161 # ifdef GENCB_TEST
162             timebomb = atoi(opt_arg());
163             break;
164 # endif
165         case OPT_TEXT:
166             text = 1;
167             break;
168         case OPT_C:
169             C = 1;
170             break;
171         case OPT_GENKEY:
172             genkey = need_rand = 1;
173             break;
174         case OPT_RAND:
175             inrand = opt_arg();
176             need_rand = 1;
177             break;
178         case OPT_NOOUT:
179             noout = 1;
180             break;
181         case OPT_NON_FIPS_ALLOW:
182             non_fips_allow = 1;
183             break;
184         }
185     }
186     argc = opt_num_rest();
187     argv = opt_rest();
188
189     if (argc == 1) {
190         if (!opt_int(argv[0], &num))
191             goto end;
192         /* generate a key */
193         numbits = num;
194         need_rand = 1;
195     }
196
197     in = bio_open_default(infile, "r");
198     if (in == NULL)
199         goto end;
200     out = bio_open_default(outfile, "w");
201     if (out == NULL)
202         goto end;
203
204 # ifndef OPENSSL_NO_ENGINE
205     setup_engine(engine, 0);
206 # endif
207
208     if (need_rand) {
209         app_RAND_load_file(NULL, (inrand != NULL));
210         if (inrand != NULL)
211             BIO_printf(bio_err, "%ld semi-random bytes loaded\n",
212                        app_RAND_load_files(inrand));
213     }
214
215     if (numbits > 0) {
216         cb = BN_GENCB_new();
217         if (!cb) {
218             BIO_printf(bio_err, "Error allocating BN_GENCB object\n");
219             goto end;
220         }
221         BN_GENCB_set(cb, dsa_cb, bio_err);
222         assert(need_rand);
223         dsa = DSA_new();
224         if (!dsa) {
225             BIO_printf(bio_err, "Error allocating DSA object\n");
226             goto end;
227         }
228         if (non_fips_allow)
229             dsa->flags |= DSA_FLAG_NON_FIPS_ALLOW;
230         BIO_printf(bio_err, "Generating DSA parameters, %d bit long prime\n",
231                    num);
232         BIO_printf(bio_err, "This could take some time\n");
233 # ifdef GENCB_TEST
234         if (timebomb > 0) {
235             struct sigaction act;
236             act.sa_handler = timebomb_sigalarm;
237             act.sa_flags = 0;
238             BIO_printf(bio_err,
239                        "(though I'll stop it if not done within %d secs)\n",
240                        timebomb);
241             if (sigaction(SIGALRM, &act, NULL) != 0) {
242                 BIO_printf(bio_err, "Error, couldn't set SIGALRM handler\n");
243                 goto end;
244             }
245             alarm(timebomb);
246         }
247 # endif
248         if (!DSA_generate_parameters_ex(dsa, num, NULL, 0, NULL, NULL, cb)) {
249 # ifdef GENCB_TEST
250             if (stop_keygen_flag) {
251                 BIO_printf(bio_err, "DSA key generation time-stopped\n");
252                 /* This is an asked-for behaviour! */
253                 ret = 0;
254                 goto end;
255             }
256 # endif
257             ERR_print_errors(bio_err);
258             BIO_printf(bio_err, "Error, DSA key generation failed\n");
259             goto end;
260         }
261     } else if (informat == FORMAT_ASN1)
262         dsa = d2i_DSAparams_bio(in, NULL);
263     else
264         dsa = PEM_read_bio_DSAparams(in, NULL, NULL, NULL);
265     if (dsa == NULL) {
266         BIO_printf(bio_err, "unable to load DSA parameters\n");
267         ERR_print_errors(bio_err);
268         goto end;
269     }
270
271     if (text) {
272         DSAparams_print(out, dsa);
273     }
274
275     if (C) {
276         unsigned char *data;
277         int len, bits_p;
278
279         len = BN_num_bytes(dsa->p);
280         bits_p = BN_num_bits(dsa->p);
281         data = (unsigned char *)OPENSSL_malloc(len + 20);
282         if (data == NULL) {
283             perror("OPENSSL_malloc");
284             goto end;
285         }
286
287         BIO_printf(bio_out, "DSA *get_dsa%d()\n{\n", bits_p);
288         print_bignum_var(bio_out, dsa->p, "dsap", len, data);
289         print_bignum_var(bio_out, dsa->q, "dsaq", len, data);
290         print_bignum_var(bio_out, dsa->g, "dsag", len, data);
291         BIO_printf(bio_out, "    DSA *dsa = DSA_new();\n"
292                             "\n");
293         BIO_printf(bio_out, "    if (dsa == NULL)\n"
294                             "        return NULL;\n");
295         BIO_printf(bio_out, "    dsa->p = BN_bin2bn(dsap_%d, sizeof (dsap_%d), NULL);\n",
296                bits_p, bits_p);
297         BIO_printf(bio_out, "    dsa->q = BN_bin2bn(dsaq_%d, sizeof (dsaq_%d), NULL);\n",
298                bits_p, bits_p);
299         BIO_printf(bio_out, "    dsa->g = BN_bin2bn(dsag_%d, sizeof (dsag_%d), NULL);\n",
300                bits_p, bits_p);
301         BIO_printf(bio_out, "    if (!dsa->p || !dsa->q || !dsa->g) {\n"
302                             "        DSA_free(dsa);\n"
303                             "        return NULL;\n"
304                             "    }\n"
305                             "    return(dsa);\n}\n");
306     }
307
308     if (!noout) {
309         if (outformat == FORMAT_ASN1)
310             i = i2d_DSAparams_bio(out, dsa);
311         else
312             i = PEM_write_bio_DSAparams(out, dsa);
313         if (!i) {
314             BIO_printf(bio_err, "unable to write DSA parameters\n");
315             ERR_print_errors(bio_err);
316             goto end;
317         }
318     }
319     if (genkey) {
320         DSA *dsakey;
321
322         assert(need_rand);
323         if ((dsakey = DSAparams_dup(dsa)) == NULL)
324             goto end;
325         if (non_fips_allow)
326             dsakey->flags |= DSA_FLAG_NON_FIPS_ALLOW;
327         if (!DSA_generate_key(dsakey)) {
328             ERR_print_errors(bio_err);
329             DSA_free(dsakey);
330             goto end;
331         }
332         if (outformat == FORMAT_ASN1)
333             i = i2d_DSAPrivateKey_bio(out, dsakey);
334         else
335             i = PEM_write_bio_DSAPrivateKey(out, dsakey, NULL, NULL, 0, NULL,
336                                             NULL);
337         DSA_free(dsakey);
338     }
339     if (need_rand)
340         app_RAND_write_file(NULL);
341     ret = 0;
342  end:
343     if (cb != NULL)
344         BN_GENCB_free(cb);
345     BIO_free(in);
346     BIO_free_all(out);
347     DSA_free(dsa);
348     return (ret);
349 }
350
351 static int dsa_cb(int p, int n, BN_GENCB *cb)
352 {
353     char c = '*';
354
355     if (p == 0)
356         c = '.';
357     if (p == 1)
358         c = '+';
359     if (p == 2)
360         c = '*';
361     if (p == 3)
362         c = '\n';
363     BIO_write(BN_GENCB_get_arg(cb), &c, 1);
364     (void)BIO_flush(BN_GENCB_get_arg(cb));
365 # ifdef GENCB_TEST
366     if (stop_keygen_flag)
367         return 0;
368 # endif
369     return 1;
370 }
371 #else                           /* !OPENSSL_NO_DSA */
372
373 # if PEDANTIC
374 static void *dummy = &dummy;
375 # endif
376
377 #endif