ec_mult.c 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974
  1. /*
  2. * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
  3. * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
  4. *
  5. * Licensed under the Apache License 2.0 (the "License"). You may not use
  6. * this file except in compliance with the License. You can obtain a copy
  7. * in the file LICENSE in the source distribution or at
  8. * https://www.openssl.org/source/license.html
  9. */
  10. #include <string.h>
  11. #include <openssl/err.h>
  12. #include "internal/cryptlib.h"
  13. #include "crypto/bn.h"
  14. #include "ec_local.h"
  15. #include "internal/refcount.h"
  16. /*
  17. * This file implements the wNAF-based interleaving multi-exponentiation method
  18. * Formerly at:
  19. * http://www.informatik.tu-darmstadt.de/TI/Mitarbeiter/moeller.html#multiexp
  20. * You might now find it here:
  21. * http://link.springer.com/chapter/10.1007%2F3-540-45537-X_13
  22. * http://www.bmoeller.de/pdf/TI-01-08.multiexp.pdf
  23. * For multiplication with precomputation, we use wNAF splitting, formerly at:
  24. * http://www.informatik.tu-darmstadt.de/TI/Mitarbeiter/moeller.html#fastexp
  25. */
  26. /* structure for precomputed multiples of the generator */
  27. struct ec_pre_comp_st {
  28. const EC_GROUP *group; /* parent EC_GROUP object */
  29. size_t blocksize; /* block size for wNAF splitting */
  30. size_t numblocks; /* max. number of blocks for which we have
  31. * precomputation */
  32. size_t w; /* window size */
  33. EC_POINT **points; /* array with pre-calculated multiples of
  34. * generator: 'num' pointers to EC_POINT
  35. * objects followed by a NULL */
  36. size_t num; /* numblocks * 2^(w-1) */
  37. CRYPTO_REF_COUNT references;
  38. CRYPTO_RWLOCK *lock;
  39. };
  40. static EC_PRE_COMP *ec_pre_comp_new(const EC_GROUP *group)
  41. {
  42. EC_PRE_COMP *ret = NULL;
  43. if (!group)
  44. return NULL;
  45. ret = OPENSSL_zalloc(sizeof(*ret));
  46. if (ret == NULL) {
  47. ECerr(EC_F_EC_PRE_COMP_NEW, ERR_R_MALLOC_FAILURE);
  48. return ret;
  49. }
  50. ret->group = group;
  51. ret->blocksize = 8; /* default */
  52. ret->w = 4; /* default */
  53. ret->references = 1;
  54. ret->lock = CRYPTO_THREAD_lock_new();
  55. if (ret->lock == NULL) {
  56. ECerr(EC_F_EC_PRE_COMP_NEW, ERR_R_MALLOC_FAILURE);
  57. OPENSSL_free(ret);
  58. return NULL;
  59. }
  60. return ret;
  61. }
  62. EC_PRE_COMP *EC_ec_pre_comp_dup(EC_PRE_COMP *pre)
  63. {
  64. int i;
  65. if (pre != NULL)
  66. CRYPTO_UP_REF(&pre->references, &i, pre->lock);
  67. return pre;
  68. }
  69. void EC_ec_pre_comp_free(EC_PRE_COMP *pre)
  70. {
  71. int i;
  72. if (pre == NULL)
  73. return;
  74. CRYPTO_DOWN_REF(&pre->references, &i, pre->lock);
  75. REF_PRINT_COUNT("EC_ec", pre);
  76. if (i > 0)
  77. return;
  78. REF_ASSERT_ISNT(i < 0);
  79. if (pre->points != NULL) {
  80. EC_POINT **pts;
  81. for (pts = pre->points; *pts != NULL; pts++)
  82. EC_POINT_free(*pts);
  83. OPENSSL_free(pre->points);
  84. }
  85. CRYPTO_THREAD_lock_free(pre->lock);
  86. OPENSSL_free(pre);
  87. }
  88. #define EC_POINT_BN_set_flags(P, flags) do { \
  89. BN_set_flags((P)->X, (flags)); \
  90. BN_set_flags((P)->Y, (flags)); \
  91. BN_set_flags((P)->Z, (flags)); \
  92. } while(0)
  93. /*-
  94. * This functions computes a single point multiplication over the EC group,
  95. * using, at a high level, a Montgomery ladder with conditional swaps, with
  96. * various timing attack defenses.
  97. *
  98. * It performs either a fixed point multiplication
  99. * (scalar * generator)
  100. * when point is NULL, or a variable point multiplication
  101. * (scalar * point)
  102. * when point is not NULL.
  103. *
  104. * `scalar` cannot be NULL and should be in the range [0,n) otherwise all
  105. * constant time bets are off (where n is the cardinality of the EC group).
  106. *
  107. * This function expects `group->order` and `group->cardinality` to be well
  108. * defined and non-zero: it fails with an error code otherwise.
  109. *
  110. * NB: This says nothing about the constant-timeness of the ladder step
  111. * implementation (i.e., the default implementation is based on EC_POINT_add and
  112. * EC_POINT_dbl, which of course are not constant time themselves) or the
  113. * underlying multiprecision arithmetic.
  114. *
  115. * The product is stored in `r`.
  116. *
  117. * This is an internal function: callers are in charge of ensuring that the
  118. * input parameters `group`, `r`, `scalar` and `ctx` are not NULL.
  119. *
  120. * Returns 1 on success, 0 otherwise.
  121. */
  122. int ec_scalar_mul_ladder(const EC_GROUP *group, EC_POINT *r,
  123. const BIGNUM *scalar, const EC_POINT *point,
  124. BN_CTX *ctx)
  125. {
  126. int i, cardinality_bits, group_top, kbit, pbit, Z_is_one;
  127. EC_POINT *p = NULL;
  128. EC_POINT *s = NULL;
  129. BIGNUM *k = NULL;
  130. BIGNUM *lambda = NULL;
  131. BIGNUM *cardinality = NULL;
  132. int ret = 0;
  133. /* early exit if the input point is the point at infinity */
  134. if (point != NULL && EC_POINT_is_at_infinity(group, point))
  135. return EC_POINT_set_to_infinity(group, r);
  136. if (BN_is_zero(group->order)) {
  137. ECerr(EC_F_EC_SCALAR_MUL_LADDER, EC_R_UNKNOWN_ORDER);
  138. return 0;
  139. }
  140. if (BN_is_zero(group->cofactor)) {
  141. ECerr(EC_F_EC_SCALAR_MUL_LADDER, EC_R_UNKNOWN_COFACTOR);
  142. return 0;
  143. }
  144. BN_CTX_start(ctx);
  145. if (((p = EC_POINT_new(group)) == NULL)
  146. || ((s = EC_POINT_new(group)) == NULL)) {
  147. ECerr(EC_F_EC_SCALAR_MUL_LADDER, ERR_R_MALLOC_FAILURE);
  148. goto err;
  149. }
  150. if (point == NULL) {
  151. if (!EC_POINT_copy(p, group->generator)) {
  152. ECerr(EC_F_EC_SCALAR_MUL_LADDER, ERR_R_EC_LIB);
  153. goto err;
  154. }
  155. } else {
  156. if (!EC_POINT_copy(p, point)) {
  157. ECerr(EC_F_EC_SCALAR_MUL_LADDER, ERR_R_EC_LIB);
  158. goto err;
  159. }
  160. }
  161. EC_POINT_BN_set_flags(p, BN_FLG_CONSTTIME);
  162. EC_POINT_BN_set_flags(r, BN_FLG_CONSTTIME);
  163. EC_POINT_BN_set_flags(s, BN_FLG_CONSTTIME);
  164. cardinality = BN_CTX_get(ctx);
  165. lambda = BN_CTX_get(ctx);
  166. k = BN_CTX_get(ctx);
  167. if (k == NULL) {
  168. ECerr(EC_F_EC_SCALAR_MUL_LADDER, ERR_R_MALLOC_FAILURE);
  169. goto err;
  170. }
  171. if (!BN_mul(cardinality, group->order, group->cofactor, ctx)) {
  172. ECerr(EC_F_EC_SCALAR_MUL_LADDER, ERR_R_BN_LIB);
  173. goto err;
  174. }
  175. /*
  176. * Group cardinalities are often on a word boundary.
  177. * So when we pad the scalar, some timing diff might
  178. * pop if it needs to be expanded due to carries.
  179. * So expand ahead of time.
  180. */
  181. cardinality_bits = BN_num_bits(cardinality);
  182. group_top = bn_get_top(cardinality);
  183. if ((bn_wexpand(k, group_top + 2) == NULL)
  184. || (bn_wexpand(lambda, group_top + 2) == NULL)) {
  185. ECerr(EC_F_EC_SCALAR_MUL_LADDER, ERR_R_BN_LIB);
  186. goto err;
  187. }
  188. if (!BN_copy(k, scalar)) {
  189. ECerr(EC_F_EC_SCALAR_MUL_LADDER, ERR_R_BN_LIB);
  190. goto err;
  191. }
  192. BN_set_flags(k, BN_FLG_CONSTTIME);
  193. if ((BN_num_bits(k) > cardinality_bits) || (BN_is_negative(k))) {
  194. /*-
  195. * this is an unusual input, and we don't guarantee
  196. * constant-timeness
  197. */
  198. if (!BN_nnmod(k, k, cardinality, ctx)) {
  199. ECerr(EC_F_EC_SCALAR_MUL_LADDER, ERR_R_BN_LIB);
  200. goto err;
  201. }
  202. }
  203. if (!BN_add(lambda, k, cardinality)) {
  204. ECerr(EC_F_EC_SCALAR_MUL_LADDER, ERR_R_BN_LIB);
  205. goto err;
  206. }
  207. BN_set_flags(lambda, BN_FLG_CONSTTIME);
  208. if (!BN_add(k, lambda, cardinality)) {
  209. ECerr(EC_F_EC_SCALAR_MUL_LADDER, ERR_R_BN_LIB);
  210. goto err;
  211. }
  212. /*
  213. * lambda := scalar + cardinality
  214. * k := scalar + 2*cardinality
  215. */
  216. kbit = BN_is_bit_set(lambda, cardinality_bits);
  217. BN_consttime_swap(kbit, k, lambda, group_top + 2);
  218. group_top = bn_get_top(group->field);
  219. if ((bn_wexpand(s->X, group_top) == NULL)
  220. || (bn_wexpand(s->Y, group_top) == NULL)
  221. || (bn_wexpand(s->Z, group_top) == NULL)
  222. || (bn_wexpand(r->X, group_top) == NULL)
  223. || (bn_wexpand(r->Y, group_top) == NULL)
  224. || (bn_wexpand(r->Z, group_top) == NULL)
  225. || (bn_wexpand(p->X, group_top) == NULL)
  226. || (bn_wexpand(p->Y, group_top) == NULL)
  227. || (bn_wexpand(p->Z, group_top) == NULL)) {
  228. ECerr(EC_F_EC_SCALAR_MUL_LADDER, ERR_R_BN_LIB);
  229. goto err;
  230. }
  231. /*-
  232. * Apply coordinate blinding for EC_POINT.
  233. *
  234. * The underlying EC_METHOD can optionally implement this function:
  235. * ec_point_blind_coordinates() returns 0 in case of errors or 1 on
  236. * success or if coordinate blinding is not implemented for this
  237. * group.
  238. */
  239. if (!ec_point_blind_coordinates(group, p, ctx)) {
  240. ECerr(EC_F_EC_SCALAR_MUL_LADDER, EC_R_POINT_COORDINATES_BLIND_FAILURE);
  241. goto err;
  242. }
  243. /* Initialize the Montgomery ladder */
  244. if (!ec_point_ladder_pre(group, r, s, p, ctx)) {
  245. ECerr(EC_F_EC_SCALAR_MUL_LADDER, EC_R_LADDER_PRE_FAILURE);
  246. goto err;
  247. }
  248. /* top bit is a 1, in a fixed pos */
  249. pbit = 1;
  250. #define EC_POINT_CSWAP(c, a, b, w, t) do { \
  251. BN_consttime_swap(c, (a)->X, (b)->X, w); \
  252. BN_consttime_swap(c, (a)->Y, (b)->Y, w); \
  253. BN_consttime_swap(c, (a)->Z, (b)->Z, w); \
  254. t = ((a)->Z_is_one ^ (b)->Z_is_one) & (c); \
  255. (a)->Z_is_one ^= (t); \
  256. (b)->Z_is_one ^= (t); \
  257. } while(0)
  258. /*-
  259. * The ladder step, with branches, is
  260. *
  261. * k[i] == 0: S = add(R, S), R = dbl(R)
  262. * k[i] == 1: R = add(S, R), S = dbl(S)
  263. *
  264. * Swapping R, S conditionally on k[i] leaves you with state
  265. *
  266. * k[i] == 0: T, U = R, S
  267. * k[i] == 1: T, U = S, R
  268. *
  269. * Then perform the ECC ops.
  270. *
  271. * U = add(T, U)
  272. * T = dbl(T)
  273. *
  274. * Which leaves you with state
  275. *
  276. * k[i] == 0: U = add(R, S), T = dbl(R)
  277. * k[i] == 1: U = add(S, R), T = dbl(S)
  278. *
  279. * Swapping T, U conditionally on k[i] leaves you with state
  280. *
  281. * k[i] == 0: R, S = T, U
  282. * k[i] == 1: R, S = U, T
  283. *
  284. * Which leaves you with state
  285. *
  286. * k[i] == 0: S = add(R, S), R = dbl(R)
  287. * k[i] == 1: R = add(S, R), S = dbl(S)
  288. *
  289. * So we get the same logic, but instead of a branch it's a
  290. * conditional swap, followed by ECC ops, then another conditional swap.
  291. *
  292. * Optimization: The end of iteration i and start of i-1 looks like
  293. *
  294. * ...
  295. * CSWAP(k[i], R, S)
  296. * ECC
  297. * CSWAP(k[i], R, S)
  298. * (next iteration)
  299. * CSWAP(k[i-1], R, S)
  300. * ECC
  301. * CSWAP(k[i-1], R, S)
  302. * ...
  303. *
  304. * So instead of two contiguous swaps, you can merge the condition
  305. * bits and do a single swap.
  306. *
  307. * k[i] k[i-1] Outcome
  308. * 0 0 No Swap
  309. * 0 1 Swap
  310. * 1 0 Swap
  311. * 1 1 No Swap
  312. *
  313. * This is XOR. pbit tracks the previous bit of k.
  314. */
  315. for (i = cardinality_bits - 1; i >= 0; i--) {
  316. kbit = BN_is_bit_set(k, i) ^ pbit;
  317. EC_POINT_CSWAP(kbit, r, s, group_top, Z_is_one);
  318. /* Perform a single step of the Montgomery ladder */
  319. if (!ec_point_ladder_step(group, r, s, p, ctx)) {
  320. ECerr(EC_F_EC_SCALAR_MUL_LADDER, EC_R_LADDER_STEP_FAILURE);
  321. goto err;
  322. }
  323. /*
  324. * pbit logic merges this cswap with that of the
  325. * next iteration
  326. */
  327. pbit ^= kbit;
  328. }
  329. /* one final cswap to move the right value into r */
  330. EC_POINT_CSWAP(pbit, r, s, group_top, Z_is_one);
  331. #undef EC_POINT_CSWAP
  332. /* Finalize ladder (and recover full point coordinates) */
  333. if (!ec_point_ladder_post(group, r, s, p, ctx)) {
  334. ECerr(EC_F_EC_SCALAR_MUL_LADDER, EC_R_LADDER_POST_FAILURE);
  335. goto err;
  336. }
  337. ret = 1;
  338. err:
  339. EC_POINT_free(p);
  340. EC_POINT_clear_free(s);
  341. BN_CTX_end(ctx);
  342. return ret;
  343. }
  344. #undef EC_POINT_BN_set_flags
  345. /*
  346. * TODO: table should be optimised for the wNAF-based implementation,
  347. * sometimes smaller windows will give better performance (thus the
  348. * boundaries should be increased)
  349. */
  350. #define EC_window_bits_for_scalar_size(b) \
  351. ((size_t) \
  352. ((b) >= 2000 ? 6 : \
  353. (b) >= 800 ? 5 : \
  354. (b) >= 300 ? 4 : \
  355. (b) >= 70 ? 3 : \
  356. (b) >= 20 ? 2 : \
  357. 1))
  358. /*-
  359. * Compute
  360. * \sum scalars[i]*points[i],
  361. * also including
  362. * scalar*generator
  363. * in the addition if scalar != NULL
  364. */
  365. int ec_wNAF_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
  366. size_t num, const EC_POINT *points[], const BIGNUM *scalars[],
  367. BN_CTX *ctx)
  368. {
  369. const EC_POINT *generator = NULL;
  370. EC_POINT *tmp = NULL;
  371. size_t totalnum;
  372. size_t blocksize = 0, numblocks = 0; /* for wNAF splitting */
  373. size_t pre_points_per_block = 0;
  374. size_t i, j;
  375. int k;
  376. int r_is_inverted = 0;
  377. int r_is_at_infinity = 1;
  378. size_t *wsize = NULL; /* individual window sizes */
  379. signed char **wNAF = NULL; /* individual wNAFs */
  380. size_t *wNAF_len = NULL;
  381. size_t max_len = 0;
  382. size_t num_val;
  383. EC_POINT **val = NULL; /* precomputation */
  384. EC_POINT **v;
  385. EC_POINT ***val_sub = NULL; /* pointers to sub-arrays of 'val' or
  386. * 'pre_comp->points' */
  387. const EC_PRE_COMP *pre_comp = NULL;
  388. int num_scalar = 0; /* flag: will be set to 1 if 'scalar' must be
  389. * treated like other scalars, i.e.
  390. * precomputation is not available */
  391. int ret = 0;
  392. if (!BN_is_zero(group->order) && !BN_is_zero(group->cofactor)) {
  393. /*-
  394. * Handle the common cases where the scalar is secret, enforcing a
  395. * scalar multiplication implementation based on a Montgomery ladder,
  396. * with various timing attack defenses.
  397. */
  398. if ((scalar != group->order) && (scalar != NULL) && (num == 0)) {
  399. /*-
  400. * In this case we want to compute scalar * GeneratorPoint: this
  401. * codepath is reached most prominently by (ephemeral) key
  402. * generation of EC cryptosystems (i.e. ECDSA keygen and sign setup,
  403. * ECDH keygen/first half), where the scalar is always secret. This
  404. * is why we ignore if BN_FLG_CONSTTIME is actually set and we
  405. * always call the ladder version.
  406. */
  407. return ec_scalar_mul_ladder(group, r, scalar, NULL, ctx);
  408. }
  409. if ((scalar == NULL) && (num == 1) && (scalars[0] != group->order)) {
  410. /*-
  411. * In this case we want to compute scalar * VariablePoint: this
  412. * codepath is reached most prominently by the second half of ECDH,
  413. * where the secret scalar is multiplied by the peer's public point.
  414. * To protect the secret scalar, we ignore if BN_FLG_CONSTTIME is
  415. * actually set and we always call the ladder version.
  416. */
  417. return ec_scalar_mul_ladder(group, r, scalars[0], points[0], ctx);
  418. }
  419. }
  420. if (scalar != NULL) {
  421. generator = EC_GROUP_get0_generator(group);
  422. if (generator == NULL) {
  423. ECerr(EC_F_EC_WNAF_MUL, EC_R_UNDEFINED_GENERATOR);
  424. goto err;
  425. }
  426. /* look if we can use precomputed multiples of generator */
  427. pre_comp = group->pre_comp.ec;
  428. if (pre_comp && pre_comp->numblocks
  429. && (EC_POINT_cmp(group, generator, pre_comp->points[0], ctx) ==
  430. 0)) {
  431. blocksize = pre_comp->blocksize;
  432. /*
  433. * determine maximum number of blocks that wNAF splitting may
  434. * yield (NB: maximum wNAF length is bit length plus one)
  435. */
  436. numblocks = (BN_num_bits(scalar) / blocksize) + 1;
  437. /*
  438. * we cannot use more blocks than we have precomputation for
  439. */
  440. if (numblocks > pre_comp->numblocks)
  441. numblocks = pre_comp->numblocks;
  442. pre_points_per_block = (size_t)1 << (pre_comp->w - 1);
  443. /* check that pre_comp looks sane */
  444. if (pre_comp->num != (pre_comp->numblocks * pre_points_per_block)) {
  445. ECerr(EC_F_EC_WNAF_MUL, ERR_R_INTERNAL_ERROR);
  446. goto err;
  447. }
  448. } else {
  449. /* can't use precomputation */
  450. pre_comp = NULL;
  451. numblocks = 1;
  452. num_scalar = 1; /* treat 'scalar' like 'num'-th element of
  453. * 'scalars' */
  454. }
  455. }
  456. totalnum = num + numblocks;
  457. wsize = OPENSSL_malloc(totalnum * sizeof(wsize[0]));
  458. wNAF_len = OPENSSL_malloc(totalnum * sizeof(wNAF_len[0]));
  459. /* include space for pivot */
  460. wNAF = OPENSSL_malloc((totalnum + 1) * sizeof(wNAF[0]));
  461. val_sub = OPENSSL_malloc(totalnum * sizeof(val_sub[0]));
  462. /* Ensure wNAF is initialised in case we end up going to err */
  463. if (wNAF != NULL)
  464. wNAF[0] = NULL; /* preliminary pivot */
  465. if (wsize == NULL || wNAF_len == NULL || wNAF == NULL || val_sub == NULL) {
  466. ECerr(EC_F_EC_WNAF_MUL, ERR_R_MALLOC_FAILURE);
  467. goto err;
  468. }
  469. /*
  470. * num_val will be the total number of temporarily precomputed points
  471. */
  472. num_val = 0;
  473. for (i = 0; i < num + num_scalar; i++) {
  474. size_t bits;
  475. bits = i < num ? BN_num_bits(scalars[i]) : BN_num_bits(scalar);
  476. wsize[i] = EC_window_bits_for_scalar_size(bits);
  477. num_val += (size_t)1 << (wsize[i] - 1);
  478. wNAF[i + 1] = NULL; /* make sure we always have a pivot */
  479. wNAF[i] =
  480. bn_compute_wNAF((i < num ? scalars[i] : scalar), wsize[i],
  481. &wNAF_len[i]);
  482. if (wNAF[i] == NULL)
  483. goto err;
  484. if (wNAF_len[i] > max_len)
  485. max_len = wNAF_len[i];
  486. }
  487. if (numblocks) {
  488. /* we go here iff scalar != NULL */
  489. if (pre_comp == NULL) {
  490. if (num_scalar != 1) {
  491. ECerr(EC_F_EC_WNAF_MUL, ERR_R_INTERNAL_ERROR);
  492. goto err;
  493. }
  494. /* we have already generated a wNAF for 'scalar' */
  495. } else {
  496. signed char *tmp_wNAF = NULL;
  497. size_t tmp_len = 0;
  498. if (num_scalar != 0) {
  499. ECerr(EC_F_EC_WNAF_MUL, ERR_R_INTERNAL_ERROR);
  500. goto err;
  501. }
  502. /*
  503. * use the window size for which we have precomputation
  504. */
  505. wsize[num] = pre_comp->w;
  506. tmp_wNAF = bn_compute_wNAF(scalar, wsize[num], &tmp_len);
  507. if (!tmp_wNAF)
  508. goto err;
  509. if (tmp_len <= max_len) {
  510. /*
  511. * One of the other wNAFs is at least as long as the wNAF
  512. * belonging to the generator, so wNAF splitting will not buy
  513. * us anything.
  514. */
  515. numblocks = 1;
  516. totalnum = num + 1; /* don't use wNAF splitting */
  517. wNAF[num] = tmp_wNAF;
  518. wNAF[num + 1] = NULL;
  519. wNAF_len[num] = tmp_len;
  520. /*
  521. * pre_comp->points starts with the points that we need here:
  522. */
  523. val_sub[num] = pre_comp->points;
  524. } else {
  525. /*
  526. * don't include tmp_wNAF directly into wNAF array - use wNAF
  527. * splitting and include the blocks
  528. */
  529. signed char *pp;
  530. EC_POINT **tmp_points;
  531. if (tmp_len < numblocks * blocksize) {
  532. /*
  533. * possibly we can do with fewer blocks than estimated
  534. */
  535. numblocks = (tmp_len + blocksize - 1) / blocksize;
  536. if (numblocks > pre_comp->numblocks) {
  537. ECerr(EC_F_EC_WNAF_MUL, ERR_R_INTERNAL_ERROR);
  538. OPENSSL_free(tmp_wNAF);
  539. goto err;
  540. }
  541. totalnum = num + numblocks;
  542. }
  543. /* split wNAF in 'numblocks' parts */
  544. pp = tmp_wNAF;
  545. tmp_points = pre_comp->points;
  546. for (i = num; i < totalnum; i++) {
  547. if (i < totalnum - 1) {
  548. wNAF_len[i] = blocksize;
  549. if (tmp_len < blocksize) {
  550. ECerr(EC_F_EC_WNAF_MUL, ERR_R_INTERNAL_ERROR);
  551. OPENSSL_free(tmp_wNAF);
  552. goto err;
  553. }
  554. tmp_len -= blocksize;
  555. } else
  556. /*
  557. * last block gets whatever is left (this could be
  558. * more or less than 'blocksize'!)
  559. */
  560. wNAF_len[i] = tmp_len;
  561. wNAF[i + 1] = NULL;
  562. wNAF[i] = OPENSSL_malloc(wNAF_len[i]);
  563. if (wNAF[i] == NULL) {
  564. ECerr(EC_F_EC_WNAF_MUL, ERR_R_MALLOC_FAILURE);
  565. OPENSSL_free(tmp_wNAF);
  566. goto err;
  567. }
  568. memcpy(wNAF[i], pp, wNAF_len[i]);
  569. if (wNAF_len[i] > max_len)
  570. max_len = wNAF_len[i];
  571. if (*tmp_points == NULL) {
  572. ECerr(EC_F_EC_WNAF_MUL, ERR_R_INTERNAL_ERROR);
  573. OPENSSL_free(tmp_wNAF);
  574. goto err;
  575. }
  576. val_sub[i] = tmp_points;
  577. tmp_points += pre_points_per_block;
  578. pp += blocksize;
  579. }
  580. OPENSSL_free(tmp_wNAF);
  581. }
  582. }
  583. }
  584. /*
  585. * All points we precompute now go into a single array 'val'.
  586. * 'val_sub[i]' is a pointer to the subarray for the i-th point, or to a
  587. * subarray of 'pre_comp->points' if we already have precomputation.
  588. */
  589. val = OPENSSL_malloc((num_val + 1) * sizeof(val[0]));
  590. if (val == NULL) {
  591. ECerr(EC_F_EC_WNAF_MUL, ERR_R_MALLOC_FAILURE);
  592. goto err;
  593. }
  594. val[num_val] = NULL; /* pivot element */
  595. /* allocate points for precomputation */
  596. v = val;
  597. for (i = 0; i < num + num_scalar; i++) {
  598. val_sub[i] = v;
  599. for (j = 0; j < ((size_t)1 << (wsize[i] - 1)); j++) {
  600. *v = EC_POINT_new(group);
  601. if (*v == NULL)
  602. goto err;
  603. v++;
  604. }
  605. }
  606. if (!(v == val + num_val)) {
  607. ECerr(EC_F_EC_WNAF_MUL, ERR_R_INTERNAL_ERROR);
  608. goto err;
  609. }
  610. if ((tmp = EC_POINT_new(group)) == NULL)
  611. goto err;
  612. /*-
  613. * prepare precomputed values:
  614. * val_sub[i][0] := points[i]
  615. * val_sub[i][1] := 3 * points[i]
  616. * val_sub[i][2] := 5 * points[i]
  617. * ...
  618. */
  619. for (i = 0; i < num + num_scalar; i++) {
  620. if (i < num) {
  621. if (!EC_POINT_copy(val_sub[i][0], points[i]))
  622. goto err;
  623. } else {
  624. if (!EC_POINT_copy(val_sub[i][0], generator))
  625. goto err;
  626. }
  627. if (wsize[i] > 1) {
  628. if (!EC_POINT_dbl(group, tmp, val_sub[i][0], ctx))
  629. goto err;
  630. for (j = 1; j < ((size_t)1 << (wsize[i] - 1)); j++) {
  631. if (!EC_POINT_add
  632. (group, val_sub[i][j], val_sub[i][j - 1], tmp, ctx))
  633. goto err;
  634. }
  635. }
  636. }
  637. if (!EC_POINTs_make_affine(group, num_val, val, ctx))
  638. goto err;
  639. r_is_at_infinity = 1;
  640. for (k = max_len - 1; k >= 0; k--) {
  641. if (!r_is_at_infinity) {
  642. if (!EC_POINT_dbl(group, r, r, ctx))
  643. goto err;
  644. }
  645. for (i = 0; i < totalnum; i++) {
  646. if (wNAF_len[i] > (size_t)k) {
  647. int digit = wNAF[i][k];
  648. int is_neg;
  649. if (digit) {
  650. is_neg = digit < 0;
  651. if (is_neg)
  652. digit = -digit;
  653. if (is_neg != r_is_inverted) {
  654. if (!r_is_at_infinity) {
  655. if (!EC_POINT_invert(group, r, ctx))
  656. goto err;
  657. }
  658. r_is_inverted = !r_is_inverted;
  659. }
  660. /* digit > 0 */
  661. if (r_is_at_infinity) {
  662. if (!EC_POINT_copy(r, val_sub[i][digit >> 1]))
  663. goto err;
  664. r_is_at_infinity = 0;
  665. } else {
  666. if (!EC_POINT_add
  667. (group, r, r, val_sub[i][digit >> 1], ctx))
  668. goto err;
  669. }
  670. }
  671. }
  672. }
  673. }
  674. if (r_is_at_infinity) {
  675. if (!EC_POINT_set_to_infinity(group, r))
  676. goto err;
  677. } else {
  678. if (r_is_inverted)
  679. if (!EC_POINT_invert(group, r, ctx))
  680. goto err;
  681. }
  682. ret = 1;
  683. err:
  684. EC_POINT_free(tmp);
  685. OPENSSL_free(wsize);
  686. OPENSSL_free(wNAF_len);
  687. if (wNAF != NULL) {
  688. signed char **w;
  689. for (w = wNAF; *w != NULL; w++)
  690. OPENSSL_free(*w);
  691. OPENSSL_free(wNAF);
  692. }
  693. if (val != NULL) {
  694. for (v = val; *v != NULL; v++)
  695. EC_POINT_clear_free(*v);
  696. OPENSSL_free(val);
  697. }
  698. OPENSSL_free(val_sub);
  699. return ret;
  700. }
  701. /*-
  702. * ec_wNAF_precompute_mult()
  703. * creates an EC_PRE_COMP object with preprecomputed multiples of the generator
  704. * for use with wNAF splitting as implemented in ec_wNAF_mul().
  705. *
  706. * 'pre_comp->points' is an array of multiples of the generator
  707. * of the following form:
  708. * points[0] = generator;
  709. * points[1] = 3 * generator;
  710. * ...
  711. * points[2^(w-1)-1] = (2^(w-1)-1) * generator;
  712. * points[2^(w-1)] = 2^blocksize * generator;
  713. * points[2^(w-1)+1] = 3 * 2^blocksize * generator;
  714. * ...
  715. * points[2^(w-1)*(numblocks-1)-1] = (2^(w-1)) * 2^(blocksize*(numblocks-2)) * generator
  716. * points[2^(w-1)*(numblocks-1)] = 2^(blocksize*(numblocks-1)) * generator
  717. * ...
  718. * points[2^(w-1)*numblocks-1] = (2^(w-1)) * 2^(blocksize*(numblocks-1)) * generator
  719. * points[2^(w-1)*numblocks] = NULL
  720. */
  721. int ec_wNAF_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
  722. {
  723. const EC_POINT *generator;
  724. EC_POINT *tmp_point = NULL, *base = NULL, **var;
  725. const BIGNUM *order;
  726. size_t i, bits, w, pre_points_per_block, blocksize, numblocks, num;
  727. EC_POINT **points = NULL;
  728. EC_PRE_COMP *pre_comp;
  729. int ret = 0;
  730. #ifndef FIPS_MODE
  731. BN_CTX *new_ctx = NULL;
  732. #endif
  733. /* if there is an old EC_PRE_COMP object, throw it away */
  734. EC_pre_comp_free(group);
  735. if ((pre_comp = ec_pre_comp_new(group)) == NULL)
  736. return 0;
  737. generator = EC_GROUP_get0_generator(group);
  738. if (generator == NULL) {
  739. ECerr(EC_F_EC_WNAF_PRECOMPUTE_MULT, EC_R_UNDEFINED_GENERATOR);
  740. goto err;
  741. }
  742. #ifndef FIPS_MODE
  743. if (ctx == NULL)
  744. ctx = new_ctx = BN_CTX_new();
  745. #endif
  746. if (ctx == NULL)
  747. goto err;
  748. BN_CTX_start(ctx);
  749. order = EC_GROUP_get0_order(group);
  750. if (order == NULL)
  751. goto err;
  752. if (BN_is_zero(order)) {
  753. ECerr(EC_F_EC_WNAF_PRECOMPUTE_MULT, EC_R_UNKNOWN_ORDER);
  754. goto err;
  755. }
  756. bits = BN_num_bits(order);
  757. /*
  758. * The following parameters mean we precompute (approximately) one point
  759. * per bit. TBD: The combination 8, 4 is perfect for 160 bits; for other
  760. * bit lengths, other parameter combinations might provide better
  761. * efficiency.
  762. */
  763. blocksize = 8;
  764. w = 4;
  765. if (EC_window_bits_for_scalar_size(bits) > w) {
  766. /* let's not make the window too small ... */
  767. w = EC_window_bits_for_scalar_size(bits);
  768. }
  769. numblocks = (bits + blocksize - 1) / blocksize; /* max. number of blocks
  770. * to use for wNAF
  771. * splitting */
  772. pre_points_per_block = (size_t)1 << (w - 1);
  773. num = pre_points_per_block * numblocks; /* number of points to compute
  774. * and store */
  775. points = OPENSSL_malloc(sizeof(*points) * (num + 1));
  776. if (points == NULL) {
  777. ECerr(EC_F_EC_WNAF_PRECOMPUTE_MULT, ERR_R_MALLOC_FAILURE);
  778. goto err;
  779. }
  780. var = points;
  781. var[num] = NULL; /* pivot */
  782. for (i = 0; i < num; i++) {
  783. if ((var[i] = EC_POINT_new(group)) == NULL) {
  784. ECerr(EC_F_EC_WNAF_PRECOMPUTE_MULT, ERR_R_MALLOC_FAILURE);
  785. goto err;
  786. }
  787. }
  788. if ((tmp_point = EC_POINT_new(group)) == NULL
  789. || (base = EC_POINT_new(group)) == NULL) {
  790. ECerr(EC_F_EC_WNAF_PRECOMPUTE_MULT, ERR_R_MALLOC_FAILURE);
  791. goto err;
  792. }
  793. if (!EC_POINT_copy(base, generator))
  794. goto err;
  795. /* do the precomputation */
  796. for (i = 0; i < numblocks; i++) {
  797. size_t j;
  798. if (!EC_POINT_dbl(group, tmp_point, base, ctx))
  799. goto err;
  800. if (!EC_POINT_copy(*var++, base))
  801. goto err;
  802. for (j = 1; j < pre_points_per_block; j++, var++) {
  803. /*
  804. * calculate odd multiples of the current base point
  805. */
  806. if (!EC_POINT_add(group, *var, tmp_point, *(var - 1), ctx))
  807. goto err;
  808. }
  809. if (i < numblocks - 1) {
  810. /*
  811. * get the next base (multiply current one by 2^blocksize)
  812. */
  813. size_t k;
  814. if (blocksize <= 2) {
  815. ECerr(EC_F_EC_WNAF_PRECOMPUTE_MULT, ERR_R_INTERNAL_ERROR);
  816. goto err;
  817. }
  818. if (!EC_POINT_dbl(group, base, tmp_point, ctx))
  819. goto err;
  820. for (k = 2; k < blocksize; k++) {
  821. if (!EC_POINT_dbl(group, base, base, ctx))
  822. goto err;
  823. }
  824. }
  825. }
  826. if (!EC_POINTs_make_affine(group, num, points, ctx))
  827. goto err;
  828. pre_comp->group = group;
  829. pre_comp->blocksize = blocksize;
  830. pre_comp->numblocks = numblocks;
  831. pre_comp->w = w;
  832. pre_comp->points = points;
  833. points = NULL;
  834. pre_comp->num = num;
  835. SETPRECOMP(group, ec, pre_comp);
  836. pre_comp = NULL;
  837. ret = 1;
  838. err:
  839. BN_CTX_end(ctx);
  840. #ifndef FIPS_MODE
  841. BN_CTX_free(new_ctx);
  842. #endif
  843. EC_ec_pre_comp_free(pre_comp);
  844. if (points) {
  845. EC_POINT **p;
  846. for (p = points; *p != NULL; p++)
  847. EC_POINT_free(*p);
  848. OPENSSL_free(points);
  849. }
  850. EC_POINT_free(tmp_point);
  851. EC_POINT_free(base);
  852. return ret;
  853. }
  854. int ec_wNAF_have_precompute_mult(const EC_GROUP *group)
  855. {
  856. return HAVEPRECOMP(group, ec);
  857. }