dhparam.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  1. /*
  2. * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #include <openssl/opensslconf.h>
  10. #include <stdio.h>
  11. #include <stdlib.h>
  12. #include <time.h>
  13. #include <string.h>
  14. #include "apps.h"
  15. #include "progs.h"
  16. #include <openssl/bio.h>
  17. #include <openssl/err.h>
  18. #include <openssl/bn.h>
  19. #include <openssl/dsa.h>
  20. #include <openssl/dh.h>
  21. #include <openssl/x509.h>
  22. #include <openssl/pem.h>
  23. #include <openssl/core_names.h>
  24. #include <openssl/core_dispatch.h>
  25. #include <openssl/param_build.h>
  26. #include <openssl/encoder.h>
  27. #include <openssl/decoder.h>
  28. #define DEFBITS 2048
  29. static EVP_PKEY *dsa_to_dh(EVP_PKEY *dh);
  30. static int verbose = 1;
  31. typedef enum OPTION_choice {
  32. OPT_COMMON,
  33. OPT_INFORM, OPT_OUTFORM, OPT_IN, OPT_OUT,
  34. OPT_ENGINE, OPT_CHECK, OPT_TEXT, OPT_NOOUT,
  35. OPT_DSAPARAM, OPT_2, OPT_3, OPT_5, OPT_VERBOSE, OPT_QUIET,
  36. OPT_R_ENUM, OPT_PROV_ENUM
  37. } OPTION_CHOICE;
  38. const OPTIONS dhparam_options[] = {
  39. {OPT_HELP_STR, 1, '-', "Usage: %s [options] [numbits]\n"},
  40. OPT_SECTION("General"),
  41. {"help", OPT_HELP, '-', "Display this summary"},
  42. {"check", OPT_CHECK, '-', "Check the DH parameters"},
  43. #if !defined(OPENSSL_NO_DSA) || !defined(OPENSSL_NO_DEPRECATED_3_0)
  44. {"dsaparam", OPT_DSAPARAM, '-',
  45. "Read or generate DSA parameters, convert to DH"},
  46. #endif
  47. #ifndef OPENSSL_NO_ENGINE
  48. {"engine", OPT_ENGINE, 's', "Use engine e, possibly a hardware device"},
  49. #endif
  50. OPT_SECTION("Input"),
  51. {"in", OPT_IN, '<', "Input file"},
  52. {"inform", OPT_INFORM, 'F', "Input format, DER or PEM"},
  53. OPT_SECTION("Output"),
  54. {"out", OPT_OUT, '>', "Output file"},
  55. {"outform", OPT_OUTFORM, 'F', "Output format, DER or PEM"},
  56. {"text", OPT_TEXT, '-', "Print a text form of the DH parameters"},
  57. {"noout", OPT_NOOUT, '-', "Don't output any DH parameters"},
  58. {"2", OPT_2, '-', "Generate parameters using 2 as the generator value"},
  59. {"3", OPT_3, '-', "Generate parameters using 3 as the generator value"},
  60. {"5", OPT_5, '-', "Generate parameters using 5 as the generator value"},
  61. {"verbose", OPT_VERBOSE, '-', "Verbose output"},
  62. {"quiet", OPT_QUIET, '-', "Terse output"},
  63. OPT_R_OPTIONS,
  64. OPT_PROV_OPTIONS,
  65. OPT_PARAMETERS(),
  66. {"numbits", 0, 0, "Number of bits if generating parameters (optional)"},
  67. {NULL}
  68. };
  69. int dhparam_main(int argc, char **argv)
  70. {
  71. BIO *in = NULL, *out = NULL;
  72. EVP_PKEY *pkey = NULL, *tmppkey = NULL;
  73. EVP_PKEY_CTX *ctx = NULL;
  74. char *infile = NULL, *outfile = NULL, *prog;
  75. ENGINE *e = NULL;
  76. int dsaparam = 0;
  77. int text = 0, ret = 1, num = 0, g = 0;
  78. int informat = FORMAT_PEM, outformat = FORMAT_PEM, check = 0, noout = 0;
  79. OPTION_CHOICE o;
  80. prog = opt_init(argc, argv, dhparam_options);
  81. while ((o = opt_next()) != OPT_EOF) {
  82. switch (o) {
  83. case OPT_EOF:
  84. case OPT_ERR:
  85. opthelp:
  86. BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
  87. goto end;
  88. case OPT_HELP:
  89. opt_help(dhparam_options);
  90. ret = 0;
  91. goto end;
  92. case OPT_INFORM:
  93. if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &informat))
  94. goto opthelp;
  95. break;
  96. case OPT_OUTFORM:
  97. if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &outformat))
  98. goto opthelp;
  99. break;
  100. case OPT_IN:
  101. infile = opt_arg();
  102. break;
  103. case OPT_OUT:
  104. outfile = opt_arg();
  105. break;
  106. case OPT_ENGINE:
  107. e = setup_engine(opt_arg(), 0);
  108. break;
  109. case OPT_CHECK:
  110. check = 1;
  111. break;
  112. case OPT_TEXT:
  113. text = 1;
  114. break;
  115. case OPT_DSAPARAM:
  116. dsaparam = 1;
  117. break;
  118. case OPT_2:
  119. g = 2;
  120. break;
  121. case OPT_3:
  122. g = 3;
  123. break;
  124. case OPT_5:
  125. g = 5;
  126. break;
  127. case OPT_NOOUT:
  128. noout = 1;
  129. break;
  130. case OPT_VERBOSE:
  131. verbose = 1;
  132. break;
  133. case OPT_QUIET:
  134. verbose = 0;
  135. break;
  136. case OPT_R_CASES:
  137. if (!opt_rand(o))
  138. goto end;
  139. break;
  140. case OPT_PROV_CASES:
  141. if (!opt_provider(o))
  142. goto end;
  143. break;
  144. }
  145. }
  146. /* One optional argument, bitsize to generate. */
  147. argc = opt_num_rest();
  148. argv = opt_rest();
  149. if (argc == 1) {
  150. if (!opt_int(argv[0], &num) || num <= 0)
  151. goto opthelp;
  152. } else if (!opt_check_rest_arg(NULL)) {
  153. goto opthelp;
  154. }
  155. if (!app_RAND_load())
  156. goto end;
  157. if (g && !num)
  158. num = DEFBITS;
  159. if (dsaparam && g) {
  160. BIO_printf(bio_err,
  161. "Error, generator may not be chosen for DSA parameters\n");
  162. goto end;
  163. }
  164. out = bio_open_default(outfile, 'w', outformat);
  165. if (out == NULL)
  166. goto end;
  167. /* DH parameters */
  168. if (num && !g)
  169. g = 2;
  170. if (num) {
  171. const char *alg = dsaparam ? "DSA" : "DH";
  172. ctx = EVP_PKEY_CTX_new_from_name(NULL, alg, NULL);
  173. if (ctx == NULL) {
  174. BIO_printf(bio_err,
  175. "Error, %s param generation context allocation failed\n",
  176. alg);
  177. goto end;
  178. }
  179. EVP_PKEY_CTX_set_app_data(ctx, bio_err);
  180. if (verbose) {
  181. EVP_PKEY_CTX_set_cb(ctx, progress_cb);
  182. BIO_printf(bio_err,
  183. "Generating %s parameters, %d bit long %sprime\n",
  184. alg, num, dsaparam ? "" : "safe ");
  185. }
  186. if (EVP_PKEY_paramgen_init(ctx) <= 0) {
  187. BIO_printf(bio_err,
  188. "Error, unable to initialise %s parameters\n",
  189. alg);
  190. goto end;
  191. }
  192. if (dsaparam) {
  193. if (!EVP_PKEY_CTX_set_dsa_paramgen_bits(ctx, num)) {
  194. BIO_printf(bio_err, "Error, unable to set DSA prime length\n");
  195. goto end;
  196. }
  197. } else {
  198. if (!EVP_PKEY_CTX_set_dh_paramgen_prime_len(ctx, num)) {
  199. BIO_printf(bio_err, "Error, unable to set DH prime length\n");
  200. goto end;
  201. }
  202. if (!EVP_PKEY_CTX_set_dh_paramgen_generator(ctx, g)) {
  203. BIO_printf(bio_err, "Error, unable to set generator\n");
  204. goto end;
  205. }
  206. }
  207. tmppkey = app_paramgen(ctx, alg);
  208. EVP_PKEY_CTX_free(ctx);
  209. ctx = NULL;
  210. if (dsaparam) {
  211. pkey = dsa_to_dh(tmppkey);
  212. if (pkey == NULL)
  213. goto end;
  214. EVP_PKEY_free(tmppkey);
  215. } else {
  216. pkey = tmppkey;
  217. }
  218. tmppkey = NULL;
  219. } else {
  220. OSSL_DECODER_CTX *decoderctx = NULL;
  221. const char *keytype = "DH";
  222. int done;
  223. in = bio_open_default(infile, 'r', informat);
  224. if (in == NULL)
  225. goto end;
  226. do {
  227. /*
  228. * We assume we're done unless we explicitly want to retry and set
  229. * this to 0 below.
  230. */
  231. done = 1;
  232. /*
  233. * We set NULL for the keytype to allow any key type. We don't know
  234. * if we're going to get DH or DHX (or DSA in the event of dsaparam).
  235. * We check that we got one of those key types afterwards.
  236. */
  237. decoderctx
  238. = OSSL_DECODER_CTX_new_for_pkey(&tmppkey,
  239. (informat == FORMAT_ASN1)
  240. ? "DER" : "PEM",
  241. NULL,
  242. (informat == FORMAT_ASN1)
  243. ? keytype : NULL,
  244. OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
  245. NULL, NULL);
  246. if (decoderctx != NULL
  247. && !OSSL_DECODER_from_bio(decoderctx, in)
  248. && informat == FORMAT_ASN1
  249. && strcmp(keytype, "DH") == 0) {
  250. /*
  251. * When reading DER we explicitly state the expected keytype
  252. * because, unlike PEM, there is no header to declare what
  253. * the contents of the DER file are. The decoders just try
  254. * and guess. Unfortunately with DHX key types they may guess
  255. * wrong and think we have a DSA keytype. Therefore we try
  256. * both DH and DHX sequentially.
  257. */
  258. keytype = "DHX";
  259. /*
  260. * BIO_reset() returns 0 for success for file BIOs only!!!
  261. * This won't work for stdin (and never has done)
  262. */
  263. if (BIO_reset(in) == 0)
  264. done = 0;
  265. }
  266. OSSL_DECODER_CTX_free(decoderctx);
  267. } while (!done);
  268. if (tmppkey == NULL) {
  269. BIO_printf(bio_err, "Error, unable to load parameters\n");
  270. goto end;
  271. }
  272. if (dsaparam) {
  273. if (!EVP_PKEY_is_a(tmppkey, "DSA")) {
  274. BIO_printf(bio_err, "Error, unable to load DSA parameters\n");
  275. goto end;
  276. }
  277. pkey = dsa_to_dh(tmppkey);
  278. if (pkey == NULL)
  279. goto end;
  280. } else {
  281. if (!EVP_PKEY_is_a(tmppkey, "DH")
  282. && !EVP_PKEY_is_a(tmppkey, "DHX")) {
  283. BIO_printf(bio_err, "Error, unable to load DH parameters\n");
  284. goto end;
  285. }
  286. pkey = tmppkey;
  287. tmppkey = NULL;
  288. }
  289. }
  290. if (text)
  291. EVP_PKEY_print_params(out, pkey, 4, NULL);
  292. if (check) {
  293. ctx = EVP_PKEY_CTX_new_from_pkey(NULL, pkey, NULL);
  294. if (ctx == NULL) {
  295. BIO_printf(bio_err, "Error, failed to check DH parameters\n");
  296. goto end;
  297. }
  298. if (!EVP_PKEY_param_check(ctx)) {
  299. BIO_printf(bio_err, "Error, invalid parameters generated\n");
  300. goto end;
  301. }
  302. BIO_printf(bio_err, "DH parameters appear to be ok.\n");
  303. }
  304. if (!noout) {
  305. OSSL_ENCODER_CTX *ectx =
  306. OSSL_ENCODER_CTX_new_for_pkey(pkey,
  307. OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
  308. outformat == FORMAT_ASN1
  309. ? "DER" : "PEM",
  310. NULL, NULL);
  311. if (ectx == NULL || !OSSL_ENCODER_to_bio(ectx, out)) {
  312. OSSL_ENCODER_CTX_free(ectx);
  313. BIO_printf(bio_err, "Error, unable to write DH parameters\n");
  314. goto end;
  315. }
  316. OSSL_ENCODER_CTX_free(ectx);
  317. }
  318. ret = 0;
  319. end:
  320. if (ret != 0)
  321. ERR_print_errors(bio_err);
  322. BIO_free(in);
  323. BIO_free_all(out);
  324. EVP_PKEY_free(pkey);
  325. EVP_PKEY_free(tmppkey);
  326. EVP_PKEY_CTX_free(ctx);
  327. release_engine(e);
  328. return ret;
  329. }
  330. /*
  331. * Historically we had the low level call DSA_dup_DH() to do this.
  332. * That is now deprecated with no replacement. Since we still need to do this
  333. * for backwards compatibility reasons, we do it "manually".
  334. */
  335. static EVP_PKEY *dsa_to_dh(EVP_PKEY *dh)
  336. {
  337. OSSL_PARAM_BLD *tmpl = NULL;
  338. OSSL_PARAM *params = NULL;
  339. BIGNUM *bn_p = NULL, *bn_q = NULL, *bn_g = NULL;
  340. EVP_PKEY_CTX *ctx = NULL;
  341. EVP_PKEY *pkey = NULL;
  342. if (!EVP_PKEY_get_bn_param(dh, OSSL_PKEY_PARAM_FFC_P, &bn_p)
  343. || !EVP_PKEY_get_bn_param(dh, OSSL_PKEY_PARAM_FFC_Q, &bn_q)
  344. || !EVP_PKEY_get_bn_param(dh, OSSL_PKEY_PARAM_FFC_G, &bn_g)) {
  345. BIO_printf(bio_err, "Error, failed to set DH parameters\n");
  346. goto err;
  347. }
  348. if ((tmpl = OSSL_PARAM_BLD_new()) == NULL
  349. || !OSSL_PARAM_BLD_push_BN(tmpl, OSSL_PKEY_PARAM_FFC_P,
  350. bn_p)
  351. || !OSSL_PARAM_BLD_push_BN(tmpl, OSSL_PKEY_PARAM_FFC_Q,
  352. bn_q)
  353. || !OSSL_PARAM_BLD_push_BN(tmpl, OSSL_PKEY_PARAM_FFC_G,
  354. bn_g)
  355. || (params = OSSL_PARAM_BLD_to_param(tmpl)) == NULL) {
  356. BIO_printf(bio_err, "Error, failed to set DH parameters\n");
  357. goto err;
  358. }
  359. ctx = EVP_PKEY_CTX_new_from_name(NULL, "DHX", NULL);
  360. if (ctx == NULL
  361. || EVP_PKEY_fromdata_init(ctx) <= 0
  362. || EVP_PKEY_fromdata(ctx, &pkey, EVP_PKEY_KEY_PARAMETERS, params) <= 0) {
  363. BIO_printf(bio_err, "Error, failed to set DH parameters\n");
  364. goto err;
  365. }
  366. err:
  367. EVP_PKEY_CTX_free(ctx);
  368. OSSL_PARAM_free(params);
  369. OSSL_PARAM_BLD_free(tmpl);
  370. BN_free(bn_p);
  371. BN_free(bn_q);
  372. BN_free(bn_g);
  373. return pkey;
  374. }