bn_exp.c 49 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540
  1. /*
  2. * Copyright 1995-2025 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 "internal/cryptlib.h"
  10. #include "internal/constant_time.h"
  11. #include "bn_local.h"
  12. #include <stdlib.h>
  13. #ifdef _WIN32
  14. # include <malloc.h>
  15. # ifndef alloca
  16. # define alloca _alloca
  17. # endif
  18. #elif defined(__GNUC__)
  19. # ifndef alloca
  20. # define alloca(s) __builtin_alloca((s))
  21. # endif
  22. #elif defined(__sun)
  23. # include <alloca.h>
  24. #endif
  25. #include "rsaz_exp.h"
  26. #undef SPARC_T4_MONT
  27. #if defined(OPENSSL_BN_ASM_MONT) && (defined(__sparc__) || defined(__sparc))
  28. # include "crypto/sparc_arch.h"
  29. # define SPARC_T4_MONT
  30. #endif
  31. /* maximum precomputation table size for *variable* sliding windows */
  32. #define TABLE_SIZE 32
  33. /*
  34. * Beyond this limit the constant time code is disabled due to
  35. * the possible overflow in the computation of powerbufLen in
  36. * BN_mod_exp_mont_consttime.
  37. * When this limit is exceeded, the computation will be done using
  38. * non-constant time code, but it will take very long.
  39. */
  40. #define BN_CONSTTIME_SIZE_LIMIT (INT_MAX / BN_BYTES / 256)
  41. /* this one works - simple but works */
  42. int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
  43. {
  44. int i, bits, ret = 0;
  45. BIGNUM *v, *rr;
  46. if (BN_get_flags(p, BN_FLG_CONSTTIME) != 0
  47. || BN_get_flags(a, BN_FLG_CONSTTIME) != 0) {
  48. /* BN_FLG_CONSTTIME only supported by BN_mod_exp_mont() */
  49. ERR_raise(ERR_LIB_BN, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  50. return 0;
  51. }
  52. BN_CTX_start(ctx);
  53. rr = ((r == a) || (r == p)) ? BN_CTX_get(ctx) : r;
  54. v = BN_CTX_get(ctx);
  55. if (rr == NULL || v == NULL)
  56. goto err;
  57. if (BN_copy(v, a) == NULL)
  58. goto err;
  59. bits = BN_num_bits(p);
  60. if (BN_is_odd(p)) {
  61. if (BN_copy(rr, a) == NULL)
  62. goto err;
  63. } else {
  64. if (!BN_one(rr))
  65. goto err;
  66. }
  67. for (i = 1; i < bits; i++) {
  68. if (!BN_sqr(v, v, ctx))
  69. goto err;
  70. if (BN_is_bit_set(p, i)) {
  71. if (!BN_mul(rr, rr, v, ctx))
  72. goto err;
  73. }
  74. }
  75. if (r != rr && BN_copy(r, rr) == NULL)
  76. goto err;
  77. ret = 1;
  78. err:
  79. BN_CTX_end(ctx);
  80. bn_check_top(r);
  81. return ret;
  82. }
  83. int BN_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m,
  84. BN_CTX *ctx)
  85. {
  86. int ret;
  87. bn_check_top(a);
  88. bn_check_top(p);
  89. bn_check_top(m);
  90. /*-
  91. * For even modulus m = 2^k*m_odd, it might make sense to compute
  92. * a^p mod m_odd and a^p mod 2^k separately (with Montgomery
  93. * exponentiation for the odd part), using appropriate exponent
  94. * reductions, and combine the results using the CRT.
  95. *
  96. * For now, we use Montgomery only if the modulus is odd; otherwise,
  97. * exponentiation using the reciprocal-based quick remaindering
  98. * algorithm is used.
  99. *
  100. * (Timing obtained with expspeed.c [computations a^p mod m
  101. * where a, p, m are of the same length: 256, 512, 1024, 2048,
  102. * 4096, 8192 bits], compared to the running time of the
  103. * standard algorithm:
  104. *
  105. * BN_mod_exp_mont 33 .. 40 % [AMD K6-2, Linux, debug configuration]
  106. * 55 .. 77 % [UltraSparc processor, but
  107. * debug-solaris-sparcv8-gcc conf.]
  108. *
  109. * BN_mod_exp_recp 50 .. 70 % [AMD K6-2, Linux, debug configuration]
  110. * 62 .. 118 % [UltraSparc, debug-solaris-sparcv8-gcc]
  111. *
  112. * On the Sparc, BN_mod_exp_recp was faster than BN_mod_exp_mont
  113. * at 2048 and more bits, but at 512 and 1024 bits, it was
  114. * slower even than the standard algorithm!
  115. *
  116. * "Real" timings [linux-elf, solaris-sparcv9-gcc configurations]
  117. * should be obtained when the new Montgomery reduction code
  118. * has been integrated into OpenSSL.)
  119. */
  120. #define MONT_MUL_MOD
  121. #define MONT_EXP_WORD
  122. #define RECP_MUL_MOD
  123. #ifdef MONT_MUL_MOD
  124. if (BN_is_odd(m)) {
  125. # ifdef MONT_EXP_WORD
  126. if (a->top == 1 && !a->neg
  127. && (BN_get_flags(p, BN_FLG_CONSTTIME) == 0)
  128. && (BN_get_flags(a, BN_FLG_CONSTTIME) == 0)
  129. && (BN_get_flags(m, BN_FLG_CONSTTIME) == 0)) {
  130. BN_ULONG A = a->d[0];
  131. ret = BN_mod_exp_mont_word(r, A, p, m, ctx, NULL);
  132. } else
  133. # endif
  134. ret = BN_mod_exp_mont(r, a, p, m, ctx, NULL);
  135. } else
  136. #endif
  137. #ifdef RECP_MUL_MOD
  138. {
  139. ret = BN_mod_exp_recp(r, a, p, m, ctx);
  140. }
  141. #else
  142. {
  143. ret = BN_mod_exp_simple(r, a, p, m, ctx);
  144. }
  145. #endif
  146. bn_check_top(r);
  147. return ret;
  148. }
  149. int BN_mod_exp_recp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
  150. const BIGNUM *m, BN_CTX *ctx)
  151. {
  152. int i, j, bits, ret = 0, wstart, wend, window;
  153. int start = 1;
  154. BIGNUM *aa;
  155. /* Table of variables obtained from 'ctx' */
  156. BIGNUM *val[TABLE_SIZE];
  157. BN_RECP_CTX recp;
  158. if (BN_get_flags(p, BN_FLG_CONSTTIME) != 0
  159. || BN_get_flags(a, BN_FLG_CONSTTIME) != 0
  160. || BN_get_flags(m, BN_FLG_CONSTTIME) != 0) {
  161. /* BN_FLG_CONSTTIME only supported by BN_mod_exp_mont() */
  162. ERR_raise(ERR_LIB_BN, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  163. return 0;
  164. }
  165. bits = BN_num_bits(p);
  166. if (bits == 0) {
  167. /* x**0 mod 1, or x**0 mod -1 is still zero. */
  168. if (BN_abs_is_word(m, 1)) {
  169. ret = 1;
  170. BN_zero(r);
  171. } else {
  172. ret = BN_one(r);
  173. }
  174. return ret;
  175. }
  176. BN_RECP_CTX_init(&recp);
  177. BN_CTX_start(ctx);
  178. aa = BN_CTX_get(ctx);
  179. val[0] = BN_CTX_get(ctx);
  180. if (val[0] == NULL)
  181. goto err;
  182. if (m->neg) {
  183. /* ignore sign of 'm' */
  184. if (!BN_copy(aa, m))
  185. goto err;
  186. aa->neg = 0;
  187. if (BN_RECP_CTX_set(&recp, aa, ctx) <= 0)
  188. goto err;
  189. } else {
  190. if (BN_RECP_CTX_set(&recp, m, ctx) <= 0)
  191. goto err;
  192. }
  193. if (!BN_nnmod(val[0], a, m, ctx))
  194. goto err; /* 1 */
  195. if (BN_is_zero(val[0])) {
  196. BN_zero(r);
  197. ret = 1;
  198. goto err;
  199. }
  200. window = BN_window_bits_for_exponent_size(bits);
  201. if (window > 1) {
  202. if (!BN_mod_mul_reciprocal(aa, val[0], val[0], &recp, ctx))
  203. goto err; /* 2 */
  204. j = 1 << (window - 1);
  205. for (i = 1; i < j; i++) {
  206. if (((val[i] = BN_CTX_get(ctx)) == NULL) ||
  207. !BN_mod_mul_reciprocal(val[i], val[i - 1], aa, &recp, ctx))
  208. goto err;
  209. }
  210. }
  211. start = 1; /* This is used to avoid multiplication etc
  212. * when there is only the value '1' in the
  213. * buffer. */
  214. wstart = bits - 1; /* The top bit of the window */
  215. wend = 0; /* The bottom bit of the window */
  216. if (r == p) {
  217. BIGNUM *p_dup = BN_CTX_get(ctx);
  218. if (p_dup == NULL || BN_copy(p_dup, p) == NULL)
  219. goto err;
  220. p = p_dup;
  221. }
  222. if (!BN_one(r))
  223. goto err;
  224. for (;;) {
  225. int wvalue; /* The 'value' of the window */
  226. if (BN_is_bit_set(p, wstart) == 0) {
  227. if (!start)
  228. if (!BN_mod_mul_reciprocal(r, r, r, &recp, ctx))
  229. goto err;
  230. if (wstart == 0)
  231. break;
  232. wstart--;
  233. continue;
  234. }
  235. /*
  236. * We now have wstart on a 'set' bit, we now need to work out how bit
  237. * a window to do. To do this we need to scan forward until the last
  238. * set bit before the end of the window
  239. */
  240. wvalue = 1;
  241. wend = 0;
  242. for (i = 1; i < window; i++) {
  243. if (wstart - i < 0)
  244. break;
  245. if (BN_is_bit_set(p, wstart - i)) {
  246. wvalue <<= (i - wend);
  247. wvalue |= 1;
  248. wend = i;
  249. }
  250. }
  251. /* wend is the size of the current window */
  252. j = wend + 1;
  253. /* add the 'bytes above' */
  254. if (!start)
  255. for (i = 0; i < j; i++) {
  256. if (!BN_mod_mul_reciprocal(r, r, r, &recp, ctx))
  257. goto err;
  258. }
  259. /* wvalue will be an odd number < 2^window */
  260. if (!BN_mod_mul_reciprocal(r, r, val[wvalue >> 1], &recp, ctx))
  261. goto err;
  262. /* move the 'window' down further */
  263. wstart -= wend + 1;
  264. start = 0;
  265. if (wstart < 0)
  266. break;
  267. }
  268. ret = 1;
  269. err:
  270. BN_CTX_end(ctx);
  271. BN_RECP_CTX_free(&recp);
  272. bn_check_top(r);
  273. return ret;
  274. }
  275. int BN_mod_exp_mont(BIGNUM *rr, const BIGNUM *a, const BIGNUM *p,
  276. const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *in_mont)
  277. {
  278. int i, j, bits, ret = 0, wstart, wend, window;
  279. int start = 1;
  280. BIGNUM *d, *r;
  281. const BIGNUM *aa;
  282. /* Table of variables obtained from 'ctx' */
  283. BIGNUM *val[TABLE_SIZE];
  284. BN_MONT_CTX *mont = NULL;
  285. bn_check_top(a);
  286. bn_check_top(p);
  287. bn_check_top(m);
  288. if (!BN_is_odd(m)) {
  289. ERR_raise(ERR_LIB_BN, BN_R_CALLED_WITH_EVEN_MODULUS);
  290. return 0;
  291. }
  292. if (m->top <= BN_CONSTTIME_SIZE_LIMIT
  293. && (BN_get_flags(p, BN_FLG_CONSTTIME) != 0
  294. || BN_get_flags(a, BN_FLG_CONSTTIME) != 0
  295. || BN_get_flags(m, BN_FLG_CONSTTIME) != 0)) {
  296. return BN_mod_exp_mont_consttime(rr, a, p, m, ctx, in_mont);
  297. }
  298. bits = BN_num_bits(p);
  299. if (bits == 0) {
  300. /* x**0 mod 1, or x**0 mod -1 is still zero. */
  301. if (BN_abs_is_word(m, 1)) {
  302. ret = 1;
  303. BN_zero(rr);
  304. } else {
  305. ret = BN_one(rr);
  306. }
  307. return ret;
  308. }
  309. BN_CTX_start(ctx);
  310. d = BN_CTX_get(ctx);
  311. r = BN_CTX_get(ctx);
  312. val[0] = BN_CTX_get(ctx);
  313. if (val[0] == NULL)
  314. goto err;
  315. /*
  316. * If this is not done, things will break in the montgomery part
  317. */
  318. if (in_mont != NULL)
  319. mont = in_mont;
  320. else {
  321. if ((mont = BN_MONT_CTX_new()) == NULL)
  322. goto err;
  323. if (!BN_MONT_CTX_set(mont, m, ctx))
  324. goto err;
  325. }
  326. if (a->neg || BN_ucmp(a, m) >= 0) {
  327. if (!BN_nnmod(val[0], a, m, ctx))
  328. goto err;
  329. aa = val[0];
  330. } else
  331. aa = a;
  332. if (!bn_to_mont_fixed_top(val[0], aa, mont, ctx))
  333. goto err; /* 1 */
  334. window = BN_window_bits_for_exponent_size(bits);
  335. if (window > 1) {
  336. if (!bn_mul_mont_fixed_top(d, val[0], val[0], mont, ctx))
  337. goto err; /* 2 */
  338. j = 1 << (window - 1);
  339. for (i = 1; i < j; i++) {
  340. if (((val[i] = BN_CTX_get(ctx)) == NULL) ||
  341. !bn_mul_mont_fixed_top(val[i], val[i - 1], d, mont, ctx))
  342. goto err;
  343. }
  344. }
  345. start = 1; /* This is used to avoid multiplication etc
  346. * when there is only the value '1' in the
  347. * buffer. */
  348. wstart = bits - 1; /* The top bit of the window */
  349. wend = 0; /* The bottom bit of the window */
  350. #if 1 /* by Shay Gueron's suggestion */
  351. j = m->top; /* borrow j */
  352. if (m->d[j - 1] & (((BN_ULONG)1) << (BN_BITS2 - 1))) {
  353. if (bn_wexpand(r, j) == NULL)
  354. goto err;
  355. /* 2^(top*BN_BITS2) - m */
  356. r->d[0] = (0 - m->d[0]) & BN_MASK2;
  357. for (i = 1; i < j; i++)
  358. r->d[i] = (~m->d[i]) & BN_MASK2;
  359. r->top = j;
  360. r->flags |= BN_FLG_FIXED_TOP;
  361. } else
  362. #endif
  363. if (!bn_to_mont_fixed_top(r, BN_value_one(), mont, ctx))
  364. goto err;
  365. for (;;) {
  366. int wvalue; /* The 'value' of the window */
  367. if (BN_is_bit_set(p, wstart) == 0) {
  368. if (!start) {
  369. if (!bn_mul_mont_fixed_top(r, r, r, mont, ctx))
  370. goto err;
  371. }
  372. if (wstart == 0)
  373. break;
  374. wstart--;
  375. continue;
  376. }
  377. /*
  378. * We now have wstart on a 'set' bit, we now need to work out how bit
  379. * a window to do. To do this we need to scan forward until the last
  380. * set bit before the end of the window
  381. */
  382. wvalue = 1;
  383. wend = 0;
  384. for (i = 1; i < window; i++) {
  385. if (wstart - i < 0)
  386. break;
  387. if (BN_is_bit_set(p, wstart - i)) {
  388. wvalue <<= (i - wend);
  389. wvalue |= 1;
  390. wend = i;
  391. }
  392. }
  393. /* wend is the size of the current window */
  394. j = wend + 1;
  395. /* add the 'bytes above' */
  396. if (!start)
  397. for (i = 0; i < j; i++) {
  398. if (!bn_mul_mont_fixed_top(r, r, r, mont, ctx))
  399. goto err;
  400. }
  401. /* wvalue will be an odd number < 2^window */
  402. if (!bn_mul_mont_fixed_top(r, r, val[wvalue >> 1], mont, ctx))
  403. goto err;
  404. /* move the 'window' down further */
  405. wstart -= wend + 1;
  406. start = 0;
  407. if (wstart < 0)
  408. break;
  409. }
  410. /*
  411. * Done with zero-padded intermediate BIGNUMs. Final BN_from_montgomery
  412. * removes padding [if any] and makes return value suitable for public
  413. * API consumer.
  414. */
  415. #if defined(SPARC_T4_MONT)
  416. if (OPENSSL_sparcv9cap_P[0] & (SPARCV9_VIS3 | SPARCV9_PREFER_FPU)) {
  417. j = mont->N.top; /* borrow j */
  418. val[0]->d[0] = 1; /* borrow val[0] */
  419. for (i = 1; i < j; i++)
  420. val[0]->d[i] = 0;
  421. val[0]->top = j;
  422. if (!BN_mod_mul_montgomery(rr, r, val[0], mont, ctx))
  423. goto err;
  424. } else
  425. #endif
  426. if (!BN_from_montgomery(rr, r, mont, ctx))
  427. goto err;
  428. ret = 1;
  429. err:
  430. if (in_mont == NULL)
  431. BN_MONT_CTX_free(mont);
  432. BN_CTX_end(ctx);
  433. bn_check_top(rr);
  434. return ret;
  435. }
  436. static BN_ULONG bn_get_bits(const BIGNUM *a, int bitpos)
  437. {
  438. BN_ULONG ret = 0;
  439. int wordpos;
  440. wordpos = bitpos / BN_BITS2;
  441. bitpos %= BN_BITS2;
  442. if (wordpos >= 0 && wordpos < a->top) {
  443. ret = a->d[wordpos] & BN_MASK2;
  444. if (bitpos) {
  445. ret >>= bitpos;
  446. if (++wordpos < a->top)
  447. ret |= a->d[wordpos] << (BN_BITS2 - bitpos);
  448. }
  449. }
  450. return ret & BN_MASK2;
  451. }
  452. /*
  453. * BN_mod_exp_mont_consttime() stores the precomputed powers in a specific
  454. * layout so that accessing any of these table values shows the same access
  455. * pattern as far as cache lines are concerned. The following functions are
  456. * used to transfer a BIGNUM from/to that table.
  457. */
  458. static int MOD_EXP_CTIME_COPY_TO_PREBUF(const BIGNUM *b, int top,
  459. unsigned char *buf, int idx,
  460. int window)
  461. {
  462. int i, j;
  463. int width = 1 << window;
  464. BN_ULONG *table = (BN_ULONG *)buf;
  465. if (top > b->top)
  466. top = b->top; /* this works because 'buf' is explicitly
  467. * zeroed */
  468. for (i = 0, j = idx; i < top; i++, j += width) {
  469. table[j] = b->d[i];
  470. }
  471. return 1;
  472. }
  473. static int MOD_EXP_CTIME_COPY_FROM_PREBUF(BIGNUM *b, int top,
  474. unsigned char *buf, int idx,
  475. int window)
  476. {
  477. int i, j;
  478. int width = 1 << window;
  479. /*
  480. * We declare table 'volatile' in order to discourage compiler
  481. * from reordering loads from the table. Concern is that if
  482. * reordered in specific manner loads might give away the
  483. * information we are trying to conceal. Some would argue that
  484. * compiler can reorder them anyway, but it can as well be
  485. * argued that doing so would be violation of standard...
  486. */
  487. volatile BN_ULONG *table = (volatile BN_ULONG *)buf;
  488. if (bn_wexpand(b, top) == NULL)
  489. return 0;
  490. if (window <= 3) {
  491. for (i = 0; i < top; i++, table += width) {
  492. BN_ULONG acc = 0;
  493. for (j = 0; j < width; j++) {
  494. acc |= table[j] &
  495. ((BN_ULONG)0 - (constant_time_eq_int(j,idx)&1));
  496. }
  497. b->d[i] = acc;
  498. }
  499. } else {
  500. int xstride = 1 << (window - 2);
  501. BN_ULONG y0, y1, y2, y3;
  502. i = idx >> (window - 2); /* equivalent of idx / xstride */
  503. idx &= xstride - 1; /* equivalent of idx % xstride */
  504. y0 = (BN_ULONG)0 - (constant_time_eq_int(i,0)&1);
  505. y1 = (BN_ULONG)0 - (constant_time_eq_int(i,1)&1);
  506. y2 = (BN_ULONG)0 - (constant_time_eq_int(i,2)&1);
  507. y3 = (BN_ULONG)0 - (constant_time_eq_int(i,3)&1);
  508. for (i = 0; i < top; i++, table += width) {
  509. BN_ULONG acc = 0;
  510. for (j = 0; j < xstride; j++) {
  511. acc |= ( (table[j + 0 * xstride] & y0) |
  512. (table[j + 1 * xstride] & y1) |
  513. (table[j + 2 * xstride] & y2) |
  514. (table[j + 3 * xstride] & y3) )
  515. & ((BN_ULONG)0 - (constant_time_eq_int(j,idx)&1));
  516. }
  517. b->d[i] = acc;
  518. }
  519. }
  520. b->top = top;
  521. b->flags |= BN_FLG_FIXED_TOP;
  522. return 1;
  523. }
  524. /*
  525. * Given a pointer value, compute the next address that is a cache line
  526. * multiple.
  527. */
  528. #define MOD_EXP_CTIME_ALIGN(x_) \
  529. ((unsigned char*)(x_) + (MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH - (((size_t)(x_)) & (MOD_EXP_CTIME_MIN_CACHE_LINE_MASK))))
  530. /*
  531. * This variant of BN_mod_exp_mont() uses fixed windows and the special
  532. * precomputation memory layout to limit data-dependency to a minimum to
  533. * protect secret exponents (cf. the hyper-threading timing attacks pointed
  534. * out by Colin Percival,
  535. * http://www.daemonology.net/hyperthreading-considered-harmful/)
  536. */
  537. int bn_mod_exp_mont_fixed_top(BIGNUM *rr, const BIGNUM *a, const BIGNUM *p,
  538. const BIGNUM *m, BN_CTX *ctx,
  539. BN_MONT_CTX *in_mont)
  540. {
  541. int i, bits, ret = 0, window, wvalue, wmask, window0;
  542. int top;
  543. BN_MONT_CTX *mont = NULL;
  544. int numPowers;
  545. unsigned char *powerbufFree = NULL;
  546. int powerbufLen = 0;
  547. unsigned char *powerbuf = NULL;
  548. BIGNUM tmp, am;
  549. #if defined(SPARC_T4_MONT)
  550. unsigned int t4 = 0;
  551. #endif
  552. if (!BN_is_odd(m)) {
  553. ERR_raise(ERR_LIB_BN, BN_R_CALLED_WITH_EVEN_MODULUS);
  554. return 0;
  555. }
  556. top = m->top;
  557. if (top > BN_CONSTTIME_SIZE_LIMIT) {
  558. /* Prevent overflowing the powerbufLen computation below */
  559. return BN_mod_exp_mont(rr, a, p, m, ctx, in_mont);
  560. }
  561. /*
  562. * Use all bits stored in |p|, rather than |BN_num_bits|, so we do not leak
  563. * whether the top bits are zero.
  564. */
  565. bits = p->top * BN_BITS2;
  566. if (bits == 0) {
  567. /* x**0 mod 1, or x**0 mod -1 is still zero. */
  568. if (BN_abs_is_word(m, 1)) {
  569. ret = 1;
  570. BN_zero(rr);
  571. } else {
  572. ret = BN_one(rr);
  573. }
  574. return ret;
  575. }
  576. BN_CTX_start(ctx);
  577. /*
  578. * Allocate a montgomery context if it was not supplied by the caller. If
  579. * this is not done, things will break in the montgomery part.
  580. */
  581. if (in_mont != NULL)
  582. mont = in_mont;
  583. else {
  584. if ((mont = BN_MONT_CTX_new()) == NULL)
  585. goto err;
  586. if (!BN_MONT_CTX_set(mont, m, ctx))
  587. goto err;
  588. }
  589. if (a->neg || BN_ucmp(a, m) >= 0) {
  590. BIGNUM *reduced = BN_CTX_get(ctx);
  591. if (reduced == NULL
  592. || !BN_nnmod(reduced, a, m, ctx)) {
  593. goto err;
  594. }
  595. a = reduced;
  596. }
  597. #ifdef RSAZ_ENABLED
  598. /*
  599. * If the size of the operands allow it, perform the optimized
  600. * RSAZ exponentiation. For further information see
  601. * crypto/bn/rsaz_exp.c and accompanying assembly modules.
  602. */
  603. if ((16 == a->top) && (16 == p->top) && (BN_num_bits(m) == 1024)
  604. && rsaz_avx2_eligible()) {
  605. if (NULL == bn_wexpand(rr, 16))
  606. goto err;
  607. RSAZ_1024_mod_exp_avx2(rr->d, a->d, p->d, m->d, mont->RR.d,
  608. mont->n0[0]);
  609. rr->top = 16;
  610. rr->neg = 0;
  611. bn_correct_top(rr);
  612. ret = 1;
  613. goto err;
  614. } else if ((8 == a->top) && (8 == p->top) && (BN_num_bits(m) == 512)) {
  615. if (NULL == bn_wexpand(rr, 8))
  616. goto err;
  617. RSAZ_512_mod_exp(rr->d, a->d, p->d, m->d, mont->n0[0], mont->RR.d);
  618. rr->top = 8;
  619. rr->neg = 0;
  620. bn_correct_top(rr);
  621. ret = 1;
  622. goto err;
  623. }
  624. #endif
  625. /* Get the window size to use with size of p. */
  626. window = BN_window_bits_for_ctime_exponent_size(bits);
  627. #if defined(SPARC_T4_MONT)
  628. if (window >= 5 && (top & 15) == 0 && top <= 64 &&
  629. (OPENSSL_sparcv9cap_P[1] & (CFR_MONTMUL | CFR_MONTSQR)) ==
  630. (CFR_MONTMUL | CFR_MONTSQR) && (t4 = OPENSSL_sparcv9cap_P[0]))
  631. window = 5;
  632. else
  633. #endif
  634. #if defined(OPENSSL_BN_ASM_MONT5)
  635. if (window >= 5 && top <= BN_SOFT_LIMIT) {
  636. window = 5; /* ~5% improvement for RSA2048 sign, and even
  637. * for RSA4096 */
  638. /* reserve space for mont->N.d[] copy */
  639. powerbufLen += top * sizeof(mont->N.d[0]);
  640. }
  641. #endif
  642. (void)0;
  643. /*
  644. * Allocate a buffer large enough to hold all of the pre-computed powers
  645. * of am, am itself and tmp.
  646. */
  647. numPowers = 1 << window;
  648. powerbufLen += sizeof(m->d[0]) * (top * numPowers +
  649. ((2 * top) >
  650. numPowers ? (2 * top) : numPowers));
  651. #ifdef alloca
  652. if (powerbufLen < 3072)
  653. powerbufFree =
  654. alloca(powerbufLen + MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH);
  655. else
  656. #endif
  657. if ((powerbufFree =
  658. OPENSSL_malloc(powerbufLen + MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH))
  659. == NULL)
  660. goto err;
  661. powerbuf = MOD_EXP_CTIME_ALIGN(powerbufFree);
  662. memset(powerbuf, 0, powerbufLen);
  663. #ifdef alloca
  664. if (powerbufLen < 3072)
  665. powerbufFree = NULL;
  666. #endif
  667. /* lay down tmp and am right after powers table */
  668. tmp.d = (BN_ULONG *)(powerbuf + sizeof(m->d[0]) * top * numPowers);
  669. am.d = tmp.d + top;
  670. tmp.top = am.top = 0;
  671. tmp.dmax = am.dmax = top;
  672. tmp.neg = am.neg = 0;
  673. tmp.flags = am.flags = BN_FLG_STATIC_DATA;
  674. /* prepare a^0 in Montgomery domain */
  675. #if 1 /* by Shay Gueron's suggestion */
  676. if (m->d[top - 1] & (((BN_ULONG)1) << (BN_BITS2 - 1))) {
  677. /* 2^(top*BN_BITS2) - m */
  678. tmp.d[0] = (0 - m->d[0]) & BN_MASK2;
  679. for (i = 1; i < top; i++)
  680. tmp.d[i] = (~m->d[i]) & BN_MASK2;
  681. tmp.top = top;
  682. } else
  683. #endif
  684. if (!bn_to_mont_fixed_top(&tmp, BN_value_one(), mont, ctx))
  685. goto err;
  686. /* prepare a^1 in Montgomery domain */
  687. if (!bn_to_mont_fixed_top(&am, a, mont, ctx))
  688. goto err;
  689. if (top > BN_SOFT_LIMIT)
  690. goto fallback;
  691. #if defined(SPARC_T4_MONT)
  692. if (t4) {
  693. typedef int (*bn_pwr5_mont_f) (BN_ULONG *tp, const BN_ULONG *np,
  694. const BN_ULONG *n0, const void *table,
  695. int power, int bits);
  696. int bn_pwr5_mont_t4_8(BN_ULONG *tp, const BN_ULONG *np,
  697. const BN_ULONG *n0, const void *table,
  698. int power, int bits);
  699. int bn_pwr5_mont_t4_16(BN_ULONG *tp, const BN_ULONG *np,
  700. const BN_ULONG *n0, const void *table,
  701. int power, int bits);
  702. int bn_pwr5_mont_t4_24(BN_ULONG *tp, const BN_ULONG *np,
  703. const BN_ULONG *n0, const void *table,
  704. int power, int bits);
  705. int bn_pwr5_mont_t4_32(BN_ULONG *tp, const BN_ULONG *np,
  706. const BN_ULONG *n0, const void *table,
  707. int power, int bits);
  708. static const bn_pwr5_mont_f pwr5_funcs[4] = {
  709. bn_pwr5_mont_t4_8, bn_pwr5_mont_t4_16,
  710. bn_pwr5_mont_t4_24, bn_pwr5_mont_t4_32
  711. };
  712. bn_pwr5_mont_f pwr5_worker = pwr5_funcs[top / 16 - 1];
  713. typedef int (*bn_mul_mont_f) (BN_ULONG *rp, const BN_ULONG *ap,
  714. const void *bp, const BN_ULONG *np,
  715. const BN_ULONG *n0);
  716. int bn_mul_mont_t4_8(BN_ULONG *rp, const BN_ULONG *ap, const void *bp,
  717. const BN_ULONG *np, const BN_ULONG *n0);
  718. int bn_mul_mont_t4_16(BN_ULONG *rp, const BN_ULONG *ap,
  719. const void *bp, const BN_ULONG *np,
  720. const BN_ULONG *n0);
  721. int bn_mul_mont_t4_24(BN_ULONG *rp, const BN_ULONG *ap,
  722. const void *bp, const BN_ULONG *np,
  723. const BN_ULONG *n0);
  724. int bn_mul_mont_t4_32(BN_ULONG *rp, const BN_ULONG *ap,
  725. const void *bp, const BN_ULONG *np,
  726. const BN_ULONG *n0);
  727. static const bn_mul_mont_f mul_funcs[4] = {
  728. bn_mul_mont_t4_8, bn_mul_mont_t4_16,
  729. bn_mul_mont_t4_24, bn_mul_mont_t4_32
  730. };
  731. bn_mul_mont_f mul_worker = mul_funcs[top / 16 - 1];
  732. void bn_mul_mont_vis3(BN_ULONG *rp, const BN_ULONG *ap,
  733. const void *bp, const BN_ULONG *np,
  734. const BN_ULONG *n0, int num);
  735. void bn_mul_mont_t4(BN_ULONG *rp, const BN_ULONG *ap,
  736. const void *bp, const BN_ULONG *np,
  737. const BN_ULONG *n0, int num);
  738. void bn_mul_mont_gather5_t4(BN_ULONG *rp, const BN_ULONG *ap,
  739. const void *table, const BN_ULONG *np,
  740. const BN_ULONG *n0, int num, int power);
  741. void bn_flip_n_scatter5_t4(const BN_ULONG *inp, size_t num,
  742. void *table, size_t power);
  743. void bn_gather5_t4(BN_ULONG *out, size_t num,
  744. void *table, size_t power);
  745. void bn_flip_t4(BN_ULONG *dst, BN_ULONG *src, size_t num);
  746. BN_ULONG *np = mont->N.d, *n0 = mont->n0;
  747. int stride = 5 * (6 - (top / 16 - 1)); /* multiple of 5, but less
  748. * than 32 */
  749. /*
  750. * BN_to_montgomery can contaminate words above .top [in
  751. * BN_DEBUG build...
  752. */
  753. for (i = am.top; i < top; i++)
  754. am.d[i] = 0;
  755. for (i = tmp.top; i < top; i++)
  756. tmp.d[i] = 0;
  757. bn_flip_n_scatter5_t4(tmp.d, top, powerbuf, 0);
  758. bn_flip_n_scatter5_t4(am.d, top, powerbuf, 1);
  759. if (!(*mul_worker) (tmp.d, am.d, am.d, np, n0) &&
  760. !(*mul_worker) (tmp.d, am.d, am.d, np, n0))
  761. bn_mul_mont_vis3(tmp.d, am.d, am.d, np, n0, top);
  762. bn_flip_n_scatter5_t4(tmp.d, top, powerbuf, 2);
  763. for (i = 3; i < 32; i++) {
  764. /* Calculate a^i = a^(i-1) * a */
  765. if (!(*mul_worker) (tmp.d, tmp.d, am.d, np, n0) &&
  766. !(*mul_worker) (tmp.d, tmp.d, am.d, np, n0))
  767. bn_mul_mont_vis3(tmp.d, tmp.d, am.d, np, n0, top);
  768. bn_flip_n_scatter5_t4(tmp.d, top, powerbuf, i);
  769. }
  770. /* switch to 64-bit domain */
  771. np = alloca(top * sizeof(BN_ULONG));
  772. top /= 2;
  773. bn_flip_t4(np, mont->N.d, top);
  774. /*
  775. * The exponent may not have a whole number of fixed-size windows.
  776. * To simplify the main loop, the initial window has between 1 and
  777. * full-window-size bits such that what remains is always a whole
  778. * number of windows
  779. */
  780. window0 = (bits - 1) % 5 + 1;
  781. wmask = (1 << window0) - 1;
  782. bits -= window0;
  783. wvalue = bn_get_bits(p, bits) & wmask;
  784. bn_gather5_t4(tmp.d, top, powerbuf, wvalue);
  785. /*
  786. * Scan the exponent one window at a time starting from the most
  787. * significant bits.
  788. */
  789. while (bits > 0) {
  790. if (bits < stride)
  791. stride = bits;
  792. bits -= stride;
  793. wvalue = bn_get_bits(p, bits);
  794. if ((*pwr5_worker) (tmp.d, np, n0, powerbuf, wvalue, stride))
  795. continue;
  796. /* retry once and fall back */
  797. if ((*pwr5_worker) (tmp.d, np, n0, powerbuf, wvalue, stride))
  798. continue;
  799. bits += stride - 5;
  800. wvalue >>= stride - 5;
  801. wvalue &= 31;
  802. bn_mul_mont_t4(tmp.d, tmp.d, tmp.d, np, n0, top);
  803. bn_mul_mont_t4(tmp.d, tmp.d, tmp.d, np, n0, top);
  804. bn_mul_mont_t4(tmp.d, tmp.d, tmp.d, np, n0, top);
  805. bn_mul_mont_t4(tmp.d, tmp.d, tmp.d, np, n0, top);
  806. bn_mul_mont_t4(tmp.d, tmp.d, tmp.d, np, n0, top);
  807. bn_mul_mont_gather5_t4(tmp.d, tmp.d, powerbuf, np, n0, top,
  808. wvalue);
  809. }
  810. bn_flip_t4(tmp.d, tmp.d, top);
  811. top *= 2;
  812. /* back to 32-bit domain */
  813. tmp.top = top;
  814. bn_correct_top(&tmp);
  815. OPENSSL_cleanse(np, top * sizeof(BN_ULONG));
  816. } else
  817. #endif
  818. #if defined(OPENSSL_BN_ASM_MONT5)
  819. if (window == 5 && top > 1) {
  820. /*
  821. * This optimization uses ideas from https://eprint.iacr.org/2011/239,
  822. * specifically optimization of cache-timing attack countermeasures,
  823. * pre-computation optimization, and Almost Montgomery Multiplication.
  824. *
  825. * The paper discusses a 4-bit window to optimize 512-bit modular
  826. * exponentiation, used in RSA-1024 with CRT, but RSA-1024 is no longer
  827. * important.
  828. *
  829. * |bn_mul_mont_gather5| and |bn_power5| implement the "almost"
  830. * reduction variant, so the values here may not be fully reduced.
  831. * They are bounded by R (i.e. they fit in |top| words), not |m|.
  832. * Additionally, we pass these "almost" reduced inputs into
  833. * |bn_mul_mont|, which implements the normal reduction variant.
  834. * Given those inputs, |bn_mul_mont| may not give reduced
  835. * output, but it will still produce "almost" reduced output.
  836. */
  837. void bn_mul_mont_gather5(BN_ULONG *rp, const BN_ULONG *ap,
  838. const void *table, const BN_ULONG *np,
  839. const BN_ULONG *n0, int num, int power);
  840. void bn_scatter5(const BN_ULONG *inp, size_t num,
  841. void *table, size_t power);
  842. void bn_gather5(BN_ULONG *out, size_t num, void *table, size_t power);
  843. void bn_power5(BN_ULONG *rp, const BN_ULONG *ap,
  844. const void *table, const BN_ULONG *np,
  845. const BN_ULONG *n0, int num, int power);
  846. int bn_get_bits5(const BN_ULONG *ap, int off);
  847. BN_ULONG *n0 = mont->n0, *np;
  848. /*
  849. * BN_to_montgomery can contaminate words above .top [in
  850. * BN_DEBUG build...
  851. */
  852. for (i = am.top; i < top; i++)
  853. am.d[i] = 0;
  854. for (i = tmp.top; i < top; i++)
  855. tmp.d[i] = 0;
  856. /*
  857. * copy mont->N.d[] to improve cache locality
  858. */
  859. for (np = am.d + top, i = 0; i < top; i++)
  860. np[i] = mont->N.d[i];
  861. bn_scatter5(tmp.d, top, powerbuf, 0);
  862. bn_scatter5(am.d, am.top, powerbuf, 1);
  863. bn_mul_mont(tmp.d, am.d, am.d, np, n0, top);
  864. bn_scatter5(tmp.d, top, powerbuf, 2);
  865. # if 0
  866. for (i = 3; i < 32; i++) {
  867. /* Calculate a^i = a^(i-1) * a */
  868. bn_mul_mont_gather5(tmp.d, am.d, powerbuf, np, n0, top, i - 1);
  869. bn_scatter5(tmp.d, top, powerbuf, i);
  870. }
  871. # else
  872. /* same as above, but uses squaring for 1/2 of operations */
  873. for (i = 4; i < 32; i *= 2) {
  874. bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top);
  875. bn_scatter5(tmp.d, top, powerbuf, i);
  876. }
  877. for (i = 3; i < 8; i += 2) {
  878. int j;
  879. bn_mul_mont_gather5(tmp.d, am.d, powerbuf, np, n0, top, i - 1);
  880. bn_scatter5(tmp.d, top, powerbuf, i);
  881. for (j = 2 * i; j < 32; j *= 2) {
  882. bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top);
  883. bn_scatter5(tmp.d, top, powerbuf, j);
  884. }
  885. }
  886. for (; i < 16; i += 2) {
  887. bn_mul_mont_gather5(tmp.d, am.d, powerbuf, np, n0, top, i - 1);
  888. bn_scatter5(tmp.d, top, powerbuf, i);
  889. bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top);
  890. bn_scatter5(tmp.d, top, powerbuf, 2 * i);
  891. }
  892. for (; i < 32; i += 2) {
  893. bn_mul_mont_gather5(tmp.d, am.d, powerbuf, np, n0, top, i - 1);
  894. bn_scatter5(tmp.d, top, powerbuf, i);
  895. }
  896. # endif
  897. /*
  898. * The exponent may not have a whole number of fixed-size windows.
  899. * To simplify the main loop, the initial window has between 1 and
  900. * full-window-size bits such that what remains is always a whole
  901. * number of windows
  902. */
  903. window0 = (bits - 1) % 5 + 1;
  904. wmask = (1 << window0) - 1;
  905. bits -= window0;
  906. wvalue = bn_get_bits(p, bits) & wmask;
  907. bn_gather5(tmp.d, top, powerbuf, wvalue);
  908. /*
  909. * Scan the exponent one window at a time starting from the most
  910. * significant bits.
  911. */
  912. if (top & 7) {
  913. while (bits > 0) {
  914. bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top);
  915. bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top);
  916. bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top);
  917. bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top);
  918. bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top);
  919. bn_mul_mont_gather5(tmp.d, tmp.d, powerbuf, np, n0, top,
  920. bn_get_bits5(p->d, bits -= 5));
  921. }
  922. } else {
  923. while (bits > 0) {
  924. bn_power5(tmp.d, tmp.d, powerbuf, np, n0, top,
  925. bn_get_bits5(p->d, bits -= 5));
  926. }
  927. }
  928. tmp.top = top;
  929. /*
  930. * The result is now in |tmp| in Montgomery form, but it may not be
  931. * fully reduced. This is within bounds for |BN_from_montgomery|
  932. * (tmp < R <= m*R) so it will, when converting from Montgomery form,
  933. * produce a fully reduced result.
  934. *
  935. * This differs from Figure 2 of the paper, which uses AMM(h, 1) to
  936. * convert from Montgomery form with unreduced output, followed by an
  937. * extra reduction step. In the paper's terminology, we replace
  938. * steps 9 and 10 with MM(h, 1).
  939. */
  940. } else
  941. #endif
  942. {
  943. fallback:
  944. if (!MOD_EXP_CTIME_COPY_TO_PREBUF(&tmp, top, powerbuf, 0, window))
  945. goto err;
  946. if (!MOD_EXP_CTIME_COPY_TO_PREBUF(&am, top, powerbuf, 1, window))
  947. goto err;
  948. /*
  949. * If the window size is greater than 1, then calculate
  950. * val[i=2..2^winsize-1]. Powers are computed as a*a^(i-1) (even
  951. * powers could instead be computed as (a^(i/2))^2 to use the slight
  952. * performance advantage of sqr over mul).
  953. */
  954. if (window > 1) {
  955. if (!bn_mul_mont_fixed_top(&tmp, &am, &am, mont, ctx))
  956. goto err;
  957. if (!MOD_EXP_CTIME_COPY_TO_PREBUF(&tmp, top, powerbuf, 2,
  958. window))
  959. goto err;
  960. for (i = 3; i < numPowers; i++) {
  961. /* Calculate a^i = a^(i-1) * a */
  962. if (!bn_mul_mont_fixed_top(&tmp, &am, &tmp, mont, ctx))
  963. goto err;
  964. if (!MOD_EXP_CTIME_COPY_TO_PREBUF(&tmp, top, powerbuf, i,
  965. window))
  966. goto err;
  967. }
  968. }
  969. /*
  970. * The exponent may not have a whole number of fixed-size windows.
  971. * To simplify the main loop, the initial window has between 1 and
  972. * full-window-size bits such that what remains is always a whole
  973. * number of windows
  974. */
  975. window0 = (bits - 1) % window + 1;
  976. wmask = (1 << window0) - 1;
  977. bits -= window0;
  978. wvalue = bn_get_bits(p, bits) & wmask;
  979. if (!MOD_EXP_CTIME_COPY_FROM_PREBUF(&tmp, top, powerbuf, wvalue,
  980. window))
  981. goto err;
  982. wmask = (1 << window) - 1;
  983. /*
  984. * Scan the exponent one window at a time starting from the most
  985. * significant bits.
  986. */
  987. while (bits > 0) {
  988. /* Square the result window-size times */
  989. for (i = 0; i < window; i++)
  990. if (!bn_mul_mont_fixed_top(&tmp, &tmp, &tmp, mont, ctx))
  991. goto err;
  992. /*
  993. * Get a window's worth of bits from the exponent
  994. * This avoids calling BN_is_bit_set for each bit, which
  995. * is not only slower but also makes each bit vulnerable to
  996. * EM (and likely other) side-channel attacks like One&Done
  997. * (for details see "One&Done: A Single-Decryption EM-Based
  998. * Attack on OpenSSL's Constant-Time Blinded RSA" by M. Alam,
  999. * H. Khan, M. Dey, N. Sinha, R. Callan, A. Zajic, and
  1000. * M. Prvulovic, in USENIX Security'18)
  1001. */
  1002. bits -= window;
  1003. wvalue = bn_get_bits(p, bits) & wmask;
  1004. /*
  1005. * Fetch the appropriate pre-computed value from the pre-buf
  1006. */
  1007. if (!MOD_EXP_CTIME_COPY_FROM_PREBUF(&am, top, powerbuf, wvalue,
  1008. window))
  1009. goto err;
  1010. /* Multiply the result into the intermediate result */
  1011. if (!bn_mul_mont_fixed_top(&tmp, &tmp, &am, mont, ctx))
  1012. goto err;
  1013. }
  1014. }
  1015. /*
  1016. * Done with zero-padded intermediate BIGNUMs. Final BN_from_montgomery
  1017. * removes padding [if any] and makes return value suitable for public
  1018. * API consumer.
  1019. */
  1020. #if defined(SPARC_T4_MONT)
  1021. if (OPENSSL_sparcv9cap_P[0] & (SPARCV9_VIS3 | SPARCV9_PREFER_FPU)) {
  1022. am.d[0] = 1; /* borrow am */
  1023. for (i = 1; i < top; i++)
  1024. am.d[i] = 0;
  1025. if (!BN_mod_mul_montgomery(rr, &tmp, &am, mont, ctx))
  1026. goto err;
  1027. } else
  1028. #endif
  1029. if (!bn_from_mont_fixed_top(rr, &tmp, mont, ctx))
  1030. goto err;
  1031. ret = 1;
  1032. err:
  1033. if (in_mont == NULL)
  1034. BN_MONT_CTX_free(mont);
  1035. if (powerbuf != NULL) {
  1036. OPENSSL_cleanse(powerbuf, powerbufLen);
  1037. OPENSSL_free(powerbufFree);
  1038. }
  1039. BN_CTX_end(ctx);
  1040. return ret;
  1041. }
  1042. int BN_mod_exp_mont_consttime(BIGNUM *rr, const BIGNUM *a, const BIGNUM *p,
  1043. const BIGNUM *m, BN_CTX *ctx,
  1044. BN_MONT_CTX *in_mont)
  1045. {
  1046. bn_check_top(a);
  1047. bn_check_top(p);
  1048. bn_check_top(m);
  1049. if (!bn_mod_exp_mont_fixed_top(rr, a, p, m, ctx, in_mont))
  1050. return 0;
  1051. bn_correct_top(rr);
  1052. return 1;
  1053. }
  1054. int BN_mod_exp_mont_word(BIGNUM *rr, BN_ULONG a, const BIGNUM *p,
  1055. const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *in_mont)
  1056. {
  1057. BN_MONT_CTX *mont = NULL;
  1058. int b, bits, ret = 0;
  1059. int r_is_one;
  1060. BN_ULONG w, next_w;
  1061. BIGNUM *r, *t;
  1062. BIGNUM *swap_tmp;
  1063. #define BN_MOD_MUL_WORD(r, w, m) \
  1064. (BN_mul_word(r, (w)) && \
  1065. (/* BN_ucmp(r, (m)) < 0 ? 1 :*/ \
  1066. (BN_mod(t, r, m, ctx) && (swap_tmp = r, r = t, t = swap_tmp, 1))))
  1067. /*
  1068. * BN_MOD_MUL_WORD is only used with 'w' large, so the BN_ucmp test is
  1069. * probably more overhead than always using BN_mod (which uses BN_copy if
  1070. * a similar test returns true).
  1071. */
  1072. /*
  1073. * We can use BN_mod and do not need BN_nnmod because our accumulator is
  1074. * never negative (the result of BN_mod does not depend on the sign of
  1075. * the modulus).
  1076. */
  1077. #define BN_TO_MONTGOMERY_WORD(r, w, mont) \
  1078. (BN_set_word(r, (w)) && BN_to_montgomery(r, r, (mont), ctx))
  1079. if (BN_get_flags(p, BN_FLG_CONSTTIME) != 0
  1080. || BN_get_flags(m, BN_FLG_CONSTTIME) != 0) {
  1081. /* BN_FLG_CONSTTIME only supported by BN_mod_exp_mont() */
  1082. ERR_raise(ERR_LIB_BN, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  1083. return 0;
  1084. }
  1085. bn_check_top(p);
  1086. bn_check_top(m);
  1087. if (!BN_is_odd(m)) {
  1088. ERR_raise(ERR_LIB_BN, BN_R_CALLED_WITH_EVEN_MODULUS);
  1089. return 0;
  1090. }
  1091. if (m->top == 1)
  1092. a %= m->d[0]; /* make sure that 'a' is reduced */
  1093. bits = BN_num_bits(p);
  1094. if (bits == 0) {
  1095. /* x**0 mod 1, or x**0 mod -1 is still zero. */
  1096. if (BN_abs_is_word(m, 1)) {
  1097. ret = 1;
  1098. BN_zero(rr);
  1099. } else {
  1100. ret = BN_one(rr);
  1101. }
  1102. return ret;
  1103. }
  1104. if (a == 0) {
  1105. BN_zero(rr);
  1106. ret = 1;
  1107. return ret;
  1108. }
  1109. BN_CTX_start(ctx);
  1110. r = BN_CTX_get(ctx);
  1111. t = BN_CTX_get(ctx);
  1112. if (t == NULL)
  1113. goto err;
  1114. if (in_mont != NULL)
  1115. mont = in_mont;
  1116. else {
  1117. if ((mont = BN_MONT_CTX_new()) == NULL)
  1118. goto err;
  1119. if (!BN_MONT_CTX_set(mont, m, ctx))
  1120. goto err;
  1121. }
  1122. r_is_one = 1; /* except for Montgomery factor */
  1123. /* bits-1 >= 0 */
  1124. /* The result is accumulated in the product r*w. */
  1125. w = a; /* bit 'bits-1' of 'p' is always set */
  1126. for (b = bits - 2; b >= 0; b--) {
  1127. /* First, square r*w. */
  1128. next_w = w * w;
  1129. if ((next_w / w) != w) { /* overflow */
  1130. if (r_is_one) {
  1131. if (!BN_TO_MONTGOMERY_WORD(r, w, mont))
  1132. goto err;
  1133. r_is_one = 0;
  1134. } else {
  1135. if (!BN_MOD_MUL_WORD(r, w, m))
  1136. goto err;
  1137. }
  1138. next_w = 1;
  1139. }
  1140. w = next_w;
  1141. if (!r_is_one) {
  1142. if (!BN_mod_mul_montgomery(r, r, r, mont, ctx))
  1143. goto err;
  1144. }
  1145. /* Second, multiply r*w by 'a' if exponent bit is set. */
  1146. if (BN_is_bit_set(p, b)) {
  1147. next_w = w * a;
  1148. if ((next_w / a) != w) { /* overflow */
  1149. if (r_is_one) {
  1150. if (!BN_TO_MONTGOMERY_WORD(r, w, mont))
  1151. goto err;
  1152. r_is_one = 0;
  1153. } else {
  1154. if (!BN_MOD_MUL_WORD(r, w, m))
  1155. goto err;
  1156. }
  1157. next_w = a;
  1158. }
  1159. w = next_w;
  1160. }
  1161. }
  1162. /* Finally, set r:=r*w. */
  1163. if (w != 1) {
  1164. if (r_is_one) {
  1165. if (!BN_TO_MONTGOMERY_WORD(r, w, mont))
  1166. goto err;
  1167. r_is_one = 0;
  1168. } else {
  1169. if (!BN_MOD_MUL_WORD(r, w, m))
  1170. goto err;
  1171. }
  1172. }
  1173. if (r_is_one) { /* can happen only if a == 1 */
  1174. if (!BN_one(rr))
  1175. goto err;
  1176. } else {
  1177. if (!BN_from_montgomery(rr, r, mont, ctx))
  1178. goto err;
  1179. }
  1180. ret = 1;
  1181. err:
  1182. if (in_mont == NULL)
  1183. BN_MONT_CTX_free(mont);
  1184. BN_CTX_end(ctx);
  1185. bn_check_top(rr);
  1186. return ret;
  1187. }
  1188. /* The old fallback, simple version :-) */
  1189. int BN_mod_exp_simple(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
  1190. const BIGNUM *m, BN_CTX *ctx)
  1191. {
  1192. int i, j, bits, ret = 0, wstart, wend, window;
  1193. int start = 1;
  1194. BIGNUM *d;
  1195. /* Table of variables obtained from 'ctx' */
  1196. BIGNUM *val[TABLE_SIZE];
  1197. if (BN_get_flags(p, BN_FLG_CONSTTIME) != 0
  1198. || BN_get_flags(a, BN_FLG_CONSTTIME) != 0
  1199. || BN_get_flags(m, BN_FLG_CONSTTIME) != 0) {
  1200. /* BN_FLG_CONSTTIME only supported by BN_mod_exp_mont() */
  1201. ERR_raise(ERR_LIB_BN, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
  1202. return 0;
  1203. }
  1204. if (r == m) {
  1205. ERR_raise(ERR_LIB_BN, ERR_R_PASSED_INVALID_ARGUMENT);
  1206. return 0;
  1207. }
  1208. bits = BN_num_bits(p);
  1209. if (bits == 0) {
  1210. /* x**0 mod 1, or x**0 mod -1 is still zero. */
  1211. if (BN_abs_is_word(m, 1)) {
  1212. ret = 1;
  1213. BN_zero(r);
  1214. } else {
  1215. ret = BN_one(r);
  1216. }
  1217. return ret;
  1218. }
  1219. BN_CTX_start(ctx);
  1220. d = BN_CTX_get(ctx);
  1221. val[0] = BN_CTX_get(ctx);
  1222. if (val[0] == NULL)
  1223. goto err;
  1224. if (!BN_nnmod(val[0], a, m, ctx))
  1225. goto err; /* 1 */
  1226. if (BN_is_zero(val[0])) {
  1227. BN_zero(r);
  1228. ret = 1;
  1229. goto err;
  1230. }
  1231. window = BN_window_bits_for_exponent_size(bits);
  1232. if (window > 1) {
  1233. if (!BN_mod_mul(d, val[0], val[0], m, ctx))
  1234. goto err; /* 2 */
  1235. j = 1 << (window - 1);
  1236. for (i = 1; i < j; i++) {
  1237. if (((val[i] = BN_CTX_get(ctx)) == NULL) ||
  1238. !BN_mod_mul(val[i], val[i - 1], d, m, ctx))
  1239. goto err;
  1240. }
  1241. }
  1242. start = 1; /* This is used to avoid multiplication etc
  1243. * when there is only the value '1' in the
  1244. * buffer. */
  1245. wstart = bits - 1; /* The top bit of the window */
  1246. wend = 0; /* The bottom bit of the window */
  1247. if (r == p) {
  1248. BIGNUM *p_dup = BN_CTX_get(ctx);
  1249. if (p_dup == NULL || BN_copy(p_dup, p) == NULL)
  1250. goto err;
  1251. p = p_dup;
  1252. }
  1253. if (!BN_one(r))
  1254. goto err;
  1255. for (;;) {
  1256. int wvalue; /* The 'value' of the window */
  1257. if (BN_is_bit_set(p, wstart) == 0) {
  1258. if (!start)
  1259. if (!BN_mod_mul(r, r, r, m, ctx))
  1260. goto err;
  1261. if (wstart == 0)
  1262. break;
  1263. wstart--;
  1264. continue;
  1265. }
  1266. /*
  1267. * We now have wstart on a 'set' bit, we now need to work out how bit
  1268. * a window to do. To do this we need to scan forward until the last
  1269. * set bit before the end of the window
  1270. */
  1271. wvalue = 1;
  1272. wend = 0;
  1273. for (i = 1; i < window; i++) {
  1274. if (wstart - i < 0)
  1275. break;
  1276. if (BN_is_bit_set(p, wstart - i)) {
  1277. wvalue <<= (i - wend);
  1278. wvalue |= 1;
  1279. wend = i;
  1280. }
  1281. }
  1282. /* wend is the size of the current window */
  1283. j = wend + 1;
  1284. /* add the 'bytes above' */
  1285. if (!start)
  1286. for (i = 0; i < j; i++) {
  1287. if (!BN_mod_mul(r, r, r, m, ctx))
  1288. goto err;
  1289. }
  1290. /* wvalue will be an odd number < 2^window */
  1291. if (!BN_mod_mul(r, r, val[wvalue >> 1], m, ctx))
  1292. goto err;
  1293. /* move the 'window' down further */
  1294. wstart -= wend + 1;
  1295. start = 0;
  1296. if (wstart < 0)
  1297. break;
  1298. }
  1299. ret = 1;
  1300. err:
  1301. BN_CTX_end(ctx);
  1302. bn_check_top(r);
  1303. return ret;
  1304. }
  1305. /*
  1306. * This is a variant of modular exponentiation optimization that does
  1307. * parallel 2-primes exponentiation using 256-bit (AVX512VL) AVX512_IFMA ISA
  1308. * in 52-bit binary redundant representation.
  1309. * If such instructions are not available, or input data size is not supported,
  1310. * it falls back to two BN_mod_exp_mont_consttime() calls.
  1311. */
  1312. int BN_mod_exp_mont_consttime_x2(BIGNUM *rr1, const BIGNUM *a1, const BIGNUM *p1,
  1313. const BIGNUM *m1, BN_MONT_CTX *in_mont1,
  1314. BIGNUM *rr2, const BIGNUM *a2, const BIGNUM *p2,
  1315. const BIGNUM *m2, BN_MONT_CTX *in_mont2,
  1316. BN_CTX *ctx)
  1317. {
  1318. int ret = 0;
  1319. #ifdef RSAZ_ENABLED
  1320. BN_MONT_CTX *mont1 = NULL;
  1321. BN_MONT_CTX *mont2 = NULL;
  1322. if (ossl_rsaz_avx512ifma_eligible() &&
  1323. (((a1->top == 16) && (p1->top == 16) && (BN_num_bits(m1) == 1024) &&
  1324. (a2->top == 16) && (p2->top == 16) && (BN_num_bits(m2) == 1024)) ||
  1325. ((a1->top == 24) && (p1->top == 24) && (BN_num_bits(m1) == 1536) &&
  1326. (a2->top == 24) && (p2->top == 24) && (BN_num_bits(m2) == 1536)) ||
  1327. ((a1->top == 32) && (p1->top == 32) && (BN_num_bits(m1) == 2048) &&
  1328. (a2->top == 32) && (p2->top == 32) && (BN_num_bits(m2) == 2048)))) {
  1329. int topn = a1->top;
  1330. /* Modulus bits of |m1| and |m2| are equal */
  1331. int mod_bits = BN_num_bits(m1);
  1332. if (bn_wexpand(rr1, topn) == NULL)
  1333. goto err;
  1334. if (bn_wexpand(rr2, topn) == NULL)
  1335. goto err;
  1336. /* Ensure that montgomery contexts are initialized */
  1337. if (in_mont1 != NULL) {
  1338. mont1 = in_mont1;
  1339. } else {
  1340. if ((mont1 = BN_MONT_CTX_new()) == NULL)
  1341. goto err;
  1342. if (!BN_MONT_CTX_set(mont1, m1, ctx))
  1343. goto err;
  1344. }
  1345. if (in_mont2 != NULL) {
  1346. mont2 = in_mont2;
  1347. } else {
  1348. if ((mont2 = BN_MONT_CTX_new()) == NULL)
  1349. goto err;
  1350. if (!BN_MONT_CTX_set(mont2, m2, ctx))
  1351. goto err;
  1352. }
  1353. ret = ossl_rsaz_mod_exp_avx512_x2(rr1->d, a1->d, p1->d, m1->d,
  1354. mont1->RR.d, mont1->n0[0],
  1355. rr2->d, a2->d, p2->d, m2->d,
  1356. mont2->RR.d, mont2->n0[0],
  1357. mod_bits);
  1358. rr1->top = topn;
  1359. rr1->neg = 0;
  1360. bn_correct_top(rr1);
  1361. bn_check_top(rr1);
  1362. rr2->top = topn;
  1363. rr2->neg = 0;
  1364. bn_correct_top(rr2);
  1365. bn_check_top(rr2);
  1366. goto err;
  1367. }
  1368. #endif
  1369. /* rr1 = a1^p1 mod m1 */
  1370. ret = BN_mod_exp_mont_consttime(rr1, a1, p1, m1, ctx, in_mont1);
  1371. /* rr2 = a2^p2 mod m2 */
  1372. ret &= BN_mod_exp_mont_consttime(rr2, a2, p2, m2, ctx, in_mont2);
  1373. #ifdef RSAZ_ENABLED
  1374. err:
  1375. if (in_mont2 == NULL)
  1376. BN_MONT_CTX_free(mont2);
  1377. if (in_mont1 == NULL)
  1378. BN_MONT_CTX_free(mont1);
  1379. #endif
  1380. return ret;
  1381. }